From ce412896e1589f29e4e4d7a13eed093ae91b2568 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Tue, 27 May 2025 17:04:06 -0700 Subject: [PATCH 1/8] Simplify try statement, accept missing else/except/finally Co-authored-by: Smit Barmase --- grammar.js | 16 +- src/grammar.json | 102 +- src/node-types.json | 8 +- src/parser.c | 115202 ++++++++++++++++++------------------ src/tree_sitter/parser.h | 34 +- 5 files changed, 56901 insertions(+), 58461 deletions(-) diff --git a/grammar.js b/grammar.js index 2034d450..9815cec4 100644 --- a/grammar.js +++ b/grammar.js @@ -341,19 +341,9 @@ module.exports = grammar({ 'try', ':', field('body', $._suite), - choice( - seq( - repeat1($.except_clause), - optional($.else_clause), - optional($.finally_clause), - ), - seq( - repeat1($.except_group_clause), - optional($.else_clause), - optional($.finally_clause), - ), - $.finally_clause, - ), + repeat(choice($.except_clause, $.except_group_clause)), + optional($.else_clause), + optional($.finally_clause), ), except_clause: $ => seq( diff --git a/src/grammar.json b/src/grammar.json index c56c0f17..4b2c547b 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1218,84 +1218,43 @@ "name": "_suite" } }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "except_clause" + }, + { + "type": "SYMBOL", + "name": "except_group_clause" + } + ] + } + }, { "type": "CHOICE", "members": [ { - "type": "SEQ", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "except_clause" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "else_clause" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "finally_clause" - }, - { - "type": "BLANK" - } - ] - } - ] + "type": "SYMBOL", + "name": "else_clause" }, { - "type": "SEQ", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "except_group_clause" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "else_clause" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "finally_clause" - }, - { - "type": "BLANK" - } - ] - } - ] - }, + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ { "type": "SYMBOL", "name": "finally_clause" + }, + { + "type": "BLANK" } ] } @@ -6336,5 +6295,6 @@ "primary_expression", "pattern", "parameter" - ] -} + ], + "reserved": {} +} \ No newline at end of file diff --git a/src/node-types.json b/src/node-types.json index 18d43b49..6a4f654e 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -2910,7 +2910,7 @@ }, "children": { "multiple": true, - "required": true, + "required": false, "types": [ { "type": "else_clause", @@ -3574,7 +3574,8 @@ }, { "type": "comment", - "named": true + "named": true, + "extra": true }, { "type": "continue", @@ -3674,7 +3675,8 @@ }, { "type": "line_continuation", - "named": true + "named": true, + "extra": true }, { "type": "match", diff --git a/src/parser.c b/src/parser.c index 3bdb5bb6..5ad357b5 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,19 +1,23 @@ +/* Automatically @generated by tree-sitter v0.25.4 */ + #include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#define LANGUAGE_VERSION 14 -#define STATE_COUNT 2809 -#define LARGE_STATE_COUNT 190 -#define SYMBOL_COUNT 273 +#define LANGUAGE_VERSION 15 +#define STATE_COUNT 2777 +#define LARGE_STATE_COUNT 181 +#define SYMBOL_COUNT 272 #define ALIAS_COUNT 2 #define TOKEN_COUNT 108 #define EXTERNAL_TOKEN_COUNT 12 #define FIELD_COUNT 32 #define MAX_ALIAS_SEQUENCE_LENGTH 10 +#define MAX_RESERVED_WORD_SET_SIZE 0 #define PRODUCTION_ID_COUNT 142 +#define SUPERTYPE_COUNT 4 enum ts_symbol_identifiers { sym_identifier = 1, @@ -267,29 +271,28 @@ enum ts_symbol_identifiers { aux_sym__match_block_repeat1 = 249, aux_sym_case_clause_repeat1 = 250, aux_sym_try_statement_repeat1 = 251, - aux_sym_try_statement_repeat2 = 252, - aux_sym_with_clause_repeat1 = 253, - aux_sym_global_statement_repeat1 = 254, - aux_sym_type_parameter_repeat1 = 255, - aux_sym_argument_list_repeat1 = 256, - aux_sym_decorated_definition_repeat1 = 257, - aux_sym_dotted_name_repeat1 = 258, - aux_sym_union_pattern_repeat1 = 259, - aux_sym_dict_pattern_repeat1 = 260, - aux_sym__parameters_repeat1 = 261, - aux_sym__patterns_repeat1 = 262, - aux_sym_comparison_operator_repeat1 = 263, - aux_sym_subscript_repeat1 = 264, - aux_sym_dictionary_repeat1 = 265, - aux_sym__comprehension_clauses_repeat1 = 266, - aux_sym__collection_elements_repeat1 = 267, - aux_sym_for_in_clause_repeat1 = 268, - aux_sym_concatenated_string_repeat1 = 269, - aux_sym_string_repeat1 = 270, - aux_sym_string_content_repeat1 = 271, - aux_sym_format_specifier_repeat1 = 272, - alias_sym_as_pattern_target = 273, - alias_sym_format_expression = 274, + aux_sym_with_clause_repeat1 = 252, + aux_sym_global_statement_repeat1 = 253, + aux_sym_type_parameter_repeat1 = 254, + aux_sym_argument_list_repeat1 = 255, + aux_sym_decorated_definition_repeat1 = 256, + aux_sym_dotted_name_repeat1 = 257, + aux_sym_union_pattern_repeat1 = 258, + aux_sym_dict_pattern_repeat1 = 259, + aux_sym__parameters_repeat1 = 260, + aux_sym__patterns_repeat1 = 261, + aux_sym_comparison_operator_repeat1 = 262, + aux_sym_subscript_repeat1 = 263, + aux_sym_dictionary_repeat1 = 264, + aux_sym__comprehension_clauses_repeat1 = 265, + aux_sym__collection_elements_repeat1 = 266, + aux_sym_for_in_clause_repeat1 = 267, + aux_sym_concatenated_string_repeat1 = 268, + aux_sym_string_repeat1 = 269, + aux_sym_string_content_repeat1 = 270, + aux_sym_format_specifier_repeat1 = 271, + alias_sym_as_pattern_target = 272, + alias_sym_format_expression = 273, }; static const char * const ts_symbol_names[] = { @@ -545,7 +548,6 @@ static const char * const ts_symbol_names[] = { [aux_sym__match_block_repeat1] = "_match_block_repeat1", [aux_sym_case_clause_repeat1] = "case_clause_repeat1", [aux_sym_try_statement_repeat1] = "try_statement_repeat1", - [aux_sym_try_statement_repeat2] = "try_statement_repeat2", [aux_sym_with_clause_repeat1] = "with_clause_repeat1", [aux_sym_global_statement_repeat1] = "global_statement_repeat1", [aux_sym_type_parameter_repeat1] = "type_parameter_repeat1", @@ -823,7 +825,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym__match_block_repeat1] = aux_sym__match_block_repeat1, [aux_sym_case_clause_repeat1] = aux_sym_case_clause_repeat1, [aux_sym_try_statement_repeat1] = aux_sym_try_statement_repeat1, - [aux_sym_try_statement_repeat2] = aux_sym_try_statement_repeat2, [aux_sym_with_clause_repeat1] = aux_sym_with_clause_repeat1, [aux_sym_global_statement_repeat1] = aux_sym_global_statement_repeat1, [aux_sym_type_parameter_repeat1] = aux_sym_type_parameter_repeat1, @@ -1861,10 +1862,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_try_statement_repeat2] = { - .visible = false, - .named = false, - }, [aux_sym_with_clause_repeat1] = { .visible = false, .named = false, @@ -2026,7 +2023,7 @@ static const char * const ts_field_names[] = { [field_value] = "value", }; -static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { +static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [3] = {.index = 0, .length = 1}, [4] = {.index = 1, .length = 1}, [6] = {.index = 2, .length = 1}, @@ -2041,49 +2038,49 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [15] = {.index = 14, .length = 2}, [16] = {.index = 16, .length = 1}, [17] = {.index = 17, .length = 1}, - [18] = {.index = 18, .length = 2}, - [19] = {.index = 20, .length = 2}, - [20] = {.index = 22, .length = 2}, - [21] = {.index = 24, .length = 3}, - [22] = {.index = 27, .length = 1}, - [23] = {.index = 28, .length = 2}, - [24] = {.index = 30, .length = 1}, - [25] = {.index = 31, .length = 2}, - [26] = {.index = 33, .length = 1}, - [27] = {.index = 34, .length = 1}, - [28] = {.index = 35, .length = 2}, - [29] = {.index = 37, .length = 2}, - [30] = {.index = 39, .length = 1}, - [31] = {.index = 40, .length = 2}, - [32] = {.index = 42, .length = 1}, - [34] = {.index = 43, .length = 1}, - [35] = {.index = 44, .length = 2}, - [36] = {.index = 46, .length = 1}, - [37] = {.index = 47, .length = 2}, - [38] = {.index = 49, .length = 1}, - [39] = {.index = 50, .length = 3}, - [40] = {.index = 53, .length = 2}, - [41] = {.index = 55, .length = 2}, - [42] = {.index = 17, .length = 1}, - [43] = {.index = 57, .length = 1}, - [44] = {.index = 58, .length = 2}, + [18] = {.index = 17, .length = 1}, + [19] = {.index = 18, .length = 2}, + [20] = {.index = 20, .length = 2}, + [21] = {.index = 22, .length = 2}, + [22] = {.index = 24, .length = 3}, + [23] = {.index = 27, .length = 1}, + [24] = {.index = 28, .length = 2}, + [25] = {.index = 30, .length = 1}, + [26] = {.index = 31, .length = 2}, + [27] = {.index = 33, .length = 1}, + [28] = {.index = 34, .length = 1}, + [29] = {.index = 35, .length = 2}, + [30] = {.index = 37, .length = 2}, + [31] = {.index = 39, .length = 1}, + [32] = {.index = 40, .length = 2}, + [33] = {.index = 42, .length = 1}, + [35] = {.index = 43, .length = 1}, + [36] = {.index = 44, .length = 2}, + [37] = {.index = 46, .length = 1}, + [38] = {.index = 47, .length = 2}, + [39] = {.index = 49, .length = 1}, + [40] = {.index = 50, .length = 3}, + [41] = {.index = 53, .length = 2}, + [42] = {.index = 55, .length = 2}, + [43] = {.index = 57, .length = 2}, + [44] = {.index = 59, .length = 1}, [45] = {.index = 60, .length = 2}, [46] = {.index = 62, .length = 2}, - [47] = {.index = 64, .length = 1}, - [48] = {.index = 65, .length = 2}, + [47] = {.index = 64, .length = 2}, + [48] = {.index = 66, .length = 1}, [49] = {.index = 67, .length = 2}, - [51] = {.index = 69, .length = 2}, + [50] = {.index = 69, .length = 2}, [52] = {.index = 71, .length = 2}, - [53] = {.index = 73, .length = 1}, - [54] = {.index = 74, .length = 3}, - [55] = {.index = 77, .length = 3}, - [56] = {.index = 80, .length = 3}, - [57] = {.index = 83, .length = 3}, - [58] = {.index = 86, .length = 4}, - [59] = {.index = 90, .length = 1}, - [60] = {.index = 91, .length = 3}, - [61] = {.index = 94, .length = 3}, - [62] = {.index = 97, .length = 2}, + [53] = {.index = 73, .length = 2}, + [54] = {.index = 75, .length = 1}, + [55] = {.index = 76, .length = 3}, + [56] = {.index = 79, .length = 3}, + [57] = {.index = 82, .length = 3}, + [58] = {.index = 85, .length = 3}, + [59] = {.index = 88, .length = 4}, + [60] = {.index = 92, .length = 1}, + [61] = {.index = 93, .length = 3}, + [62] = {.index = 96, .length = 3}, [63] = {.index = 99, .length = 2}, [64] = {.index = 101, .length = 3}, [65] = {.index = 104, .length = 3}, @@ -2258,66 +2255,66 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_body, 3}, {field_condition, 1}, [57] = + {field_body, 2}, + {field_body, 3}, + [59] = {field_body, 3}, - [58] = + [60] = {field_left, 1}, {field_right, 3}, - [60] = + [62] = {field_body, 3}, {field_name, 1}, - [62] = + [64] = {field_key, 0}, {field_value, 2}, - [64] = + [66] = {field_type, 2}, - [65] = + [67] = {field_body, 3}, {field_parameters, 1}, - [67] = + [69] = {field_subscript, 2}, {field_value, 0}, - [69] = + [71] = {field_expression, 1}, {field_type_conversion, 2}, - [71] = + [73] = {field_expression, 1}, {field_format_specifier, 2}, - [73] = + [75] = {field_alternative, 0}, - [74] = + [76] = {field_alternative, 4}, {field_condition, 1}, {field_consequence, 3}, - [77] = + [79] = {field_alternative, 4, .inherited = true}, {field_condition, 1}, {field_consequence, 3}, - [80] = + [82] = {field_condition, 1}, {field_consequence, 3}, {field_consequence, 4}, - [83] = + [85] = {field_alternative, 4, .inherited = true}, {field_body, 4}, {field_subject, 1}, - [86] = + [88] = {field_alternative, 4, .inherited = true}, {field_body, 4}, {field_subject, 1}, {field_subject, 2, .inherited = true}, - [90] = + [92] = {field_body, 4}, - [91] = + [93] = {field_alternative, 4}, {field_body, 3}, {field_condition, 1}, - [94] = + [96] = {field_body, 3}, {field_body, 4}, {field_condition, 1}, - [97] = - {field_body, 2}, - {field_body, 3}, [99] = {field_body, 3}, {field_body, 4}, @@ -2638,40 +2635,40 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [5] = { [1] = sym_identifier, }, - [22] = { + [17] = { + [2] = sym_block, + }, + [23] = { [2] = alias_sym_as_pattern_target, }, - [33] = { + [34] = { [1] = sym_parenthesized_expression, }, - [37] = { - [3] = sym_block, - }, - [41] = { + [38] = { [3] = sym_block, }, [42] = { - [2] = sym_block, + [3] = sym_block, }, - [43] = { + [44] = { [3] = sym_block, }, - [45] = { + [46] = { [3] = sym_block, }, - [50] = { + [51] = { [0] = alias_sym_format_expression, }, - [54] = { + [55] = { [3] = sym_block, }, - [55] = { + [56] = { [3] = sym_block, }, - [59] = { + [60] = { [4] = sym_block, }, - [60] = { + [61] = { [3] = sym_block, }, [64] = { @@ -2796,7 +2793,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [13] = 13, [14] = 14, [15] = 15, - [16] = 2, + [16] = 16, [17] = 17, [18] = 18, [19] = 19, @@ -2808,65 +2805,65 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [25] = 25, [26] = 26, [27] = 27, - [28] = 28, + [28] = 27, [29] = 29, [30] = 30, [31] = 31, [32] = 32, [33] = 33, - [34] = 34, - [35] = 3, - [36] = 4, - [37] = 5, - [38] = 6, - [39] = 7, - [40] = 8, - [41] = 9, - [42] = 10, - [43] = 11, - [44] = 12, - [45] = 13, - [46] = 14, - [47] = 15, - [48] = 34, - [49] = 17, - [50] = 18, - [51] = 19, - [52] = 20, - [53] = 21, - [54] = 22, - [55] = 24, - [56] = 25, - [57] = 28, - [58] = 29, - [59] = 59, - [60] = 30, - [61] = 59, + [34] = 13, + [35] = 19, + [36] = 20, + [37] = 29, + [38] = 38, + [39] = 39, + [40] = 30, + [41] = 39, + [42] = 3, + [43] = 4, + [44] = 5, + [45] = 6, + [46] = 7, + [47] = 8, + [48] = 9, + [49] = 10, + [50] = 11, + [51] = 12, + [52] = 14, + [53] = 15, + [54] = 16, + [55] = 17, + [56] = 18, + [57] = 21, + [58] = 22, + [59] = 24, + [60] = 25, + [61] = 38, [62] = 62, [63] = 63, - [64] = 64, - [65] = 62, - [66] = 62, - [67] = 63, + [64] = 62, + [65] = 65, + [66] = 65, + [67] = 62, [68] = 62, [69] = 62, - [70] = 62, - [71] = 62, - [72] = 62, + [70] = 70, + [71] = 71, + [72] = 72, [73] = 73, [74] = 74, [75] = 75, - [76] = 76, + [76] = 72, [77] = 75, - [78] = 78, - [79] = 78, + [78] = 74, + [79] = 73, [80] = 80, [81] = 80, - [82] = 76, - [83] = 83, - [84] = 83, + [82] = 82, + [83] = 82, + [84] = 84, [85] = 85, - [86] = 85, + [86] = 84, [87] = 87, [88] = 88, [89] = 89, @@ -2874,393 +2871,393 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [91] = 91, [92] = 92, [93] = 93, - [94] = 94, + [94] = 89, [95] = 95, [96] = 96, [97] = 97, - [98] = 98, - [99] = 99, - [100] = 100, - [101] = 101, + [98] = 91, + [99] = 90, + [100] = 96, + [101] = 97, [102] = 102, - [103] = 103, + [103] = 102, [104] = 104, [105] = 105, - [106] = 97, + [106] = 106, [107] = 107, - [108] = 92, - [109] = 96, - [110] = 88, - [111] = 95, - [112] = 99, + [108] = 104, + [109] = 109, + [110] = 105, + [111] = 111, + [112] = 112, [113] = 113, - [114] = 114, - [115] = 90, + [114] = 106, + [115] = 115, [116] = 116, - [117] = 98, - [118] = 91, + [117] = 107, + [118] = 85, [119] = 119, - [120] = 102, - [121] = 121, - [122] = 113, - [123] = 103, - [124] = 121, - [125] = 93, - [126] = 126, - [127] = 104, - [128] = 94, - [129] = 100, - [130] = 87, - [131] = 107, - [132] = 126, - [133] = 114, + [120] = 120, + [121] = 109, + [122] = 92, + [123] = 123, + [124] = 111, + [125] = 125, + [126] = 93, + [127] = 113, + [128] = 115, + [129] = 129, + [130] = 120, + [131] = 88, + [132] = 95, + [133] = 119, [134] = 134, [135] = 135, - [136] = 89, - [137] = 137, - [138] = 138, - [139] = 138, - [140] = 137, - [141] = 138, - [142] = 137, - [143] = 138, - [144] = 137, - [145] = 137, - [146] = 138, - [147] = 137, - [148] = 138, - [149] = 137, - [150] = 138, - [151] = 137, - [152] = 138, - [153] = 153, - [154] = 154, - [155] = 154, - [156] = 156, - [157] = 157, - [158] = 154, - [159] = 156, - [160] = 156, - [161] = 161, - [162] = 157, - [163] = 157, - [164] = 164, - [165] = 157, - [166] = 164, - [167] = 167, - [168] = 156, - [169] = 157, - [170] = 157, - [171] = 161, - [172] = 167, - [173] = 161, - [174] = 154, - [175] = 157, - [176] = 161, - [177] = 154, - [178] = 156, - [179] = 164, + [136] = 135, + [137] = 134, + [138] = 134, + [139] = 135, + [140] = 135, + [141] = 134, + [142] = 134, + [143] = 135, + [144] = 144, + [145] = 145, + [146] = 145, + [147] = 147, + [148] = 148, + [149] = 148, + [150] = 150, + [151] = 147, + [152] = 145, + [153] = 147, + [154] = 148, + [155] = 148, + [156] = 148, + [157] = 147, + [158] = 150, + [159] = 148, + [160] = 160, + [161] = 160, + [162] = 162, + [163] = 148, + [164] = 160, + [165] = 145, + [166] = 150, + [167] = 145, + [168] = 162, + [169] = 169, + [170] = 150, + [171] = 150, + [172] = 147, + [173] = 147, + [174] = 148, + [175] = 150, + [176] = 150, + [177] = 150, + [178] = 169, + [179] = 147, [180] = 180, - [181] = 161, - [182] = 156, - [183] = 157, - [184] = 161, - [185] = 161, - [186] = 161, - [187] = 180, - [188] = 156, + [181] = 181, + [182] = 182, + [183] = 182, + [184] = 184, + [185] = 185, + [186] = 186, + [187] = 185, + [188] = 182, [189] = 189, - [190] = 190, - [191] = 191, - [192] = 192, - [193] = 190, - [194] = 190, - [195] = 191, - [196] = 192, - [197] = 190, - [198] = 198, - [199] = 198, - [200] = 191, - [201] = 192, - [202] = 190, - [203] = 191, - [204] = 192, - [205] = 190, - [206] = 192, - [207] = 191, - [208] = 192, - [209] = 190, - [210] = 191, - [211] = 191, - [212] = 212, - [213] = 191, - [214] = 192, - [215] = 190, - [216] = 192, + [190] = 185, + [191] = 189, + [192] = 185, + [193] = 182, + [194] = 189, + [195] = 182, + [196] = 185, + [197] = 182, + [198] = 189, + [199] = 199, + [200] = 189, + [201] = 185, + [202] = 182, + [203] = 189, + [204] = 185, + [205] = 182, + [206] = 189, + [207] = 185, + [208] = 182, + [209] = 189, + [210] = 185, + [211] = 182, + [212] = 182, + [213] = 186, + [214] = 214, + [215] = 215, + [216] = 216, [217] = 217, - [218] = 218, - [219] = 191, - [220] = 192, - [221] = 192, - [222] = 192, - [223] = 223, - [224] = 224, - [225] = 225, + [218] = 217, + [219] = 217, + [220] = 220, + [221] = 220, + [222] = 217, + [223] = 220, + [224] = 220, + [225] = 216, [226] = 226, - [227] = 226, + [227] = 227, [228] = 228, - [229] = 228, + [229] = 229, [230] = 228, - [231] = 228, - [232] = 225, - [233] = 226, - [234] = 226, + [231] = 231, + [232] = 232, + [233] = 233, + [234] = 214, [235] = 235, - [236] = 236, + [236] = 215, [237] = 237, - [238] = 235, - [239] = 239, + [238] = 238, + [239] = 235, [240] = 240, [241] = 241, - [242] = 237, - [243] = 243, + [242] = 232, + [243] = 228, [244] = 244, [245] = 245, - [246] = 244, - [247] = 244, + [246] = 235, + [247] = 235, [248] = 248, - [249] = 224, - [250] = 244, - [251] = 251, - [252] = 244, - [253] = 253, - [254] = 237, - [255] = 255, - [256] = 244, - [257] = 236, - [258] = 237, - [259] = 244, - [260] = 260, - [261] = 235, - [262] = 262, - [263] = 235, - [264] = 244, - [265] = 255, - [266] = 255, - [267] = 255, - [268] = 223, - [269] = 240, - [270] = 253, - [271] = 248, - [272] = 272, - [273] = 273, - [274] = 274, - [275] = 275, - [276] = 273, - [277] = 274, - [278] = 278, - [279] = 279, - [280] = 275, - [281] = 281, - [282] = 275, - [283] = 281, - [284] = 284, - [285] = 273, - [286] = 274, - [287] = 281, - [288] = 278, - [289] = 278, - [290] = 279, - [291] = 275, - [292] = 281, - [293] = 279, - [294] = 273, - [295] = 284, - [296] = 284, - [297] = 273, - [298] = 278, - [299] = 279, - [300] = 278, - [301] = 279, - [302] = 275, - [303] = 281, - [304] = 281, - [305] = 284, - [306] = 273, - [307] = 284, - [308] = 273, - [309] = 274, - [310] = 284, - [311] = 278, - [312] = 279, - [313] = 275, - [314] = 281, - [315] = 273, - [316] = 274, - [317] = 274, - [318] = 278, - [319] = 279, - [320] = 284, - [321] = 278, - [322] = 279, - [323] = 275, - [324] = 281, - [325] = 284, - [326] = 275, - [327] = 327, - [328] = 327, - [329] = 329, + [249] = 235, + [250] = 227, + [251] = 227, + [252] = 235, + [253] = 228, + [254] = 235, + [255] = 235, + [256] = 256, + [257] = 226, + [258] = 226, + [259] = 226, + [260] = 240, + [261] = 241, + [262] = 248, + [263] = 227, + [264] = 264, + [265] = 264, + [266] = 266, + [267] = 267, + [268] = 268, + [269] = 269, + [270] = 270, + [271] = 271, + [272] = 266, + [273] = 267, + [274] = 268, + [275] = 269, + [276] = 264, + [277] = 266, + [278] = 267, + [279] = 270, + [280] = 271, + [281] = 268, + [282] = 269, + [283] = 264, + [284] = 266, + [285] = 267, + [286] = 270, + [287] = 271, + [288] = 268, + [289] = 269, + [290] = 264, + [291] = 267, + [292] = 270, + [293] = 271, + [294] = 268, + [295] = 269, + [296] = 264, + [297] = 266, + [298] = 267, + [299] = 270, + [300] = 271, + [301] = 268, + [302] = 269, + [303] = 268, + [304] = 266, + [305] = 267, + [306] = 270, + [307] = 271, + [308] = 268, + [309] = 269, + [310] = 269, + [311] = 266, + [312] = 267, + [313] = 270, + [314] = 271, + [315] = 270, + [316] = 271, + [317] = 266, + [318] = 318, + [319] = 319, + [320] = 169, + [321] = 321, + [322] = 322, + [323] = 323, + [324] = 324, + [325] = 319, + [326] = 322, + [327] = 318, + [328] = 319, + [329] = 323, [330] = 330, - [331] = 331, - [332] = 330, + [331] = 324, + [332] = 323, [333] = 333, - [334] = 334, + [334] = 321, [335] = 335, - [336] = 330, - [337] = 337, - [338] = 331, - [339] = 327, - [340] = 340, - [341] = 337, - [342] = 337, - [343] = 331, - [344] = 329, - [345] = 334, - [346] = 329, - [347] = 180, - [348] = 334, - [349] = 349, - [350] = 245, + [336] = 324, + [337] = 322, + [338] = 318, + [339] = 321, + [340] = 256, + [341] = 341, + [342] = 342, + [343] = 343, + [344] = 342, + [345] = 343, + [346] = 256, + [347] = 256, + [348] = 341, + [349] = 341, + [350] = 342, [351] = 351, - [352] = 352, - [353] = 351, - [354] = 351, - [355] = 352, - [356] = 352, - [357] = 351, - [358] = 352, - [359] = 351, - [360] = 351, - [361] = 352, - [362] = 362, - [363] = 245, - [364] = 349, - [365] = 351, - [366] = 352, - [367] = 245, - [368] = 352, - [369] = 351, - [370] = 352, - [371] = 349, - [372] = 156, + [352] = 341, + [353] = 342, + [354] = 341, + [355] = 342, + [356] = 341, + [357] = 342, + [358] = 342, + [359] = 341, + [360] = 343, + [361] = 341, + [362] = 342, + [363] = 363, + [364] = 364, + [365] = 365, + [366] = 364, + [367] = 364, + [368] = 363, + [369] = 369, + [370] = 370, + [371] = 333, + [372] = 147, [373] = 373, [374] = 374, - [375] = 373, - [376] = 376, - [377] = 377, - [378] = 373, - [379] = 377, - [380] = 333, - [381] = 373, - [382] = 374, - [383] = 377, - [384] = 374, - [385] = 377, - [386] = 373, - [387] = 377, - [388] = 374, - [389] = 374, - [390] = 377, - [391] = 373, - [392] = 373, - [393] = 374, - [394] = 377, - [395] = 373, - [396] = 373, - [397] = 340, - [398] = 374, - [399] = 399, - [400] = 374, - [401] = 374, + [375] = 364, + [376] = 363, + [377] = 369, + [378] = 378, + [379] = 335, + [380] = 364, + [381] = 363, + [382] = 369, + [383] = 364, + [384] = 364, + [385] = 363, + [386] = 369, + [387] = 363, + [388] = 369, + [389] = 363, + [390] = 364, + [391] = 363, + [392] = 369, + [393] = 364, + [394] = 363, + [395] = 369, + [396] = 364, + [397] = 363, + [398] = 369, + [399] = 369, + [400] = 369, + [401] = 401, [402] = 402, - [403] = 403, - [404] = 377, - [405] = 373, - [406] = 374, - [407] = 407, - [408] = 377, - [409] = 377, + [403] = 169, + [404] = 404, + [405] = 405, + [406] = 406, + [407] = 333, + [408] = 408, + [409] = 401, [410] = 410, [411] = 411, [412] = 412, - [413] = 333, - [414] = 414, - [415] = 340, - [416] = 156, - [417] = 180, - [418] = 333, - [419] = 340, + [413] = 413, + [414] = 335, + [415] = 413, + [416] = 416, + [417] = 417, + [418] = 418, + [419] = 402, [420] = 420, - [421] = 421, + [421] = 405, [422] = 422, - [423] = 410, + [423] = 423, [424] = 424, - [425] = 414, - [426] = 426, - [427] = 427, - [428] = 424, + [425] = 169, + [426] = 417, + [427] = 405, + [428] = 418, [429] = 429, - [430] = 430, - [431] = 431, - [432] = 432, - [433] = 430, + [430] = 422, + [431] = 411, + [432] = 420, + [433] = 420, [434] = 434, [435] = 435, - [436] = 407, - [437] = 434, - [438] = 414, - [439] = 180, - [440] = 440, - [441] = 441, - [442] = 424, - [443] = 430, - [444] = 441, - [445] = 435, - [446] = 446, + [436] = 411, + [437] = 437, + [438] = 438, + [439] = 439, + [440] = 410, + [441] = 333, + [442] = 147, + [443] = 378, + [444] = 401, + [445] = 422, + [446] = 401, [447] = 447, - [448] = 435, - [449] = 180, - [450] = 450, - [451] = 451, - [452] = 421, - [453] = 421, - [454] = 421, - [455] = 421, - [456] = 421, - [457] = 421, - [458] = 421, - [459] = 421, - [460] = 421, - [461] = 441, + [448] = 401, + [449] = 335, + [450] = 401, + [451] = 401, + [452] = 401, + [453] = 401, + [454] = 401, + [455] = 169, + [456] = 439, + [457] = 424, + [458] = 458, + [459] = 459, + [460] = 402, + [461] = 461, [462] = 462, [463] = 463, - [464] = 333, - [465] = 340, + [464] = 464, + [465] = 465, [466] = 466, - [467] = 467, - [468] = 466, + [467] = 462, + [468] = 333, [469] = 469, - [470] = 470, - [471] = 471, - [472] = 472, - [473] = 467, - [474] = 463, - [475] = 475, - [476] = 471, - [477] = 462, - [478] = 469, - [479] = 475, - [480] = 470, + [470] = 463, + [471] = 469, + [472] = 335, + [473] = 473, + [474] = 461, + [475] = 464, + [476] = 473, + [477] = 477, + [478] = 466, + [479] = 477, + [480] = 480, [481] = 481, [482] = 482, [483] = 483, @@ -3270,246 +3267,246 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [487] = 487, [488] = 488, [489] = 489, - [490] = 486, - [491] = 482, - [492] = 483, - [493] = 485, - [494] = 487, - [495] = 495, - [496] = 488, - [497] = 489, - [498] = 486, - [499] = 482, - [500] = 483, - [501] = 485, - [502] = 487, - [503] = 503, - [504] = 488, - [505] = 489, - [506] = 486, - [507] = 482, - [508] = 483, - [509] = 485, - [510] = 487, - [511] = 482, - [512] = 512, - [513] = 513, - [514] = 514, - [515] = 515, - [516] = 481, - [517] = 517, - [518] = 518, - [519] = 519, - [520] = 483, - [521] = 521, - [522] = 522, - [523] = 523, - [524] = 524, - [525] = 513, - [526] = 515, - [527] = 527, - [528] = 528, - [529] = 483, - [530] = 530, - [531] = 485, - [532] = 486, - [533] = 487, - [534] = 534, - [535] = 488, - [536] = 489, + [490] = 490, + [491] = 491, + [492] = 492, + [493] = 493, + [494] = 494, + [495] = 484, + [496] = 485, + [497] = 486, + [498] = 487, + [499] = 488, + [500] = 500, + [501] = 501, + [502] = 491, + [503] = 492, + [504] = 504, + [505] = 491, + [506] = 484, + [507] = 485, + [508] = 486, + [509] = 487, + [510] = 488, + [511] = 491, + [512] = 492, + [513] = 484, + [514] = 485, + [515] = 486, + [516] = 487, + [517] = 488, + [518] = 491, + [519] = 492, + [520] = 484, + [521] = 484, + [522] = 485, + [523] = 486, + [524] = 487, + [525] = 488, + [526] = 491, + [527] = 492, + [528] = 484, + [529] = 485, + [530] = 486, + [531] = 487, + [532] = 488, + [533] = 491, + [534] = 492, + [535] = 535, + [536] = 536, [537] = 537, [538] = 538, [539] = 539, - [540] = 486, - [541] = 541, - [542] = 542, - [543] = 523, - [544] = 512, - [545] = 513, - [546] = 482, - [547] = 517, - [548] = 519, - [549] = 485, - [550] = 483, - [551] = 551, - [552] = 486, - [553] = 482, - [554] = 485, - [555] = 542, - [556] = 523, - [557] = 512, - [558] = 513, + [540] = 540, + [541] = 500, + [542] = 538, + [543] = 504, + [544] = 544, + [545] = 544, + [546] = 485, + [547] = 547, + [548] = 494, + [549] = 537, + [550] = 486, + [551] = 487, + [552] = 552, + [553] = 488, + [554] = 535, + [555] = 489, + [556] = 536, + [557] = 537, + [558] = 544, [559] = 559, - [560] = 519, - [561] = 519, + [560] = 492, + [561] = 561, [562] = 562, - [563] = 512, - [564] = 512, - [565] = 513, - [566] = 566, - [567] = 514, - [568] = 512, - [569] = 513, - [570] = 487, - [571] = 571, - [572] = 572, - [573] = 573, + [563] = 535, + [564] = 489, + [565] = 536, + [566] = 537, + [567] = 567, + [568] = 484, + [569] = 535, + [570] = 544, + [571] = 485, + [572] = 486, + [573] = 487, [574] = 488, - [575] = 542, - [576] = 489, - [577] = 486, - [578] = 482, - [579] = 483, - [580] = 512, - [581] = 488, - [582] = 487, - [583] = 523, - [584] = 542, - [585] = 512, - [586] = 485, - [587] = 489, - [588] = 572, - [589] = 573, - [590] = 487, - [591] = 551, - [592] = 488, - [593] = 551, - [594] = 594, - [595] = 551, - [596] = 551, - [597] = 551, - [598] = 489, - [599] = 551, - [600] = 551, - [601] = 488, - [602] = 559, - [603] = 518, - [604] = 489, - [605] = 571, - [606] = 594, - [607] = 495, - [608] = 503, - [609] = 527, - [610] = 523, - [611] = 611, + [575] = 536, + [576] = 537, + [577] = 489, + [578] = 536, + [579] = 579, + [580] = 580, + [581] = 491, + [582] = 536, + [583] = 537, + [584] = 584, + [585] = 536, + [586] = 492, + [587] = 482, + [588] = 536, + [589] = 480, + [590] = 480, + [591] = 480, + [592] = 489, + [593] = 480, + [594] = 480, + [595] = 480, + [596] = 480, + [597] = 481, + [598] = 567, + [599] = 599, + [600] = 552, + [601] = 601, + [602] = 580, + [603] = 501, + [604] = 604, + [605] = 605, + [606] = 606, + [607] = 607, + [608] = 607, + [609] = 609, + [610] = 610, + [611] = 609, [612] = 612, [613] = 613, - [614] = 614, - [615] = 615, - [616] = 616, - [617] = 612, - [618] = 615, + [614] = 606, + [615] = 605, + [616] = 613, + [617] = 610, + [618] = 618, [619] = 619, [620] = 620, [621] = 621, - [622] = 619, - [623] = 620, - [624] = 621, - [625] = 614, + [622] = 622, + [623] = 623, + [624] = 624, + [625] = 625, [626] = 626, - [627] = 626, - [628] = 613, + [627] = 627, + [628] = 624, [629] = 629, - [630] = 630, + [630] = 621, [631] = 631, [632] = 632, - [633] = 630, + [633] = 627, [634] = 634, [635] = 635, [636] = 636, - [637] = 637, - [638] = 629, + [637] = 626, + [638] = 625, [639] = 639, - [640] = 640, - [641] = 641, - [642] = 642, + [640] = 618, + [641] = 620, + [642] = 636, [643] = 643, [644] = 644, - [645] = 640, - [646] = 641, + [645] = 645, + [646] = 639, [647] = 644, [648] = 648, [649] = 649, [650] = 650, [651] = 651, - [652] = 224, - [653] = 653, - [654] = 654, - [655] = 653, + [652] = 643, + [653] = 648, + [654] = 649, + [655] = 655, [656] = 656, - [657] = 656, + [657] = 657, [658] = 656, [659] = 659, [660] = 660, - [661] = 661, - [662] = 650, - [663] = 654, - [664] = 654, - [665] = 665, - [666] = 653, - [667] = 659, - [668] = 659, - [669] = 661, - [670] = 654, - [671] = 671, - [672] = 653, - [673] = 673, - [674] = 659, - [675] = 675, - [676] = 676, - [677] = 650, - [678] = 675, - [679] = 679, + [661] = 660, + [662] = 662, + [663] = 663, + [664] = 629, + [665] = 663, + [666] = 634, + [667] = 635, + [668] = 622, + [669] = 643, + [670] = 660, + [671] = 656, + [672] = 643, + [673] = 214, + [674] = 618, + [675] = 618, + [676] = 215, + [677] = 621, + [678] = 621, + [679] = 656, [680] = 660, - [681] = 679, - [682] = 650, - [683] = 650, - [684] = 651, - [685] = 223, - [686] = 676, - [687] = 673, - [688] = 653, - [689] = 659, - [690] = 665, - [691] = 659, - [692] = 656, - [693] = 656, - [694] = 654, - [695] = 654, - [696] = 653, - [697] = 656, - [698] = 671, - [699] = 699, - [700] = 650, - [701] = 699, - [702] = 702, - [703] = 703, - [704] = 704, - [705] = 703, - [706] = 706, - [707] = 704, + [681] = 681, + [682] = 682, + [683] = 683, + [684] = 684, + [685] = 685, + [686] = 686, + [687] = 687, + [688] = 688, + [689] = 682, + [690] = 685, + [691] = 691, + [692] = 681, + [693] = 693, + [694] = 694, + [695] = 695, + [696] = 693, + [697] = 697, + [698] = 688, + [699] = 695, + [700] = 686, + [701] = 687, + [702] = 697, + [703] = 694, + [704] = 691, + [705] = 684, + [706] = 683, + [707] = 707, [708] = 708, - [709] = 709, + [709] = 707, [710] = 710, - [711] = 709, + [711] = 710, [712] = 708, [713] = 713, - [714] = 706, + [714] = 714, [715] = 715, - [716] = 702, - [717] = 713, - [718] = 715, + [716] = 716, + [717] = 717, + [718] = 718, [719] = 719, [720] = 720, - [721] = 720, - [722] = 719, - [723] = 710, + [721] = 721, + [722] = 722, + [723] = 723, [724] = 724, - [725] = 724, + [725] = 725, [726] = 726, [727] = 727, - [728] = 727, - [729] = 726, + [728] = 728, + [729] = 729, [730] = 730, [731] = 731, [732] = 732, @@ -3518,1523 +3515,1523 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [735] = 735, [736] = 736, [737] = 737, - [738] = 735, + [738] = 738, [739] = 739, [740] = 740, [741] = 741, [742] = 742, [743] = 743, [744] = 744, - [745] = 740, - [746] = 743, + [745] = 745, + [746] = 746, [747] = 747, [748] = 748, [749] = 749, - [750] = 750, - [751] = 744, + [750] = 714, + [751] = 718, [752] = 752, [753] = 753, [754] = 754, [755] = 755, - [756] = 756, - [757] = 757, - [758] = 747, - [759] = 748, - [760] = 749, - [761] = 750, - [762] = 762, - [763] = 763, - [764] = 752, + [756] = 717, + [757] = 727, + [758] = 758, + [759] = 759, + [760] = 760, + [761] = 761, + [762] = 719, + [763] = 742, + [764] = 743, [765] = 765, - [766] = 731, + [766] = 765, [767] = 767, - [768] = 768, + [768] = 767, [769] = 769, - [770] = 770, + [770] = 215, [771] = 771, - [772] = 772, - [773] = 773, - [774] = 732, - [775] = 733, + [772] = 738, + [773] = 769, + [774] = 774, + [775] = 775, [776] = 776, - [777] = 777, + [777] = 214, [778] = 778, - [779] = 779, + [779] = 732, [780] = 780, - [781] = 781, - [782] = 765, - [783] = 783, + [781] = 746, + [782] = 748, + [783] = 753, [784] = 784, - [785] = 785, - [786] = 767, - [787] = 787, - [788] = 788, - [789] = 768, - [790] = 770, + [785] = 760, + [786] = 761, + [787] = 776, + [788] = 778, + [789] = 780, + [790] = 784, [791] = 791, - [792] = 792, - [793] = 793, - [794] = 794, - [795] = 742, - [796] = 796, - [797] = 772, - [798] = 773, - [799] = 799, - [800] = 800, - [801] = 801, - [802] = 780, + [792] = 713, + [793] = 752, + [794] = 771, + [795] = 795, + [796] = 791, + [797] = 797, + [798] = 715, + [799] = 725, + [800] = 726, + [801] = 749, + [802] = 802, [803] = 803, - [804] = 804, - [805] = 777, - [806] = 778, - [807] = 807, - [808] = 223, - [809] = 756, - [810] = 769, - [811] = 776, - [812] = 730, - [813] = 803, - [814] = 792, - [815] = 800, - [816] = 807, - [817] = 753, - [818] = 781, - [819] = 793, - [820] = 784, - [821] = 791, - [822] = 794, - [823] = 823, - [824] = 824, - [825] = 736, - [826] = 734, - [827] = 762, - [828] = 828, - [829] = 801, - [830] = 779, - [831] = 824, - [832] = 737, - [833] = 763, - [834] = 785, - [835] = 788, - [836] = 741, - [837] = 804, - [838] = 739, - [839] = 823, - [840] = 840, - [841] = 840, - [842] = 771, - [843] = 754, - [844] = 783, - [845] = 757, - [846] = 755, - [847] = 787, - [848] = 796, - [849] = 799, - [850] = 840, - [851] = 771, - [852] = 828, - [853] = 224, + [804] = 723, + [805] = 735, + [806] = 740, + [807] = 741, + [808] = 716, + [809] = 720, + [810] = 721, + [811] = 722, + [812] = 724, + [813] = 728, + [814] = 729, + [815] = 730, + [816] = 731, + [817] = 802, + [818] = 734, + [819] = 797, + [820] = 736, + [821] = 803, + [822] = 737, + [823] = 739, + [824] = 795, + [825] = 758, + [826] = 774, + [827] = 733, + [828] = 759, + [829] = 754, + [830] = 744, + [831] = 745, + [832] = 747, + [833] = 755, + [834] = 774, + [835] = 733, + [836] = 775, + [837] = 837, + [838] = 837, + [839] = 837, + [840] = 837, + [841] = 837, + [842] = 837, + [843] = 843, + [844] = 843, + [845] = 845, + [846] = 846, + [847] = 846, + [848] = 846, + [849] = 846, + [850] = 846, + [851] = 846, + [852] = 846, + [853] = 846, [854] = 854, - [855] = 854, + [855] = 855, [856] = 854, - [857] = 854, - [858] = 854, - [859] = 854, + [857] = 845, + [858] = 858, + [859] = 855, [860] = 860, - [861] = 860, + [861] = 854, [862] = 862, [863] = 862, - [864] = 862, - [865] = 862, - [866] = 862, - [867] = 862, - [868] = 862, - [869] = 862, + [864] = 864, + [865] = 865, + [866] = 864, + [867] = 858, + [868] = 860, + [869] = 869, [870] = 870, - [871] = 871, - [872] = 872, - [873] = 873, - [874] = 874, + [871] = 870, + [872] = 862, + [873] = 854, + [874] = 860, [875] = 875, - [876] = 876, - [877] = 877, - [878] = 872, - [879] = 879, - [880] = 873, - [881] = 881, - [882] = 874, - [883] = 879, - [884] = 872, - [885] = 879, - [886] = 873, - [887] = 873, - [888] = 881, - [889] = 889, - [890] = 890, - [891] = 881, - [892] = 871, - [893] = 875, - [894] = 874, - [895] = 875, - [896] = 890, - [897] = 876, - [898] = 871, - [899] = 890, - [900] = 879, - [901] = 877, - [902] = 872, - [903] = 871, - [904] = 876, - [905] = 877, - [906] = 874, - [907] = 872, - [908] = 879, - [909] = 873, - [910] = 890, - [911] = 875, - [912] = 890, - [913] = 890, - [914] = 914, - [915] = 890, - [916] = 873, - [917] = 871, - [918] = 875, - [919] = 879, - [920] = 881, - [921] = 872, - [922] = 879, - [923] = 881, - [924] = 877, - [925] = 889, - [926] = 914, - [927] = 870, - [928] = 870, - [929] = 881, - [930] = 890, - [931] = 871, - [932] = 876, - [933] = 871, - [934] = 872, - [935] = 873, - [936] = 881, - [937] = 874, - [938] = 890, - [939] = 875, - [940] = 871, - [941] = 874, - [942] = 875, - [943] = 874, - [944] = 875, - [945] = 876, - [946] = 877, - [947] = 914, - [948] = 872, - [949] = 879, - [950] = 914, - [951] = 873, - [952] = 914, - [953] = 881, - [954] = 876, - [955] = 877, - [956] = 877, - [957] = 876, - [958] = 890, - [959] = 890, - [960] = 890, - [961] = 877, - [962] = 890, - [963] = 874, - [964] = 870, - [965] = 876, + [876] = 862, + [877] = 860, + [878] = 878, + [879] = 878, + [880] = 862, + [881] = 865, + [882] = 855, + [883] = 865, + [884] = 864, + [885] = 885, + [886] = 864, + [887] = 885, + [888] = 858, + [889] = 860, + [890] = 869, + [891] = 862, + [892] = 854, + [893] = 845, + [894] = 858, + [895] = 885, + [896] = 855, + [897] = 865, + [898] = 864, + [899] = 870, + [900] = 878, + [901] = 845, + [902] = 864, + [903] = 860, + [904] = 860, + [905] = 858, + [906] = 870, + [907] = 865, + [908] = 860, + [909] = 875, + [910] = 870, + [911] = 878, + [912] = 858, + [913] = 869, + [914] = 854, + [915] = 855, + [916] = 860, + [917] = 862, + [918] = 869, + [919] = 864, + [920] = 870, + [921] = 865, + [922] = 870, + [923] = 885, + [924] = 885, + [925] = 878, + [926] = 878, + [927] = 854, + [928] = 869, + [929] = 878, + [930] = 855, + [931] = 865, + [932] = 858, + [933] = 858, + [934] = 869, + [935] = 869, + [936] = 855, + [937] = 864, + [938] = 865, + [939] = 860, + [940] = 870, + [941] = 860, + [942] = 860, + [943] = 860, + [944] = 862, + [945] = 878, + [946] = 869, + [947] = 854, + [948] = 855, + [949] = 845, + [950] = 845, + [951] = 951, + [952] = 845, + [953] = 845, + [954] = 954, + [955] = 955, + [956] = 956, + [957] = 957, + [958] = 954, + [959] = 959, + [960] = 951, + [961] = 951, + [962] = 962, + [963] = 845, + [964] = 955, + [965] = 965, [966] = 966, - [967] = 870, - [968] = 870, - [969] = 969, - [970] = 970, - [971] = 870, - [972] = 870, + [967] = 967, + [968] = 955, + [969] = 954, + [970] = 951, + [971] = 955, + [972] = 972, [973] = 973, [974] = 974, - [975] = 975, + [975] = 954, [976] = 976, - [977] = 969, - [978] = 970, - [979] = 966, - [980] = 969, - [981] = 970, - [982] = 966, - [983] = 969, - [984] = 970, - [985] = 966, + [977] = 956, + [978] = 955, + [979] = 962, + [980] = 980, + [981] = 951, + [982] = 972, + [983] = 972, + [984] = 954, + [985] = 954, [986] = 986, - [987] = 987, - [988] = 988, - [989] = 989, - [990] = 990, - [991] = 991, - [992] = 870, + [987] = 659, + [988] = 632, + [989] = 845, + [990] = 962, + [991] = 974, + [992] = 955, [993] = 973, - [994] = 970, - [995] = 966, - [996] = 996, - [997] = 997, - [998] = 975, - [999] = 976, - [1000] = 1000, - [1001] = 1001, - [1002] = 986, - [1003] = 987, - [1004] = 988, - [1005] = 973, - [1006] = 989, - [1007] = 990, - [1008] = 991, - [1009] = 974, - [1010] = 975, - [1011] = 976, + [994] = 845, + [995] = 954, + [996] = 657, + [997] = 959, + [998] = 951, + [999] = 956, + [1000] = 655, + [1001] = 965, + [1002] = 1002, + [1003] = 966, + [1004] = 965, + [1005] = 959, + [1006] = 951, + [1007] = 845, + [1008] = 959, + [1009] = 973, + [1010] = 967, + [1011] = 972, [1012] = 1012, - [1013] = 975, - [1014] = 976, - [1015] = 1015, - [1016] = 648, - [1017] = 974, - [1018] = 987, - [1019] = 988, - [1020] = 966, - [1021] = 989, - [1022] = 990, - [1023] = 991, - [1024] = 974, - [1025] = 969, - [1026] = 1026, - [1027] = 642, - [1028] = 649, - [1029] = 634, - [1030] = 636, - [1031] = 635, - [1032] = 637, - [1033] = 870, - [1034] = 969, - [1035] = 970, - [1036] = 966, - [1037] = 870, - [1038] = 986, - [1039] = 987, - [1040] = 988, - [1041] = 973, - [1042] = 989, - [1043] = 990, - [1044] = 969, - [1045] = 991, - [1046] = 970, - [1047] = 870, - [1048] = 986, - [1049] = 1049, - [1050] = 1050, - [1051] = 1026, - [1052] = 975, - [1053] = 976, - [1054] = 1015, - [1055] = 989, - [1056] = 1056, + [1013] = 955, + [1014] = 974, + [1015] = 957, + [1016] = 957, + [1017] = 623, + [1018] = 1018, + [1019] = 662, + [1020] = 974, + [1021] = 957, + [1022] = 956, + [1023] = 962, + [1024] = 966, + [1025] = 967, + [1026] = 966, + [1027] = 965, + [1028] = 967, + [1029] = 631, + [1030] = 973, + [1031] = 1031, + [1032] = 1032, + [1033] = 655, + [1034] = 659, + [1035] = 662, + [1036] = 631, + [1037] = 632, + [1038] = 612, + [1039] = 651, + [1040] = 1040, + [1041] = 1041, + [1042] = 1031, + [1043] = 1002, + [1044] = 1044, + [1045] = 1045, + [1046] = 986, + [1047] = 1047, + [1048] = 976, + [1049] = 1031, + [1050] = 1002, + [1051] = 959, + [1052] = 986, + [1053] = 980, + [1054] = 1018, + [1055] = 1012, + [1056] = 974, [1057] = 1057, [1058] = 1058, - [1059] = 648, - [1060] = 986, - [1061] = 987, - [1062] = 988, - [1063] = 973, - [1064] = 989, - [1065] = 1001, - [1066] = 1000, - [1067] = 1012, - [1068] = 1026, - [1069] = 990, - [1070] = 991, - [1071] = 988, - [1072] = 974, - [1073] = 1073, - [1074] = 1015, - [1075] = 642, - [1076] = 649, - [1077] = 634, - [1078] = 636, - [1079] = 635, - [1080] = 637, - [1081] = 1081, - [1082] = 616, - [1083] = 1083, - [1084] = 1084, - [1085] = 639, - [1086] = 996, - [1087] = 997, - [1088] = 990, - [1089] = 1089, - [1090] = 991, - [1091] = 1091, - [1092] = 1092, - [1093] = 1093, - [1094] = 1001, + [1059] = 1059, + [1060] = 1060, + [1061] = 1061, + [1062] = 976, + [1063] = 1063, + [1064] = 1064, + [1065] = 1065, + [1066] = 1066, + [1067] = 1067, + [1068] = 1068, + [1069] = 986, + [1070] = 959, + [1071] = 974, + [1072] = 976, + [1073] = 956, + [1074] = 965, + [1075] = 973, + [1076] = 957, + [1077] = 962, + [1078] = 966, + [1079] = 967, + [1080] = 972, + [1081] = 954, + [1082] = 980, + [1083] = 1018, + [1084] = 1012, + [1085] = 956, + [1086] = 955, + [1087] = 965, + [1088] = 951, + [1089] = 973, + [1090] = 957, + [1091] = 962, + [1092] = 966, + [1093] = 967, + [1094] = 972, [1095] = 1095, - [1096] = 975, - [1097] = 976, + [1096] = 1096, + [1097] = 1097, [1098] = 1098, - [1099] = 1015, - [1100] = 986, - [1101] = 973, - [1102] = 988, - [1103] = 973, - [1104] = 989, - [1105] = 990, - [1106] = 991, - [1107] = 974, - [1108] = 1108, - [1109] = 1109, - [1110] = 969, - [1111] = 1000, - [1112] = 1012, - [1113] = 1026, - [1114] = 1114, - [1115] = 1115, - [1116] = 970, - [1117] = 966, - [1118] = 1118, - [1119] = 1119, + [1099] = 1099, + [1100] = 1100, + [1101] = 1101, + [1102] = 1102, + [1103] = 1103, + [1104] = 1104, + [1105] = 1105, + [1106] = 1106, + [1107] = 1107, + [1108] = 605, + [1109] = 607, + [1110] = 645, + [1111] = 650, + [1112] = 980, + [1113] = 1018, + [1114] = 1012, + [1115] = 959, + [1116] = 974, + [1117] = 1117, + [1118] = 1064, + [1119] = 1065, [1120] = 1120, [1121] = 1121, - [1122] = 1122, - [1123] = 1123, - [1124] = 1124, - [1125] = 974, - [1126] = 1126, - [1127] = 986, - [1128] = 1128, - [1129] = 612, - [1130] = 621, - [1131] = 631, - [1132] = 1001, - [1133] = 987, - [1134] = 1134, - [1135] = 1135, - [1136] = 996, - [1137] = 997, - [1138] = 975, - [1139] = 976, - [1140] = 632, - [1141] = 1056, - [1142] = 1057, - [1143] = 1143, - [1144] = 1000, - [1145] = 1145, - [1146] = 1012, - [1147] = 1147, - [1148] = 987, - [1149] = 621, - [1150] = 1114, - [1151] = 1115, - [1152] = 1081, - [1153] = 640, - [1154] = 641, - [1155] = 644, - [1156] = 631, - [1157] = 632, - [1158] = 639, - [1159] = 1000, - [1160] = 1012, - [1161] = 1026, - [1162] = 630, - [1163] = 1073, - [1164] = 1083, - [1165] = 1143, - [1166] = 1089, - [1167] = 1145, - [1168] = 1056, - [1169] = 1057, - [1170] = 1058, - [1171] = 1084, - [1172] = 1049, - [1173] = 1095, - [1174] = 1118, - [1175] = 1119, - [1176] = 1120, - [1177] = 648, - [1178] = 1121, - [1179] = 642, - [1180] = 1147, - [1181] = 1091, - [1182] = 1093, - [1183] = 1098, - [1184] = 1108, - [1185] = 1109, - [1186] = 1126, - [1187] = 642, - [1188] = 1092, - [1189] = 1134, - [1190] = 1050, - [1191] = 649, - [1192] = 634, - [1193] = 636, - [1194] = 1114, - [1195] = 1115, - [1196] = 635, - [1197] = 637, - [1198] = 1081, - [1199] = 639, - [1200] = 1135, - [1201] = 616, - [1202] = 1073, - [1203] = 1083, - [1204] = 1089, - [1205] = 1084, - [1206] = 1049, - [1207] = 1095, - [1208] = 1143, - [1209] = 1145, - [1210] = 1118, - [1211] = 1119, - [1212] = 1120, - [1213] = 1121, - [1214] = 1001, - [1215] = 649, - [1216] = 1147, - [1217] = 1091, - [1218] = 1093, - [1219] = 1098, - [1220] = 1108, - [1221] = 1109, - [1222] = 1126, - [1223] = 1092, - [1224] = 1134, - [1225] = 1050, - [1226] = 1081, - [1227] = 1114, - [1228] = 1115, - [1229] = 1135, - [1230] = 634, - [1231] = 636, - [1232] = 1000, - [1233] = 1050, - [1234] = 1012, - [1235] = 1026, - [1236] = 1073, - [1237] = 1083, - [1238] = 996, - [1239] = 642, - [1240] = 649, - [1241] = 634, - [1242] = 636, - [1243] = 635, - [1244] = 637, - [1245] = 1089, - [1246] = 997, - [1247] = 1001, - [1248] = 639, - [1249] = 1135, - [1250] = 1084, - [1251] = 975, - [1252] = 976, - [1253] = 1015, - [1254] = 1143, - [1255] = 1145, - [1256] = 986, - [1257] = 987, - [1258] = 988, - [1259] = 973, - [1260] = 989, - [1261] = 990, - [1262] = 991, - [1263] = 974, - [1264] = 631, - [1265] = 632, - [1266] = 631, - [1267] = 632, - [1268] = 639, - [1269] = 639, - [1270] = 1049, - [1271] = 1095, - [1272] = 1118, - [1273] = 1119, - [1274] = 1120, - [1275] = 1121, - [1276] = 635, - [1277] = 616, - [1278] = 612, - [1279] = 621, - [1280] = 1001, - [1281] = 612, - [1282] = 637, - [1283] = 1000, - [1284] = 1012, - [1285] = 1026, - [1286] = 1015, - [1287] = 1147, - [1288] = 1091, - [1289] = 1015, - [1290] = 1093, + [1122] = 623, + [1123] = 956, + [1124] = 965, + [1125] = 973, + [1126] = 957, + [1127] = 962, + [1128] = 966, + [1129] = 967, + [1130] = 972, + [1131] = 657, + [1132] = 966, + [1133] = 1040, + [1134] = 1095, + [1135] = 1097, + [1136] = 1103, + [1137] = 1041, + [1138] = 1044, + [1139] = 605, + [1140] = 1057, + [1141] = 1031, + [1142] = 1096, + [1143] = 1002, + [1144] = 1066, + [1145] = 1104, + [1146] = 1105, + [1147] = 1098, + [1148] = 1100, + [1149] = 1067, + [1150] = 1068, + [1151] = 1040, + [1152] = 1041, + [1153] = 1044, + [1154] = 1057, + [1155] = 1106, + [1156] = 976, + [1157] = 1107, + [1158] = 607, + [1159] = 1120, + [1160] = 1096, + [1161] = 1104, + [1162] = 1105, + [1163] = 1106, + [1164] = 1107, + [1165] = 1117, + [1166] = 1121, + [1167] = 1060, + [1168] = 1061, + [1169] = 1063, + [1170] = 1117, + [1171] = 1101, + [1172] = 1102, + [1173] = 1121, + [1174] = 1060, + [1175] = 1061, + [1176] = 1063, + [1177] = 1101, + [1178] = 1102, + [1179] = 623, + [1180] = 1099, + [1181] = 624, + [1182] = 980, + [1183] = 625, + [1184] = 1018, + [1185] = 626, + [1186] = 645, + [1187] = 650, + [1188] = 657, + [1189] = 655, + [1190] = 659, + [1191] = 662, + [1192] = 631, + [1193] = 632, + [1194] = 651, + [1195] = 986, + [1196] = 651, + [1197] = 1047, + [1198] = 980, + [1199] = 1018, + [1200] = 1012, + [1201] = 959, + [1202] = 974, + [1203] = 623, + [1204] = 612, + [1205] = 627, + [1206] = 976, + [1207] = 1067, + [1208] = 1068, + [1209] = 1095, + [1210] = 956, + [1211] = 965, + [1212] = 973, + [1213] = 957, + [1214] = 962, + [1215] = 1098, + [1216] = 1100, + [1217] = 972, + [1218] = 1097, + [1219] = 1103, + [1220] = 645, + [1221] = 650, + [1222] = 986, + [1223] = 645, + [1224] = 650, + [1225] = 605, + [1226] = 607, + [1227] = 1012, + [1228] = 980, + [1229] = 651, + [1230] = 651, + [1231] = 657, + [1232] = 1018, + [1233] = 1066, + [1234] = 1064, + [1235] = 1065, + [1236] = 1120, + [1237] = 655, + [1238] = 659, + [1239] = 662, + [1240] = 1012, + [1241] = 1095, + [1242] = 1098, + [1243] = 1100, + [1244] = 1040, + [1245] = 1041, + [1246] = 1044, + [1247] = 631, + [1248] = 632, + [1249] = 623, + [1250] = 1057, + [1251] = 1097, + [1252] = 1103, + [1253] = 612, + [1254] = 986, + [1255] = 1096, + [1256] = 1104, + [1257] = 1105, + [1258] = 1106, + [1259] = 1047, + [1260] = 1107, + [1261] = 1117, + [1262] = 1121, + [1263] = 1031, + [1264] = 1002, + [1265] = 657, + [1266] = 1060, + [1267] = 1061, + [1268] = 976, + [1269] = 1063, + [1270] = 655, + [1271] = 659, + [1272] = 1067, + [1273] = 1068, + [1274] = 662, + [1275] = 1101, + [1276] = 1102, + [1277] = 631, + [1278] = 632, + [1279] = 1099, + [1280] = 1099, + [1281] = 1066, + [1282] = 651, + [1283] = 1047, + [1284] = 967, + [1285] = 1041, + [1286] = 1040, + [1287] = 1041, + [1288] = 1044, + [1289] = 1066, + [1290] = 1095, [1291] = 1098, - [1292] = 1058, - [1293] = 1134, - [1294] = 1108, - [1295] = 1109, - [1296] = 1126, - [1297] = 996, - [1298] = 997, - [1299] = 1092, - [1300] = 648, - [1301] = 648, - [1302] = 1049, - [1303] = 644, - [1304] = 631, - [1305] = 632, - [1306] = 1000, - [1307] = 1012, - [1308] = 1026, - [1309] = 1073, - [1310] = 1083, - [1311] = 1081, - [1312] = 1089, - [1313] = 1143, - [1314] = 1145, - [1315] = 1084, - [1316] = 1135, - [1317] = 1049, - [1318] = 1095, - [1319] = 1118, - [1320] = 1119, - [1321] = 1120, - [1322] = 631, - [1323] = 1121, - [1324] = 632, - [1325] = 1135, - [1326] = 630, - [1327] = 635, - [1328] = 1147, - [1329] = 1147, - [1330] = 1091, - [1331] = 1093, - [1332] = 1098, - [1333] = 1108, - [1334] = 1109, - [1335] = 1126, - [1336] = 1091, - [1337] = 1092, - [1338] = 1134, - [1339] = 1050, - [1340] = 1340, - [1341] = 1341, - [1342] = 1093, - [1343] = 1114, - [1344] = 1115, - [1345] = 1109, - [1346] = 1121, - [1347] = 1098, - [1348] = 1126, - [1349] = 1108, - [1350] = 1109, - [1351] = 1073, - [1352] = 637, - [1353] = 1083, - [1354] = 1126, - [1355] = 1108, - [1356] = 648, - [1357] = 1091, - [1358] = 1093, - [1359] = 1098, - [1360] = 1124, - [1361] = 642, - [1362] = 649, - [1363] = 634, - [1364] = 636, - [1365] = 635, - [1366] = 637, - [1367] = 1001, - [1368] = 639, - [1369] = 1015, - [1370] = 640, - [1371] = 641, - [1372] = 644, - [1373] = 1092, - [1374] = 639, - [1375] = 630, - [1376] = 1134, - [1377] = 1050, - [1378] = 1092, - [1379] = 1143, - [1380] = 1145, - [1381] = 643, - [1382] = 1134, - [1383] = 1114, - [1384] = 1115, - [1385] = 1115, - [1386] = 648, - [1387] = 1050, - [1388] = 1089, - [1389] = 1081, - [1390] = 1135, - [1391] = 640, - [1392] = 636, - [1393] = 641, - [1394] = 1118, - [1395] = 649, - [1396] = 644, - [1397] = 1084, - [1398] = 631, - [1399] = 632, - [1400] = 639, - [1401] = 1119, - [1402] = 639, - [1403] = 1120, - [1404] = 630, - [1405] = 1073, - [1406] = 1083, - [1407] = 1147, - [1408] = 1089, - [1409] = 1084, - [1410] = 634, - [1411] = 1049, - [1412] = 1143, - [1413] = 1095, - [1414] = 1145, - [1415] = 1095, - [1416] = 640, - [1417] = 642, - [1418] = 1081, - [1419] = 643, - [1420] = 1118, - [1421] = 1119, - [1422] = 1120, - [1423] = 641, - [1424] = 1121, - [1425] = 1122, - [1426] = 1123, - [1427] = 1114, - [1428] = 1121, - [1429] = 635, - [1430] = 637, - [1431] = 1073, - [1432] = 1083, - [1433] = 643, - [1434] = 1089, - [1435] = 639, - [1436] = 1143, - [1437] = 1145, - [1438] = 643, - [1439] = 1056, - [1440] = 1084, - [1441] = 1057, - [1442] = 1049, - [1443] = 1095, - [1444] = 1118, - [1445] = 1119, - [1446] = 1120, - [1447] = 634, - [1448] = 1056, - [1449] = 1057, - [1450] = 1058, - [1451] = 1135, - [1452] = 1058, - [1453] = 1147, - [1454] = 1091, - [1455] = 1056, - [1456] = 1093, - [1457] = 1098, - [1458] = 1108, - [1459] = 1109, - [1460] = 1126, - [1461] = 1057, - [1462] = 1081, - [1463] = 1058, - [1464] = 1092, - [1465] = 1134, - [1466] = 1050, - [1467] = 1114, - [1468] = 1115, - [1469] = 631, - [1470] = 632, - [1471] = 649, - [1472] = 648, - [1473] = 642, - [1474] = 636, - [1475] = 632, - [1476] = 648, - [1477] = 642, - [1478] = 649, - [1479] = 630, - [1480] = 639, - [1481] = 639, - [1482] = 639, - [1483] = 639, - [1484] = 644, - [1485] = 635, - [1486] = 634, - [1487] = 636, - [1488] = 1341, - [1489] = 640, - [1490] = 1340, - [1491] = 641, - [1492] = 637, - [1493] = 631, - [1494] = 1494, - [1495] = 1495, - [1496] = 1496, - [1497] = 1497, - [1498] = 1498, - [1499] = 1498, - [1500] = 1496, - [1501] = 1501, - [1502] = 1502, - [1503] = 1503, - [1504] = 1504, - [1505] = 1505, - [1506] = 1506, - [1507] = 1497, - [1508] = 1498, - [1509] = 1501, - [1510] = 1496, - [1511] = 1501, - [1512] = 1503, - [1513] = 1504, - [1514] = 1502, - [1515] = 1503, - [1516] = 1504, - [1517] = 1502, - [1518] = 1505, - [1519] = 1506, - [1520] = 1497, - [1521] = 1498, - [1522] = 1505, - [1523] = 1506, - [1524] = 1505, - [1525] = 1496, - [1526] = 1501, - [1527] = 1497, - [1528] = 1502, - [1529] = 1503, - [1530] = 1504, - [1531] = 1506, - [1532] = 1532, - [1533] = 1533, - [1534] = 1533, - [1535] = 1533, - [1536] = 1536, - [1537] = 1537, - [1538] = 1538, - [1539] = 1539, - [1540] = 1538, + [1292] = 1100, + [1293] = 1040, + [1294] = 1041, + [1295] = 1060, + [1296] = 1057, + [1297] = 1097, + [1298] = 655, + [1299] = 659, + [1300] = 662, + [1301] = 1047, + [1302] = 631, + [1303] = 632, + [1304] = 1096, + [1305] = 1104, + [1306] = 1105, + [1307] = 1106, + [1308] = 1107, + [1309] = 1117, + [1310] = 1121, + [1311] = 1060, + [1312] = 1061, + [1313] = 1063, + [1314] = 1101, + [1315] = 1102, + [1316] = 1101, + [1317] = 1067, + [1318] = 1068, + [1319] = 1103, + [1320] = 1047, + [1321] = 1057, + [1322] = 1058, + [1323] = 1032, + [1324] = 1059, + [1325] = 645, + [1326] = 650, + [1327] = 619, + [1328] = 623, + [1329] = 1329, + [1330] = 1330, + [1331] = 1099, + [1332] = 1102, + [1333] = 657, + [1334] = 655, + [1335] = 659, + [1336] = 662, + [1337] = 631, + [1338] = 632, + [1339] = 986, + [1340] = 624, + [1341] = 624, + [1342] = 651, + [1343] = 625, + [1344] = 976, + [1345] = 624, + [1346] = 625, + [1347] = 626, + [1348] = 626, + [1349] = 651, + [1350] = 627, + [1351] = 623, + [1352] = 625, + [1353] = 645, + [1354] = 1096, + [1355] = 1104, + [1356] = 1105, + [1357] = 1106, + [1358] = 1107, + [1359] = 1117, + [1360] = 1121, + [1361] = 650, + [1362] = 651, + [1363] = 1060, + [1364] = 1061, + [1365] = 1063, + [1366] = 626, + [1367] = 1066, + [1368] = 627, + [1369] = 1063, + [1370] = 1067, + [1371] = 1068, + [1372] = 1047, + [1373] = 1101, + [1374] = 1102, + [1375] = 1067, + [1376] = 1068, + [1377] = 1099, + [1378] = 651, + [1379] = 1098, + [1380] = 1100, + [1381] = 1099, + [1382] = 1095, + [1383] = 1097, + [1384] = 657, + [1385] = 1103, + [1386] = 1066, + [1387] = 645, + [1388] = 650, + [1389] = 1098, + [1390] = 1100, + [1391] = 980, + [1392] = 1040, + [1393] = 1061, + [1394] = 1044, + [1395] = 1018, + [1396] = 1057, + [1397] = 1012, + [1398] = 1095, + [1399] = 1097, + [1400] = 627, + [1401] = 1103, + [1402] = 1096, + [1403] = 1104, + [1404] = 1105, + [1405] = 1106, + [1406] = 1107, + [1407] = 1117, + [1408] = 1121, + [1409] = 619, + [1410] = 1044, + [1411] = 1044, + [1412] = 1061, + [1413] = 1120, + [1414] = 1063, + [1415] = 650, + [1416] = 1068, + [1417] = 1066, + [1418] = 1101, + [1419] = 1102, + [1420] = 1067, + [1421] = 1064, + [1422] = 1098, + [1423] = 1064, + [1424] = 1100, + [1425] = 1065, + [1426] = 1095, + [1427] = 1120, + [1428] = 1040, + [1429] = 1041, + [1430] = 645, + [1431] = 1060, + [1432] = 657, + [1433] = 655, + [1434] = 659, + [1435] = 662, + [1436] = 631, + [1437] = 632, + [1438] = 1097, + [1439] = 1057, + [1440] = 1103, + [1441] = 1099, + [1442] = 1065, + [1443] = 1120, + [1444] = 1047, + [1445] = 619, + [1446] = 619, + [1447] = 1096, + [1448] = 1104, + [1449] = 651, + [1450] = 1105, + [1451] = 1064, + [1452] = 1065, + [1453] = 1121, + [1454] = 1106, + [1455] = 1107, + [1456] = 1117, + [1457] = 623, + [1458] = 651, + [1459] = 662, + [1460] = 631, + [1461] = 632, + [1462] = 650, + [1463] = 1329, + [1464] = 626, + [1465] = 645, + [1466] = 627, + [1467] = 1330, + [1468] = 623, + [1469] = 657, + [1470] = 655, + [1471] = 651, + [1472] = 651, + [1473] = 651, + [1474] = 659, + [1475] = 624, + [1476] = 625, + [1477] = 1477, + [1478] = 1478, + [1479] = 1479, + [1480] = 1480, + [1481] = 1481, + [1482] = 1482, + [1483] = 1483, + [1484] = 1484, + [1485] = 1485, + [1486] = 1486, + [1487] = 1487, + [1488] = 1485, + [1489] = 1480, + [1490] = 1479, + [1491] = 1481, + [1492] = 1482, + [1493] = 1483, + [1494] = 1484, + [1495] = 1487, + [1496] = 1486, + [1497] = 1487, + [1498] = 1480, + [1499] = 1479, + [1500] = 1481, + [1501] = 1482, + [1502] = 1480, + [1503] = 1479, + [1504] = 1486, + [1505] = 1487, + [1506] = 1481, + [1507] = 1483, + [1508] = 1484, + [1509] = 1483, + [1510] = 1484, + [1511] = 1482, + [1512] = 1485, + [1513] = 1486, + [1514] = 1485, + [1515] = 1515, + [1516] = 1516, + [1517] = 1516, + [1518] = 1516, + [1519] = 1519, + [1520] = 1520, + [1521] = 1521, + [1522] = 1522, + [1523] = 1523, + [1524] = 1523, + [1525] = 1525, + [1526] = 1521, + [1527] = 1525, + [1528] = 1522, + [1529] = 1523, + [1530] = 1520, + [1531] = 1521, + [1532] = 1521, + [1533] = 1525, + [1534] = 1522, + [1535] = 1523, + [1536] = 1520, + [1537] = 1520, + [1538] = 1525, + [1539] = 1522, + [1540] = 1540, [1541] = 1541, - [1542] = 1537, - [1543] = 1541, - [1544] = 1539, - [1545] = 1538, - [1546] = 1537, - [1547] = 1537, - [1548] = 1548, - [1549] = 1548, - [1550] = 1541, - [1551] = 1548, - [1552] = 1548, - [1553] = 1539, - [1554] = 1538, - [1555] = 1539, - [1556] = 1541, - [1557] = 1557, - [1558] = 1558, - [1559] = 1559, - [1560] = 1558, - [1561] = 1558, - [1562] = 1559, - [1563] = 1559, - [1564] = 1564, - [1565] = 1559, - [1566] = 1558, - [1567] = 1567, - [1568] = 1567, - [1569] = 1564, - [1570] = 1567, - [1571] = 1567, - [1572] = 1564, - [1573] = 1564, - [1574] = 1564, - [1575] = 1567, - [1576] = 1564, - [1577] = 1567, - [1578] = 1564, - [1579] = 1567, - [1580] = 1567, + [1542] = 1541, + [1543] = 1543, + [1544] = 1541, + [1545] = 1545, + [1546] = 1543, + [1547] = 1543, + [1548] = 1541, + [1549] = 1543, + [1550] = 1550, + [1551] = 1550, + [1552] = 1545, + [1553] = 1550, + [1554] = 1545, + [1555] = 1545, + [1556] = 1550, + [1557] = 1550, + [1558] = 1545, + [1559] = 1545, + [1560] = 1545, + [1561] = 1550, + [1562] = 1550, + [1563] = 1330, + [1564] = 1550, + [1565] = 627, + [1566] = 1566, + [1567] = 625, + [1568] = 1545, + [1569] = 624, + [1570] = 1570, + [1571] = 626, + [1572] = 1329, + [1573] = 1573, + [1574] = 1574, + [1575] = 645, + [1576] = 1576, + [1577] = 650, + [1578] = 1578, + [1579] = 651, + [1580] = 1580, [1581] = 1581, - [1582] = 1340, - [1583] = 1341, - [1584] = 640, - [1585] = 641, - [1586] = 644, - [1587] = 630, - [1588] = 1588, - [1589] = 1564, - [1590] = 1590, - [1591] = 632, - [1592] = 639, - [1593] = 631, - [1594] = 1594, - [1595] = 1595, - [1596] = 1596, + [1582] = 627, + [1583] = 1329, + [1584] = 1584, + [1585] = 1330, + [1586] = 624, + [1587] = 625, + [1588] = 1581, + [1589] = 624, + [1590] = 1581, + [1591] = 1330, + [1592] = 627, + [1593] = 1593, + [1594] = 627, + [1595] = 625, + [1596] = 1329, [1597] = 1597, - [1598] = 640, - [1599] = 640, - [1600] = 641, - [1601] = 1340, - [1602] = 1341, - [1603] = 1596, - [1604] = 1597, - [1605] = 1594, - [1606] = 640, - [1607] = 641, - [1608] = 644, - [1609] = 630, - [1610] = 641, - [1611] = 631, - [1612] = 632, - [1613] = 644, - [1614] = 1614, - [1615] = 1341, - [1616] = 1616, - [1617] = 1617, - [1618] = 1340, - [1619] = 1341, - [1620] = 630, - [1621] = 644, - [1622] = 1616, - [1623] = 1616, - [1624] = 1616, - [1625] = 1616, - [1626] = 1616, - [1627] = 1616, - [1628] = 1628, - [1629] = 1616, - [1630] = 639, - [1631] = 1616, - [1632] = 1616, - [1633] = 630, + [1598] = 1581, + [1599] = 651, + [1600] = 1581, + [1601] = 626, + [1602] = 1602, + [1603] = 1581, + [1604] = 624, + [1605] = 1578, + [1606] = 1581, + [1607] = 1581, + [1608] = 1581, + [1609] = 1329, + [1610] = 1580, + [1611] = 625, + [1612] = 626, + [1613] = 650, + [1614] = 626, + [1615] = 645, + [1616] = 1573, + [1617] = 1330, + [1618] = 1581, + [1619] = 1619, + [1620] = 1576, + [1621] = 1619, + [1622] = 1622, + [1623] = 1623, + [1624] = 1623, + [1625] = 1584, + [1626] = 1597, + [1627] = 1622, + [1628] = 1622, + [1629] = 1622, + [1630] = 1602, + [1631] = 1622, + [1632] = 1622, + [1633] = 1622, [1634] = 1634, - [1635] = 1340, - [1636] = 1636, - [1637] = 1636, - [1638] = 1634, - [1639] = 1636, - [1640] = 1614, + [1635] = 1622, + [1636] = 1593, + [1637] = 1619, + [1638] = 1574, + [1639] = 1639, + [1640] = 1640, [1641] = 1641, - [1642] = 1636, - [1643] = 1590, - [1644] = 1636, - [1645] = 1636, - [1646] = 1617, - [1647] = 1636, + [1642] = 1640, + [1643] = 1641, + [1644] = 1644, + [1645] = 1645, + [1646] = 1646, + [1647] = 1646, [1648] = 1648, - [1649] = 1648, - [1650] = 1628, + [1649] = 1649, + [1650] = 1650, [1651] = 1651, - [1652] = 1651, - [1653] = 1595, - [1654] = 1636, - [1655] = 1648, - [1656] = 1656, - [1657] = 1657, - [1658] = 1657, - [1659] = 1659, - [1660] = 1660, - [1661] = 1659, - [1662] = 1662, + [1652] = 1652, + [1653] = 1653, + [1654] = 1654, + [1655] = 1650, + [1656] = 1650, + [1657] = 1650, + [1658] = 1658, + [1659] = 1650, + [1660] = 1650, + [1661] = 1650, + [1662] = 1650, [1663] = 1663, - [1664] = 1662, + [1664] = 1664, [1665] = 1665, [1666] = 1666, - [1667] = 1665, + [1667] = 1667, [1668] = 1668, - [1669] = 1669, - [1670] = 1670, - [1671] = 1665, - [1672] = 1672, - [1673] = 1665, - [1674] = 1665, - [1675] = 1665, - [1676] = 1676, - [1677] = 1677, + [1669] = 1667, + [1670] = 1648, + [1671] = 1663, + [1672] = 1666, + [1673] = 1653, + [1674] = 1664, + [1675] = 1667, + [1676] = 1665, + [1677] = 1668, [1678] = 1665, - [1679] = 1679, - [1680] = 1680, - [1681] = 1665, - [1682] = 1682, - [1683] = 1683, - [1684] = 1684, + [1679] = 1667, + [1680] = 1654, + [1681] = 1666, + [1682] = 1667, + [1683] = 1665, + [1684] = 1668, [1685] = 1685, - [1686] = 1682, - [1687] = 1684, - [1688] = 1683, - [1689] = 1689, - [1690] = 1683, - [1691] = 1684, - [1692] = 1685, - [1693] = 1693, - [1694] = 1682, - [1695] = 1679, - [1696] = 1683, - [1697] = 1684, - [1698] = 1685, - [1699] = 1682, - [1700] = 1685, - [1701] = 1683, - [1702] = 1684, - [1703] = 1685, - [1704] = 1682, - [1705] = 1668, - [1706] = 1670, - [1707] = 1684, - [1708] = 1685, - [1709] = 1709, - [1710] = 1682, - [1711] = 1683, - [1712] = 1684, - [1713] = 1685, - [1714] = 1682, - [1715] = 1683, - [1716] = 1684, - [1717] = 1685, - [1718] = 1682, - [1719] = 1683, - [1720] = 1684, - [1721] = 1721, - [1722] = 1677, - [1723] = 1721, - [1724] = 1680, - [1725] = 1721, - [1726] = 1676, - [1727] = 1721, - [1728] = 1721, - [1729] = 1672, - [1730] = 1721, - [1731] = 1721, - [1732] = 1721, - [1733] = 1666, - [1734] = 1669, - [1735] = 1683, - [1736] = 1668, - [1737] = 1737, - [1738] = 1679, - [1739] = 1676, - [1740] = 1740, - [1741] = 1680, - [1742] = 1669, - [1743] = 1670, - [1744] = 1672, - [1745] = 1669, - [1746] = 1740, - [1747] = 1668, - [1748] = 1679, - [1749] = 1670, - [1750] = 1672, - [1751] = 1666, - [1752] = 1676, - [1753] = 1677, - [1754] = 1677, - [1755] = 1680, - [1756] = 1756, - [1757] = 1666, - [1758] = 1758, - [1759] = 1672, - [1760] = 1679, - [1761] = 1668, - [1762] = 1762, - [1763] = 1680, - [1764] = 1666, - [1765] = 1680, - [1766] = 1677, - [1767] = 1740, - [1768] = 1679, - [1769] = 1769, + [1686] = 1666, + [1687] = 1687, + [1688] = 1668, + [1689] = 1667, + [1690] = 1668, + [1691] = 1666, + [1692] = 1667, + [1693] = 1665, + [1694] = 1658, + [1695] = 1668, + [1696] = 1666, + [1697] = 1697, + [1698] = 1667, + [1699] = 1665, + [1700] = 1668, + [1701] = 1668, + [1702] = 1666, + [1703] = 1667, + [1704] = 1651, + [1705] = 1705, + [1706] = 1666, + [1707] = 1705, + [1708] = 1666, + [1709] = 1705, + [1710] = 1649, + [1711] = 1652, + [1712] = 1705, + [1713] = 1705, + [1714] = 1705, + [1715] = 1705, + [1716] = 1705, + [1717] = 1665, + [1718] = 1665, + [1719] = 1663, + [1720] = 1720, + [1721] = 1648, + [1722] = 1649, + [1723] = 1649, + [1724] = 1724, + [1725] = 1658, + [1726] = 1651, + [1727] = 1653, + [1728] = 1652, + [1729] = 1664, + [1730] = 1654, + [1731] = 1653, + [1732] = 1658, + [1733] = 1724, + [1734] = 1734, + [1735] = 1663, + [1736] = 1651, + [1737] = 1652, + [1738] = 1664, + [1739] = 1648, + [1740] = 1654, + [1741] = 1663, + [1742] = 1652, + [1743] = 1664, + [1744] = 1664, + [1745] = 1658, + [1746] = 1746, + [1747] = 1747, + [1748] = 1649, + [1749] = 1654, + [1750] = 1654, + [1751] = 1648, + [1752] = 1653, + [1753] = 1663, + [1754] = 1649, + [1755] = 1648, + [1756] = 1724, + [1757] = 1653, + [1758] = 1663, + [1759] = 1648, + [1760] = 1658, + [1761] = 1651, + [1762] = 1724, + [1763] = 1658, + [1764] = 1652, + [1765] = 1664, + [1766] = 1654, + [1767] = 1767, + [1768] = 1651, + [1769] = 1649, [1770] = 1770, - [1771] = 1668, - [1772] = 1677, - [1773] = 1670, - [1774] = 1774, - [1775] = 1680, - [1776] = 1677, - [1777] = 1676, - [1778] = 1676, - [1779] = 1669, - [1780] = 1669, - [1781] = 1740, - [1782] = 1669, - [1783] = 1670, - [1784] = 1670, - [1785] = 1672, - [1786] = 1672, - [1787] = 1679, - [1788] = 1666, + [1771] = 1651, + [1772] = 1772, + [1773] = 1773, + [1774] = 1652, + [1775] = 1775, + [1776] = 1653, + [1777] = 1777, + [1778] = 1778, + [1779] = 1779, + [1780] = 1777, + [1781] = 1781, + [1782] = 1782, + [1783] = 1783, + [1784] = 1779, + [1785] = 1773, + [1786] = 1777, + [1787] = 1746, + [1788] = 1663, [1789] = 1789, - [1790] = 1790, - [1791] = 1668, - [1792] = 1666, - [1793] = 1676, - [1794] = 1774, - [1795] = 1795, - [1796] = 1796, - [1797] = 1797, - [1798] = 1798, + [1790] = 1648, + [1791] = 1791, + [1792] = 1777, + [1793] = 1734, + [1794] = 1651, + [1795] = 1652, + [1796] = 1664, + [1797] = 1654, + [1798] = 1779, [1799] = 1799, - [1800] = 1800, - [1801] = 1795, - [1802] = 1802, - [1803] = 1803, - [1804] = 1680, + [1800] = 1777, + [1801] = 1801, + [1802] = 1782, + [1803] = 1777, + [1804] = 1804, [1805] = 1805, - [1806] = 1806, - [1807] = 1807, - [1808] = 1796, - [1809] = 1806, - [1810] = 1668, - [1811] = 1795, - [1812] = 1812, - [1813] = 1796, - [1814] = 1795, - [1815] = 1774, - [1816] = 1795, - [1817] = 1795, - [1818] = 1679, - [1819] = 1795, - [1820] = 1820, - [1821] = 1821, - [1822] = 1822, - [1823] = 1821, + [1806] = 1746, + [1807] = 1649, + [1808] = 1658, + [1809] = 1777, + [1810] = 1653, + [1811] = 1777, + [1812] = 1777, + [1813] = 1777, + [1814] = 1814, + [1815] = 1746, + [1816] = 1816, + [1817] = 1817, + [1818] = 1818, + [1819] = 1817, + [1820] = 1814, + [1821] = 1782, + [1822] = 1814, + [1823] = 1823, [1824] = 1824, - [1825] = 1666, + [1825] = 1825, [1826] = 1826, [1827] = 1827, - [1828] = 1828, - [1829] = 1807, - [1830] = 1795, - [1831] = 1822, - [1832] = 1806, - [1833] = 1795, - [1834] = 1756, - [1835] = 1677, - [1836] = 1798, - [1837] = 1676, - [1838] = 1774, - [1839] = 1822, - [1840] = 1669, - [1841] = 1670, - [1842] = 1672, - [1843] = 1790, - [1844] = 1795, + [1828] = 1767, + [1829] = 1829, + [1830] = 1747, + [1831] = 1831, + [1832] = 1832, + [1833] = 1829, + [1834] = 1772, + [1835] = 1772, + [1836] = 1829, + [1837] = 1791, + [1838] = 1838, + [1839] = 1839, + [1840] = 1840, + [1841] = 1841, + [1842] = 1842, + [1843] = 1840, + [1844] = 1747, [1845] = 1845, - [1846] = 1846, - [1847] = 1756, + [1846] = 1842, + [1847] = 1847, [1848] = 1848, [1849] = 1849, - [1850] = 1850, - [1851] = 1851, - [1852] = 1851, - [1853] = 1758, - [1854] = 1845, - [1855] = 1845, - [1856] = 1856, - [1857] = 1851, - [1858] = 1820, - [1859] = 1789, - [1860] = 1846, - [1861] = 1861, - [1862] = 1862, - [1863] = 1756, - [1864] = 1864, + [1850] = 1826, + [1851] = 1848, + [1852] = 1824, + [1853] = 1791, + [1854] = 1849, + [1855] = 1829, + [1856] = 1829, + [1857] = 1734, + [1858] = 1838, + [1859] = 1838, + [1860] = 1829, + [1861] = 1772, + [1862] = 1734, + [1863] = 1767, + [1864] = 1767, [1865] = 1865, - [1866] = 1762, - [1867] = 1867, - [1868] = 1789, - [1869] = 1848, - [1870] = 1851, - [1871] = 1851, - [1872] = 1850, - [1873] = 1873, - [1874] = 1874, - [1875] = 1758, - [1876] = 1873, - [1877] = 1820, + [1866] = 1866, + [1867] = 1848, + [1868] = 1829, + [1869] = 1829, + [1870] = 1747, + [1871] = 1840, + [1872] = 1824, + [1873] = 1791, + [1874] = 1772, + [1875] = 1875, + [1876] = 1876, + [1877] = 1877, [1878] = 1878, - [1879] = 1851, + [1879] = 1879, [1880] = 1880, - [1881] = 1873, - [1882] = 1851, - [1883] = 1758, - [1884] = 1762, - [1885] = 1762, + [1881] = 1881, + [1882] = 1882, + [1883] = 1883, + [1884] = 1878, + [1885] = 1881, [1886] = 1886, - [1887] = 1880, - [1888] = 1849, - [1889] = 1851, - [1890] = 1880, + [1887] = 1887, + [1888] = 1888, + [1889] = 1889, + [1890] = 1574, [1891] = 1891, - [1892] = 1789, - [1893] = 1846, - [1894] = 1820, + [1892] = 1892, + [1893] = 1893, + [1894] = 1888, [1895] = 1895, - [1896] = 1896, + [1896] = 1789, [1897] = 1897, - [1898] = 1790, + [1898] = 1770, [1899] = 1899, [1900] = 1900, - [1901] = 1789, + [1901] = 1901, [1902] = 1902, - [1903] = 1874, + [1903] = 1903, [1904] = 1904, - [1905] = 1874, - [1906] = 1906, - [1907] = 1891, - [1908] = 1908, + [1905] = 1832, + [1906] = 1875, + [1907] = 1892, + [1908] = 1878, [1909] = 1909, - [1910] = 1802, - [1911] = 1911, + [1910] = 1839, + [1911] = 1576, [1912] = 1912, - [1913] = 1913, - [1914] = 1914, + [1913] = 1773, + [1914] = 1895, [1915] = 1915, [1916] = 1916, [1917] = 1917, - [1918] = 1802, - [1919] = 1919, - [1920] = 1920, + [1918] = 1918, + [1919] = 1832, + [1920] = 1903, [1921] = 1921, [1922] = 1922, - [1923] = 1909, + [1923] = 1773, [1924] = 1924, - [1925] = 1916, - [1926] = 1926, - [1927] = 1769, + [1925] = 1747, + [1926] = 1921, + [1927] = 1770, [1928] = 1928, - [1929] = 1908, - [1930] = 1802, - [1931] = 1931, - [1932] = 1904, - [1933] = 1933, + [1929] = 1929, + [1930] = 1876, + [1931] = 1895, + [1932] = 1912, + [1933] = 1879, [1934] = 1934, - [1935] = 1917, - [1936] = 1900, - [1937] = 1891, - [1938] = 1909, - [1939] = 1939, - [1940] = 1762, - [1941] = 1931, - [1942] = 1942, - [1943] = 1911, - [1944] = 1803, - [1945] = 1945, - [1946] = 1891, - [1947] = 1947, + [1935] = 1928, + [1936] = 1936, + [1937] = 1912, + [1938] = 1773, + [1939] = 1921, + [1940] = 1940, + [1941] = 1839, + [1942] = 1875, + [1943] = 1929, + [1944] = 1944, + [1945] = 1895, + [1946] = 1946, + [1947] = 1818, [1948] = 1948, - [1949] = 1949, - [1950] = 1911, - [1951] = 1908, - [1952] = 1919, - [1953] = 1953, - [1954] = 1954, - [1955] = 1904, - [1956] = 1947, - [1957] = 1957, - [1958] = 1947, - [1959] = 1920, + [1949] = 1818, + [1950] = 1880, + [1951] = 1951, + [1952] = 1952, + [1953] = 1892, + [1954] = 1882, + [1955] = 1929, + [1956] = 1956, + [1957] = 1888, + [1958] = 1958, + [1959] = 1959, [1960] = 1960, [1961] = 1961, - [1962] = 1874, - [1963] = 1595, - [1964] = 1926, - [1965] = 1758, - [1966] = 1954, - [1967] = 1967, - [1968] = 1968, - [1969] = 1957, + [1962] = 1901, + [1963] = 1963, + [1964] = 1964, + [1965] = 1818, + [1966] = 1961, + [1967] = 1883, + [1968] = 1882, + [1969] = 1936, [1970] = 1970, - [1971] = 1926, - [1972] = 1972, - [1973] = 1973, - [1974] = 1931, - [1975] = 1975, - [1976] = 1916, - [1977] = 1975, - [1978] = 1954, + [1971] = 1901, + [1972] = 1839, + [1973] = 1922, + [1974] = 1879, + [1975] = 1958, + [1976] = 1832, + [1977] = 1956, + [1978] = 1978, [1979] = 1979, - [1980] = 1980, - [1981] = 1769, - [1982] = 1790, - [1983] = 1967, - [1984] = 1968, + [1980] = 1767, + [1981] = 1909, + [1982] = 1770, + [1983] = 1983, + [1984] = 1964, [1985] = 1985, [1986] = 1986, - [1987] = 1899, - [1988] = 1970, - [1989] = 1922, - [1990] = 1917, - [1991] = 1948, - [1992] = 1992, - [1993] = 1957, - [1994] = 1590, + [1987] = 1883, + [1988] = 1988, + [1989] = 1989, + [1990] = 1989, + [1991] = 1991, + [1992] = 1989, + [1993] = 1993, + [1994] = 1994, [1995] = 1995, - [1996] = 1949, + [1996] = 1881, [1997] = 1997, - [1998] = 1911, - [1999] = 1790, - [2000] = 1769, + [1998] = 1998, + [1999] = 1999, + [2000] = 1934, [2001] = 2001, - [2002] = 2002, - [2003] = 1902, - [2004] = 2004, + [2002] = 1989, + [2003] = 2003, + [2004] = 1964, [2005] = 2005, - [2006] = 2006, - [2007] = 1617, - [2008] = 1912, - [2009] = 1914, - [2010] = 2010, - [2011] = 1922, + [2006] = 1989, + [2007] = 2007, + [2008] = 1840, + [2009] = 1909, + [2010] = 1956, + [2011] = 1961, [2012] = 2012, [2013] = 2013, [2014] = 2014, [2015] = 2015, - [2016] = 1933, - [2017] = 1979, - [2018] = 2005, - [2019] = 2019, + [2016] = 2016, + [2017] = 1998, + [2018] = 2018, + [2019] = 1921, [2020] = 2020, [2021] = 2021, [2022] = 2022, - [2023] = 1933, - [2024] = 1997, - [2025] = 1802, - [2026] = 2005, + [2023] = 2023, + [2024] = 1818, + [2025] = 1887, + [2026] = 1909, [2027] = 2027, - [2028] = 2028, - [2029] = 2029, - [2030] = 1967, - [2031] = 1947, - [2032] = 2032, - [2033] = 2005, - [2034] = 2034, - [2035] = 2035, - [2036] = 2036, - [2037] = 2037, - [2038] = 2010, + [2028] = 1970, + [2029] = 1989, + [2030] = 2030, + [2031] = 2031, + [2032] = 1887, + [2033] = 2033, + [2034] = 2016, + [2035] = 1989, + [2036] = 2027, + [2037] = 2013, + [2038] = 2038, [2039] = 2039, [2040] = 2040, [2041] = 2041, - [2042] = 2015, + [2042] = 2031, [2043] = 2043, - [2044] = 2021, + [2044] = 2044, [2045] = 2045, - [2046] = 2046, - [2047] = 2047, - [2048] = 1634, - [2049] = 2049, - [2050] = 2050, - [2051] = 2006, - [2052] = 2002, - [2053] = 2028, - [2054] = 2054, - [2055] = 2055, - [2056] = 2056, - [2057] = 2057, - [2058] = 1972, - [2059] = 1895, - [2060] = 1980, - [2061] = 1967, - [2062] = 1968, - [2063] = 1972, - [2064] = 1919, - [2065] = 2065, - [2066] = 1895, - [2067] = 2067, - [2068] = 2068, - [2069] = 1912, - [2070] = 2034, - [2071] = 2067, - [2072] = 1980, - [2073] = 2073, - [2074] = 2010, - [2075] = 2075, - [2076] = 1968, - [2077] = 1970, - [2078] = 1902, - [2079] = 2079, - [2080] = 2054, - [2081] = 2015, - [2082] = 2021, - [2083] = 1922, - [2084] = 1902, - [2085] = 1912, - [2086] = 2073, - [2087] = 1914, - [2088] = 1614, - [2089] = 1873, - [2090] = 1970, - [2091] = 2005, - [2092] = 1917, - [2093] = 1914, - [2094] = 2068, - [2095] = 2073, - [2096] = 2005, - [2097] = 1909, - [2098] = 1919, - [2099] = 2099, + [2046] = 1922, + [2047] = 1978, + [2048] = 1978, + [2049] = 1944, + [2050] = 1918, + [2051] = 1944, + [2052] = 2005, + [2053] = 1593, + [2054] = 1934, + [2055] = 2014, + [2056] = 1964, + [2057] = 1999, + [2058] = 2031, + [2059] = 2059, + [2060] = 2022, + [2061] = 2031, + [2062] = 2062, + [2063] = 1944, + [2064] = 1602, + [2065] = 2005, + [2066] = 2014, + [2067] = 1887, + [2068] = 1597, + [2069] = 2069, + [2070] = 2070, + [2071] = 1989, + [2072] = 2072, + [2073] = 1879, + [2074] = 1922, + [2075] = 2072, + [2076] = 1889, + [2077] = 2077, + [2078] = 1918, + [2079] = 2023, + [2080] = 1876, + [2081] = 1956, + [2082] = 1961, + [2083] = 1876, + [2084] = 1883, + [2085] = 1881, + [2086] = 2020, + [2087] = 1918, + [2088] = 1584, + [2089] = 2089, + [2090] = 1978, + [2091] = 2091, + [2092] = 2092, + [2093] = 2093, + [2094] = 2072, + [2095] = 1924, + [2096] = 2096, + [2097] = 2097, + [2098] = 2098, + [2099] = 1901, [2100] = 2100, - [2101] = 1920, + [2101] = 1934, [2102] = 2102, - [2103] = 2005, + [2103] = 2102, [2104] = 2104, - [2105] = 1972, - [2106] = 1895, + [2105] = 2105, + [2106] = 2106, [2107] = 2107, - [2108] = 2021, - [2109] = 1920, - [2110] = 2065, - [2111] = 1933, + [2108] = 2108, + [2109] = 2109, + [2110] = 2110, + [2111] = 2111, [2112] = 2112, [2113] = 2113, - [2114] = 2114, + [2114] = 2105, [2115] = 2115, [2116] = 2116, [2117] = 2117, - [2118] = 2041, + [2118] = 2118, [2119] = 2119, - [2120] = 2120, - [2121] = 1980, - [2122] = 1628, - [2123] = 2005, - [2124] = 2119, - [2125] = 2012, - [2126] = 2020, - [2127] = 2112, - [2128] = 2128, - [2129] = 2029, - [2130] = 2035, - [2131] = 2131, - [2132] = 2040, - [2133] = 2043, - [2134] = 2050, - [2135] = 2041, - [2136] = 2055, - [2137] = 2012, - [2138] = 2102, - [2139] = 2107, - [2140] = 2004, - [2141] = 2113, - [2142] = 2115, - [2143] = 2116, - [2144] = 2119, - [2145] = 2120, - [2146] = 2014, - [2147] = 2022, - [2148] = 2027, - [2149] = 2045, - [2150] = 2047, - [2151] = 2019, - [2152] = 2020, - [2153] = 2153, + [2120] = 1993, + [2121] = 1998, + [2122] = 2018, + [2123] = 2044, + [2124] = 2124, + [2125] = 2125, + [2126] = 1983, + [2127] = 2093, + [2128] = 2097, + [2129] = 1995, + [2130] = 1997, + [2131] = 2007, + [2132] = 2132, + [2133] = 1994, + [2134] = 2012, + [2135] = 2033, + [2136] = 2059, + [2137] = 2077, + [2138] = 1986, + [2139] = 2030, + [2140] = 2089, + [2141] = 2062, + [2142] = 2043, + [2143] = 1985, + [2144] = 2001, + [2145] = 2102, + [2146] = 2015, + [2147] = 2147, + [2148] = 2118, + [2149] = 2119, + [2150] = 2150, + [2151] = 2151, + [2152] = 2152, + [2153] = 2125, [2154] = 2154, - [2155] = 2155, - [2156] = 2156, - [2157] = 2157, - [2158] = 2032, - [2159] = 2159, + [2155] = 1993, + [2156] = 1998, + [2157] = 2018, + [2158] = 2044, + [2159] = 1988, [2160] = 2160, [2161] = 2161, [2162] = 2162, - [2163] = 2160, - [2164] = 2164, - [2165] = 2112, - [2166] = 2029, - [2167] = 2035, - [2168] = 2040, - [2169] = 2043, - [2170] = 2050, - [2171] = 2041, - [2172] = 2055, + [2163] = 2118, + [2164] = 2119, + [2165] = 1983, + [2166] = 2093, + [2167] = 2097, + [2168] = 1995, + [2169] = 1997, + [2170] = 2125, + [2171] = 2007, + [2172] = 2100, [2173] = 2173, - [2174] = 2012, + [2174] = 2174, [2175] = 2175, - [2176] = 2020, - [2177] = 2102, - [2178] = 2107, - [2179] = 2004, - [2180] = 2113, - [2181] = 2115, - [2182] = 2116, - [2183] = 2119, - [2184] = 2184, - [2185] = 2120, - [2186] = 2014, - [2187] = 2022, - [2188] = 2027, - [2189] = 2045, - [2190] = 2153, - [2191] = 2154, - [2192] = 2047, - [2193] = 2019, - [2194] = 2160, - [2195] = 2195, - [2196] = 2112, - [2197] = 2197, - [2198] = 2036, - [2199] = 2199, - [2200] = 2200, - [2201] = 2201, - [2202] = 2153, - [2203] = 2154, - [2204] = 2160, - [2205] = 2104, - [2206] = 2029, - [2207] = 2131, - [2208] = 2035, - [2209] = 2209, - [2210] = 2040, - [2211] = 2043, - [2212] = 2050, - [2213] = 2055, - [2214] = 2114, - [2215] = 2215, + [2176] = 2012, + [2177] = 2033, + [2178] = 2059, + [2179] = 2077, + [2180] = 1986, + [2181] = 2030, + [2182] = 2089, + [2183] = 2062, + [2184] = 2043, + [2185] = 1985, + [2186] = 2001, + [2187] = 2102, + [2188] = 2118, + [2189] = 2015, + [2190] = 2119, + [2191] = 1993, + [2192] = 2018, + [2193] = 2044, + [2194] = 2091, + [2195] = 1983, + [2196] = 2093, + [2197] = 2097, + [2198] = 1995, + [2199] = 1997, + [2200] = 2007, + [2201] = 1994, + [2202] = 2012, + [2203] = 2033, + [2204] = 2059, + [2205] = 2077, + [2206] = 1986, + [2207] = 2030, + [2208] = 2089, + [2209] = 2062, + [2210] = 2043, + [2211] = 1985, + [2212] = 2001, + [2213] = 2015, + [2214] = 2214, + [2215] = 2110, [2216] = 2216, [2217] = 2217, [2218] = 2218, - [2219] = 2102, - [2220] = 2107, - [2221] = 2004, - [2222] = 2113, - [2223] = 2115, + [2219] = 2104, + [2220] = 2220, + [2221] = 2221, + [2222] = 2222, + [2223] = 2223, [2224] = 2224, - [2225] = 2225, - [2226] = 2116, - [2227] = 2227, - [2228] = 2120, - [2229] = 2229, + [2225] = 2038, + [2226] = 2045, + [2227] = 2218, + [2228] = 2107, + [2229] = 2125, [2230] = 2230, - [2231] = 2231, + [2231] = 1994, [2232] = 2232, - [2233] = 2014, + [2233] = 2233, [2234] = 2234, - [2235] = 2022, - [2236] = 2027, - [2237] = 2037, + [2235] = 2235, + [2236] = 2236, + [2237] = 2237, [2238] = 2238, [2239] = 2239, - [2240] = 2045, - [2241] = 2153, - [2242] = 2047, - [2243] = 2019, - [2244] = 2154, - [2245] = 2245, - [2246] = 2195, - [2247] = 2201, + [2240] = 2240, + [2241] = 2241, + [2242] = 2232, + [2243] = 1960, + [2244] = 1915, + [2245] = 2233, + [2246] = 1951, + [2247] = 986, [2248] = 2248, - [2249] = 2224, + [2249] = 2249, [2250] = 2250, - [2251] = 2215, + [2251] = 2251, [2252] = 2252, - [2253] = 2253, - [2254] = 2254, + [2253] = 2236, + [2254] = 2150, [2255] = 2255, [2256] = 2256, [2257] = 2257, @@ -5043,555 +5040,592 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2260] = 2260, [2261] = 2261, [2262] = 2262, - [2263] = 2261, + [2263] = 2263, [2264] = 2264, [2265] = 2265, [2266] = 2266, - [2267] = 2267, - [2268] = 2268, - [2269] = 2258, - [2270] = 2253, - [2271] = 2259, - [2272] = 2272, + [2267] = 1893, + [2268] = 2240, + [2269] = 2269, + [2270] = 2270, + [2271] = 2271, + [2272] = 1979, [2273] = 2273, - [2274] = 2229, + [2274] = 2113, [2275] = 2275, - [2276] = 2276, - [2277] = 2277, + [2276] = 2234, + [2277] = 1959, [2278] = 2278, - [2279] = 2279, + [2279] = 2237, [2280] = 2280, - [2281] = 2281, - [2282] = 2282, + [2281] = 976, + [2282] = 2240, [2283] = 2283, - [2284] = 2280, - [2285] = 2285, - [2286] = 2286, - [2287] = 2286, - [2288] = 2273, - [2289] = 2255, - [2290] = 2266, - [2291] = 2278, - [2292] = 2282, + [2284] = 2234, + [2285] = 2241, + [2286] = 2232, + [2287] = 2280, + [2288] = 2233, + [2289] = 2283, + [2290] = 2248, + [2291] = 1889, + [2292] = 2250, [2293] = 2293, - [2294] = 2285, - [2295] = 1001, + [2294] = 2251, + [2295] = 2252, [2296] = 2296, - [2297] = 2297, - [2298] = 1979, - [2299] = 2299, + [2297] = 2236, + [2298] = 2298, + [2299] = 1891, [2300] = 2300, [2301] = 2301, - [2302] = 2162, - [2303] = 2275, - [2304] = 2304, - [2305] = 2300, - [2306] = 2254, - [2307] = 2257, - [2308] = 1961, - [2309] = 2264, - [2310] = 2261, - [2311] = 2311, - [2312] = 2264, - [2313] = 2265, - [2314] = 2267, - [2315] = 2265, - [2316] = 2316, + [2302] = 2302, + [2303] = 2258, + [2304] = 2260, + [2305] = 2150, + [2306] = 2261, + [2307] = 2307, + [2308] = 2262, + [2309] = 2263, + [2310] = 2257, + [2311] = 2230, + [2312] = 2175, + [2313] = 2106, + [2314] = 2264, + [2315] = 1970, + [2316] = 2273, [2317] = 2317, - [2318] = 2273, - [2319] = 2275, + [2318] = 2238, + [2319] = 2270, [2320] = 2320, - [2321] = 2276, - [2322] = 2277, - [2323] = 2002, - [2324] = 2280, - [2325] = 2325, + [2321] = 2321, + [2322] = 2273, + [2323] = 2323, + [2324] = 2234, + [2325] = 2239, [2326] = 2326, - [2327] = 654, - [2328] = 2286, + [2327] = 2237, + [2328] = 2328, [2329] = 2329, - [2330] = 2317, - [2331] = 2255, - [2332] = 2311, - [2333] = 2266, - [2334] = 2278, - [2335] = 2282, - [2336] = 1973, - [2337] = 1995, - [2338] = 2338, - [2339] = 653, - [2340] = 2285, - [2341] = 2255, - [2342] = 1897, - [2343] = 2343, + [2330] = 2240, + [2331] = 2258, + [2332] = 2241, + [2333] = 2232, + [2334] = 2334, + [2335] = 2233, + [2336] = 2248, + [2337] = 2248, + [2338] = 2250, + [2339] = 2174, + [2340] = 2251, + [2341] = 2252, + [2342] = 2250, + [2343] = 2328, [2344] = 2344, - [2345] = 2345, - [2346] = 2300, - [2347] = 2254, - [2348] = 2304, - [2349] = 2254, - [2350] = 2280, - [2351] = 2266, - [2352] = 2257, - [2353] = 2267, - [2354] = 2261, - [2355] = 1979, - [2356] = 2356, - [2357] = 2264, - [2358] = 2265, - [2359] = 2267, - [2360] = 2278, - [2361] = 2282, - [2362] = 2273, - [2363] = 2363, - [2364] = 2275, - [2365] = 2276, - [2366] = 2277, - [2367] = 1015, - [2368] = 2368, - [2369] = 2227, - [2370] = 2161, - [2371] = 2162, - [2372] = 2218, - [2373] = 2164, - [2374] = 2300, - [2375] = 1979, - [2376] = 2304, - [2377] = 2368, - [2378] = 2378, - [2379] = 2254, - [2380] = 1590, - [2381] = 2257, - [2382] = 2338, - [2383] = 2230, - [2384] = 2261, - [2385] = 2264, - [2386] = 2265, - [2387] = 2387, - [2388] = 2267, - [2389] = 2002, - [2390] = 2276, - [2391] = 2273, - [2392] = 2001, - [2393] = 2275, - [2394] = 2276, - [2395] = 2277, - [2396] = 2273, - [2397] = 2397, - [2398] = 1921, - [2399] = 1942, - [2400] = 2256, - [2401] = 2275, - [2402] = 659, - [2403] = 2300, - [2404] = 2304, - [2405] = 2002, - [2406] = 2254, - [2407] = 2277, - [2408] = 2257, - [2409] = 2261, - [2410] = 2285, - [2411] = 2411, - [2412] = 2264, - [2413] = 2265, - [2414] = 2267, - [2415] = 2415, - [2416] = 2273, - [2417] = 2299, - [2418] = 2275, - [2419] = 2343, - [2420] = 2276, - [2421] = 2277, - [2422] = 2422, - [2423] = 2423, - [2424] = 2378, - [2425] = 2425, - [2426] = 2225, - [2427] = 656, - [2428] = 2304, - [2429] = 2300, - [2430] = 2304, - [2431] = 2257, + [2345] = 2334, + [2346] = 2346, + [2347] = 2320, + [2348] = 2348, + [2349] = 2349, + [2350] = 2321, + [2351] = 2251, + [2352] = 2273, + [2353] = 2264, + [2354] = 2252, + [2355] = 2150, + [2356] = 2234, + [2357] = 2357, + [2358] = 2358, + [2359] = 2240, + [2360] = 2258, + [2361] = 2241, + [2362] = 2362, + [2363] = 2233, + [2364] = 2248, + [2365] = 2260, + [2366] = 2250, + [2367] = 2367, + [2368] = 2232, + [2369] = 2252, + [2370] = 2261, + [2371] = 2161, + [2372] = 2280, + [2373] = 2262, + [2374] = 2263, + [2375] = 2162, + [2376] = 2248, + [2377] = 2175, + [2378] = 2273, + [2379] = 2234, + [2380] = 2259, + [2381] = 2240, + [2382] = 2250, + [2383] = 2241, + [2384] = 2232, + [2385] = 2251, + [2386] = 2233, + [2387] = 2252, + [2388] = 2248, + [2389] = 2367, + [2390] = 2250, + [2391] = 2264, + [2392] = 2251, + [2393] = 2252, + [2394] = 2230, + [2395] = 2175, + [2396] = 2302, + [2397] = 2346, + [2398] = 1584, + [2399] = 2362, + [2400] = 2400, + [2401] = 2273, + [2402] = 2402, + [2403] = 2234, + [2404] = 2241, + [2405] = 2232, + [2406] = 2270, + [2407] = 2240, + [2408] = 2241, + [2409] = 2232, + [2410] = 2410, + [2411] = 2233, + [2412] = 2248, + [2413] = 2250, + [2414] = 2106, + [2415] = 2251, + [2416] = 2252, + [2417] = 2233, + [2418] = 2237, + [2419] = 2275, + [2420] = 2317, + [2421] = 2233, + [2422] = 2251, + [2423] = 2252, + [2424] = 2424, + [2425] = 2296, + [2426] = 2233, + [2427] = 2251, + [2428] = 2252, + [2429] = 1576, + [2430] = 2329, + [2431] = 2431, [2432] = 2432, - [2433] = 2254, - [2434] = 2257, - [2435] = 2261, + [2433] = 2433, + [2434] = 2346, + [2435] = 2435, [2436] = 2436, - [2437] = 2387, - [2438] = 2264, - [2439] = 2265, - [2440] = 2267, - [2441] = 2441, - [2442] = 2442, - [2443] = 2273, - [2444] = 2275, - [2445] = 2276, - [2446] = 2277, - [2447] = 2276, - [2448] = 2448, - [2449] = 2449, - [2450] = 2267, - [2451] = 2276, - [2452] = 2277, - [2453] = 2216, - [2454] = 2217, - [2455] = 2161, - [2456] = 2267, - [2457] = 2300, - [2458] = 2276, - [2459] = 2277, - [2460] = 2338, - [2461] = 2162, - [2462] = 2277, - [2463] = 2300, - [2464] = 1617, - [2465] = 2465, - [2466] = 2466, - [2467] = 2467, - [2468] = 2468, - [2469] = 2469, - [2470] = 2304, - [2471] = 2293, - [2472] = 2472, - [2473] = 2473, - [2474] = 2356, - [2475] = 2368, - [2476] = 2320, - [2477] = 2397, - [2478] = 2286, - [2479] = 2411, - [2480] = 2254, - [2481] = 2164, - [2482] = 2425, - [2483] = 2469, - [2484] = 2293, - [2485] = 2257, - [2486] = 1595, - [2487] = 1960, - [2488] = 2258, - [2489] = 2259, - [2490] = 2449, - [2491] = 2268, - [2492] = 2261, - [2493] = 2225, - [2494] = 2363, - [2495] = 2297, - [2496] = 2225, - [2497] = 1590, - [2498] = 2469, - [2499] = 2304, - [2500] = 2264, - [2501] = 2265, - [2502] = 2415, - [2503] = 2425, - [2504] = 650, - [2505] = 2267, - [2506] = 1590, - [2507] = 2468, - [2508] = 2423, - [2509] = 2329, - [2510] = 2262, - [2511] = 2279, - [2512] = 2467, - [2513] = 2513, - [2514] = 2422, + [2437] = 2437, + [2438] = 2249, + [2439] = 2437, + [2440] = 2440, + [2441] = 2400, + [2442] = 2260, + [2443] = 2271, + [2444] = 1889, + [2445] = 2235, + [2446] = 2261, + [2447] = 2265, + [2448] = 2301, + [2449] = 2402, + [2450] = 1889, + [2451] = 2270, + [2452] = 2262, + [2453] = 2437, + [2454] = 2400, + [2455] = 1948, + [2456] = 2273, + [2457] = 2263, + [2458] = 2221, + [2459] = 2270, + [2460] = 2222, + [2461] = 2234, + [2462] = 1970, + [2463] = 1576, + [2464] = 2237, + [2465] = 1574, + [2466] = 2238, + [2467] = 2239, + [2468] = 1970, + [2469] = 2431, + [2470] = 2432, + [2471] = 2334, + [2472] = 2236, + [2473] = 2240, + [2474] = 2474, + [2475] = 1576, + [2476] = 2273, + [2477] = 2410, + [2478] = 2436, + [2479] = 2241, + [2480] = 2251, + [2481] = 2481, + [2482] = 2482, + [2483] = 2483, + [2484] = 2484, + [2485] = 2485, + [2486] = 2486, + [2487] = 1597, + [2488] = 618, + [2489] = 2489, + [2490] = 2490, + [2491] = 2491, + [2492] = 2492, + [2493] = 2493, + [2494] = 2494, + [2495] = 2495, + [2496] = 2496, + [2497] = 2497, + [2498] = 2498, + [2499] = 2499, + [2500] = 2484, + [2501] = 2501, + [2502] = 2486, + [2503] = 2503, + [2504] = 2504, + [2505] = 2505, + [2506] = 2483, + [2507] = 2507, + [2508] = 2486, + [2509] = 2509, + [2510] = 2489, + [2511] = 2484, + [2512] = 2512, + [2513] = 2486, + [2514] = 2514, [2515] = 2515, [2516] = 2516, - [2517] = 2517, - [2518] = 2515, - [2519] = 2049, + [2517] = 2489, + [2518] = 2323, + [2519] = 660, [2520] = 2520, - [2521] = 2521, - [2522] = 2522, - [2523] = 2436, + [2521] = 2496, + [2522] = 2496, + [2523] = 2021, [2524] = 2524, - [2525] = 2049, + [2525] = 2482, [2526] = 2526, - [2527] = 2527, + [2527] = 2021, [2528] = 2528, - [2529] = 2529, - [2530] = 656, - [2531] = 2531, + [2529] = 2507, + [2530] = 2530, + [2531] = 1602, [2532] = 2532, [2533] = 2533, - [2534] = 2531, + [2534] = 2534, [2535] = 2535, - [2536] = 2533, - [2537] = 2535, + [2536] = 2536, + [2537] = 643, [2538] = 2538, [2539] = 2539, [2540] = 2540, - [2541] = 2516, - [2542] = 2542, - [2543] = 2515, - [2544] = 2544, - [2545] = 2545, - [2546] = 2524, + [2541] = 2541, + [2542] = 1593, + [2543] = 2543, + [2544] = 2503, + [2545] = 1584, + [2546] = 1597, [2547] = 2547, - [2548] = 2538, - [2549] = 2049, - [2550] = 2550, - [2551] = 2551, - [2552] = 2552, - [2553] = 2553, - [2554] = 2554, - [2555] = 1617, - [2556] = 2524, + [2548] = 2548, + [2549] = 2021, + [2550] = 2494, + [2551] = 2543, + [2552] = 2548, + [2553] = 2540, + [2554] = 2514, + [2555] = 2555, + [2556] = 2496, [2557] = 2557, - [2558] = 2558, + [2558] = 1602, [2559] = 2559, - [2560] = 2547, + [2560] = 656, [2561] = 2561, - [2562] = 2562, - [2563] = 2531, - [2564] = 2564, - [2565] = 2551, + [2562] = 621, + [2563] = 2563, + [2564] = 2433, + [2565] = 1593, [2566] = 2566, - [2567] = 2567, - [2568] = 2568, - [2569] = 650, - [2570] = 2570, - [2571] = 2535, + [2567] = 2489, + [2568] = 2440, + [2569] = 2569, + [2570] = 2482, + [2571] = 2569, [2572] = 2572, [2573] = 2573, - [2574] = 2574, - [2575] = 2533, - [2576] = 2576, - [2577] = 2577, - [2578] = 2578, - [2579] = 2538, - [2580] = 2542, - [2581] = 2531, + [2574] = 2507, + [2575] = 2575, + [2576] = 2515, + [2577] = 2569, + [2578] = 2497, + [2579] = 2579, + [2580] = 2484, + [2581] = 2572, [2582] = 2582, [2583] = 2583, - [2584] = 2542, - [2585] = 2527, + [2584] = 2584, + [2585] = 2585, [2586] = 2586, [2587] = 2587, - [2588] = 2587, - [2589] = 2572, - [2590] = 2524, + [2588] = 2588, + [2589] = 2589, + [2590] = 2590, [2591] = 2591, - [2592] = 2515, - [2593] = 659, - [2594] = 2533, - [2595] = 2595, - [2596] = 1628, - [2597] = 1628, + [2592] = 2592, + [2593] = 2593, + [2594] = 2594, + [2595] = 2584, + [2596] = 2596, + [2597] = 2597, [2598] = 2598, - [2599] = 1634, - [2600] = 2586, - [2601] = 1634, - [2602] = 2602, - [2603] = 654, - [2604] = 2604, - [2605] = 653, - [2606] = 2432, - [2607] = 2553, + [2599] = 2584, + [2600] = 2590, + [2601] = 2591, + [2602] = 2589, + [2603] = 2598, + [2604] = 2582, + [2605] = 2605, + [2606] = 2606, + [2607] = 2584, [2608] = 2608, - [2609] = 2602, - [2610] = 2545, - [2611] = 1614, - [2612] = 1614, + [2609] = 2593, + [2610] = 2610, + [2611] = 2611, + [2612] = 2612, [2613] = 2613, - [2614] = 2614, + [2614] = 2592, [2615] = 2615, - [2616] = 2616, + [2616] = 2585, [2617] = 2617, - [2618] = 2618, + [2618] = 2598, [2619] = 2619, - [2620] = 2620, - [2621] = 2621, - [2622] = 2622, + [2620] = 2617, + [2621] = 2593, + [2622] = 2590, [2623] = 2623, - [2624] = 2624, + [2624] = 2608, [2625] = 2625, - [2626] = 2620, + [2626] = 2626, [2627] = 2627, - [2628] = 2628, - [2629] = 2629, - [2630] = 2630, + [2628] = 2612, + [2629] = 2596, + [2630] = 2598, [2631] = 2631, - [2632] = 2632, - [2633] = 2616, + [2632] = 2596, + [2633] = 2633, [2634] = 2634, - [2635] = 2628, + [2635] = 2635, [2636] = 2636, - [2637] = 2623, - [2638] = 2638, - [2639] = 2639, - [2640] = 2640, - [2641] = 2632, - [2642] = 2636, - [2643] = 2615, - [2644] = 2628, - [2645] = 2630, - [2646] = 2617, - [2647] = 2618, - [2648] = 2619, - [2649] = 2630, - [2650] = 2650, + [2637] = 2637, + [2638] = 2585, + [2639] = 2597, + [2640] = 2598, + [2641] = 2589, + [2642] = 2588, + [2643] = 2643, + [2644] = 2596, + [2645] = 2585, + [2646] = 2598, + [2647] = 2589, + [2648] = 2648, + [2649] = 2610, + [2650] = 2585, [2651] = 2651, - [2652] = 2652, - [2653] = 2653, - [2654] = 2622, - [2655] = 2623, - [2656] = 2622, - [2657] = 2638, - [2658] = 2615, - [2659] = 2615, - [2660] = 2620, - [2661] = 2620, + [2652] = 2597, + [2653] = 2590, + [2654] = 2654, + [2655] = 2615, + [2656] = 2637, + [2657] = 2592, + [2658] = 2658, + [2659] = 2589, + [2660] = 2593, + [2661] = 2591, [2662] = 2662, - [2663] = 2663, - [2664] = 2628, - [2665] = 2652, - [2666] = 2629, - [2667] = 2618, - [2668] = 2628, + [2663] = 2623, + [2664] = 2648, + [2665] = 2596, + [2666] = 2592, + [2667] = 2667, + [2668] = 2597, [2669] = 2669, - [2670] = 2620, - [2671] = 2619, - [2672] = 2630, - [2673] = 2650, - [2674] = 2622, - [2675] = 2623, - [2676] = 2632, - [2677] = 2616, - [2678] = 2630, - [2679] = 2679, - [2680] = 2680, - [2681] = 2681, - [2682] = 2620, - [2683] = 2636, - [2684] = 2630, - [2685] = 2618, - [2686] = 2624, - [2687] = 2628, - [2688] = 2688, - [2689] = 2629, - [2690] = 2622, - [2691] = 2615, - [2692] = 2650, - [2693] = 2651, - [2694] = 2650, - [2695] = 2629, - [2696] = 2620, - [2697] = 2697, - [2698] = 2698, - [2699] = 2632, - [2700] = 2700, - [2701] = 2701, - [2702] = 2702, - [2703] = 2616, - [2704] = 2615, - [2705] = 2679, - [2706] = 2706, + [2670] = 2598, + [2671] = 2662, + [2672] = 2593, + [2673] = 2611, + [2674] = 2674, + [2675] = 2594, + [2676] = 2676, + [2677] = 2606, + [2678] = 2648, + [2679] = 2587, + [2680] = 2631, + [2681] = 2590, + [2682] = 2591, + [2683] = 2596, + [2684] = 2597, + [2685] = 2591, + [2686] = 2591, + [2687] = 2593, + [2688] = 2598, + [2689] = 2592, + [2690] = 2667, + [2691] = 2617, + [2692] = 2582, + [2693] = 2590, + [2694] = 2694, + [2695] = 2669, + [2696] = 2605, + [2697] = 2591, + [2698] = 2585, + [2699] = 2593, + [2700] = 2592, + [2701] = 2584, + [2702] = 2676, + [2703] = 2669, + [2704] = 2582, + [2705] = 2587, + [2706] = 2605, [2707] = 2707, - [2708] = 2636, - [2709] = 2709, - [2710] = 2710, + [2708] = 2582, + [2709] = 2615, + [2710] = 2605, [2711] = 2711, - [2712] = 2623, - [2713] = 2652, + [2712] = 2589, + [2713] = 2582, [2714] = 2714, - [2715] = 2636, - [2716] = 2716, - [2717] = 2716, - [2718] = 2652, - [2719] = 2652, + [2715] = 2584, + [2716] = 2585, + [2717] = 2658, + [2718] = 2648, + [2719] = 2592, [2720] = 2720, - [2721] = 2721, - [2722] = 2629, - [2723] = 2618, - [2724] = 2618, - [2725] = 2619, - [2726] = 2638, - [2727] = 2710, - [2728] = 2728, - [2729] = 2622, - [2730] = 2730, - [2731] = 2619, - [2732] = 2732, - [2733] = 2733, - [2734] = 2700, - [2735] = 2614, - [2736] = 2709, - [2737] = 2623, - [2738] = 2721, - [2739] = 2632, - [2740] = 2622, - [2741] = 2716, - [2742] = 2620, - [2743] = 2623, - [2744] = 2720, - [2745] = 2614, - [2746] = 2746, + [2721] = 2593, + [2722] = 2722, + [2723] = 2605, + [2724] = 2605, + [2725] = 2596, + [2726] = 2615, + [2727] = 2608, + [2728] = 2597, + [2729] = 2585, + [2730] = 2654, + [2731] = 2731, + [2732] = 2598, + [2733] = 2584, + [2734] = 2582, + [2735] = 2617, + [2736] = 2720, + [2737] = 2589, + [2738] = 2598, + [2739] = 2590, + [2740] = 2596, + [2741] = 2588, + [2742] = 2635, + [2743] = 2589, + [2744] = 2605, + [2745] = 2745, + [2746] = 2658, [2747] = 2747, - [2748] = 2616, - [2749] = 2628, - [2750] = 2638, - [2751] = 2620, - [2752] = 2622, - [2753] = 2616, - [2754] = 2620, - [2755] = 2623, - [2756] = 2756, - [2757] = 2680, - [2758] = 2663, - [2759] = 2629, - [2760] = 2702, - [2761] = 2618, - [2762] = 2629, - [2763] = 2632, - [2764] = 2616, - [2765] = 2614, - [2766] = 2628, - [2767] = 2680, - [2768] = 2768, - [2769] = 2769, - [2770] = 2636, - [2771] = 2746, - [2772] = 2697, - [2773] = 2650, - [2774] = 2669, - [2775] = 2700, - [2776] = 2629, - [2777] = 2711, - [2778] = 2615, - [2779] = 2619, - [2780] = 2636, - [2781] = 2630, - [2782] = 2636, - [2783] = 2709, - [2784] = 2707, - [2785] = 2619, - [2786] = 2630, - [2787] = 2721, - [2788] = 2632, - [2789] = 2632, - [2790] = 2615, - [2791] = 2616, - [2792] = 2769, - [2793] = 2680, - [2794] = 2698, - [2795] = 2795, - [2796] = 2716, - [2797] = 2688, - [2798] = 2798, - [2799] = 2618, - [2800] = 2714, - [2801] = 2681, - [2802] = 2701, - [2803] = 2803, - [2804] = 2795, - [2805] = 2701, - [2806] = 2798, - [2807] = 2619, - [2808] = 2614, + [2748] = 2651, + [2749] = 2749, + [2750] = 2608, + [2751] = 2597, + [2752] = 2590, + [2753] = 2591, + [2754] = 2617, + [2755] = 2755, + [2756] = 2615, + [2757] = 2582, + [2758] = 2605, + [2759] = 2759, + [2760] = 2707, + [2761] = 2658, + [2762] = 2762, + [2763] = 2584, + [2764] = 2597, + [2765] = 2636, + [2766] = 2731, + [2767] = 2767, + [2768] = 2613, + [2769] = 2634, + [2770] = 2749, + [2771] = 2588, + [2772] = 2674, + [2773] = 2749, + [2774] = 2648, + [2775] = 2592, + [2776] = 2707, +}; + +static const TSSymbol ts_supertype_symbols[SUPERTYPE_COUNT] = { + sym_expression, + sym_parameter, + sym_pattern, + sym_primary_expression, +}; + +static const TSMapSlice ts_supertype_map_slices[] = { + [sym_expression] = {.index = 0, .length = 8}, + [sym_parameter] = {.index = 8, .length = 9}, + [sym_pattern] = {.index = 17, .length = 6}, + [sym_primary_expression] = {.index = 23, .length = 25}, }; -static TSCharacterRange sym_identifier_character_set_1[] = { +static const TSSymbol ts_supertype_map_entries[] = { + [0] = + sym_as_pattern, + sym_boolean_operator, + sym_comparison_operator, + sym_conditional_expression, + sym_lambda, + sym_named_expression, + sym_not_operator, + sym_primary_expression, + [8] = + sym_default_parameter, + sym_dictionary_splat_pattern, + sym_identifier, + sym_keyword_separator, + sym_list_splat_pattern, + sym_positional_separator, + sym_tuple_pattern, + sym_typed_default_parameter, + sym_typed_parameter, + [17] = + sym_attribute, + sym_identifier, + sym_list_pattern, + sym_list_splat_pattern, + sym_subscript, + sym_tuple_pattern, + [23] = + sym_attribute, + sym_await, + sym_binary_operator, + sym_call, + sym_concatenated_string, + sym_dictionary, + sym_dictionary_comprehension, + sym_ellipsis, + sym_false, + sym_float, + sym_generator_expression, + sym_identifier, + sym_integer, + sym_list, + sym_list_comprehension, + sym_list_splat, + sym_none, + sym_parenthesized_expression, + sym_set, + sym_set_comprehension, + sym_string, + sym_subscript, + sym_true, + sym_tuple, + sym_unary_operator, +}; + +static const TSCharacterRange sym_identifier_character_set_1[] = { {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xba, 0xba}, {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x370, 0x374}, {0x376, 0x377}, {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x386}, {0x388, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, {0x48a, 0x52f}, @@ -5620,7 +5654,7 @@ static TSCharacterRange sym_identifier_character_set_1[] = { {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1780, 0x17b3}, {0x17d7, 0x17d7}, {0x17dc, 0x17dc}, {0x1820, 0x1878}, {0x1880, 0x18a8}, {0x18aa, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1950, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x1a00, 0x1a16}, {0x1a20, 0x1a54}, {0x1aa7, 0x1aa7}, {0x1b05, 0x1b33}, {0x1b45, 0x1b4c}, {0x1b83, 0x1ba0}, {0x1bae, 0x1baf}, {0x1bba, 0x1be5}, {0x1c00, 0x1c23}, {0x1c4d, 0x1c4f}, - {0x1c5a, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, {0x1cfa, 0x1cfa}, + {0x1c5a, 0x1c7d}, {0x1c80, 0x1c8a}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, {0x1cfa, 0x1cfa}, {0x1d00, 0x1dbf}, {0x1e00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x2071, 0x2071}, {0x207f, 0x207f}, {0x2090, 0x209c}, {0x2102, 0x2102}, @@ -5630,7 +5664,7 @@ static TSCharacterRange sym_identifier_character_set_1[] = { {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x3005, 0x3007}, {0x3021, 0x3029}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, {0x309d, 0x309f}, {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa61f}, {0xa62a, 0xa62b}, {0xa640, 0xa66e}, - {0xa67f, 0xa69d}, {0xa6a0, 0xa6ef}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, + {0xa67f, 0xa69d}, {0xa6a0, 0xa6ef}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7cd}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, {0xa7f2, 0xa801}, {0xa803, 0xa805}, {0xa807, 0xa80a}, {0xa80c, 0xa822}, {0xa840, 0xa873}, {0xa882, 0xa8b3}, {0xa8f2, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa8fe}, {0xa90a, 0xa925}, {0xa930, 0xa946}, {0xa960, 0xa97c}, {0xa984, 0xa9b2}, {0xa9cf, 0xa9cf}, {0xa9e0, 0xa9e4}, {0xa9e6, 0xa9ef}, {0xa9fa, 0xa9fe}, {0xaa00, 0xaa28}, {0xaa40, 0xaa42}, {0xaa44, 0xaa4b}, {0xaa60, 0xaa76}, {0xaa7a, 0xaa7a}, {0xaa7e, 0xaaaf}, {0xaab1, 0xaab1}, @@ -5644,48 +5678,50 @@ static TSCharacterRange sym_identifier_character_set_1[] = { {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x10375}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, - {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, - {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, - {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a00}, {0x10a10, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, - {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae4}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, - {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d23}, {0x10e80, 0x10ea9}, {0x10eb0, 0x10eb1}, {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, - {0x10f30, 0x10f45}, {0x10f70, 0x10f81}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11003, 0x11037}, {0x11071, 0x11072}, {0x11075, 0x11075}, {0x11083, 0x110af}, - {0x110d0, 0x110e8}, {0x11103, 0x11126}, {0x11144, 0x11144}, {0x11147, 0x11147}, {0x11150, 0x11172}, {0x11176, 0x11176}, {0x11183, 0x111b2}, {0x111c1, 0x111c4}, - {0x111da, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x1122b}, {0x1123f, 0x11240}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, - {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112de}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, - {0x11335, 0x11339}, {0x1133d, 0x1133d}, {0x11350, 0x11350}, {0x1135d, 0x11361}, {0x11400, 0x11434}, {0x11447, 0x1144a}, {0x1145f, 0x11461}, {0x11480, 0x114af}, - {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, {0x11644, 0x11644}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, - {0x11700, 0x1171a}, {0x11740, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118df}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, - {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, - {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, - {0x11c40, 0x11c40}, {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, - {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, - {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13441, 0x13446}, {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, - {0x16a70, 0x16abe}, {0x16ad0, 0x16aed}, {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, - {0x16f50, 0x16f50}, {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, - {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, - {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, - {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, - {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, - {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, - {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, {0x1e100, 0x1e12c}, {0x1e137, 0x1e13d}, {0x1e14e, 0x1e14e}, - {0x1e290, 0x1e2ad}, {0x1e2c0, 0x1e2eb}, {0x1e4d0, 0x1e4eb}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, - {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, - {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, - {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, - {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, - {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, - {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, + {0x105c0, 0x105f3}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, + {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, + {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a00}, {0x10a10, 0x10a13}, {0x10a15, 0x10a17}, + {0x10a19, 0x10a35}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae4}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, + {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d23}, {0x10d4a, 0x10d65}, {0x10d6f, 0x10d85}, {0x10e80, 0x10ea9}, + {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f45}, {0x10f70, 0x10f81}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, + {0x11003, 0x11037}, {0x11071, 0x11072}, {0x11075, 0x11075}, {0x11083, 0x110af}, {0x110d0, 0x110e8}, {0x11103, 0x11126}, {0x11144, 0x11144}, {0x11147, 0x11147}, + {0x11150, 0x11172}, {0x11176, 0x11176}, {0x11183, 0x111b2}, {0x111c1, 0x111c4}, {0x111da, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x1122b}, + {0x1123f, 0x11240}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112de}, {0x11305, 0x1130c}, + {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133d, 0x1133d}, {0x11350, 0x11350}, {0x1135d, 0x11361}, + {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, {0x113b7, 0x113b7}, {0x113d1, 0x113d1}, {0x113d3, 0x113d3}, {0x11400, 0x11434}, + {0x11447, 0x1144a}, {0x1145f, 0x11461}, {0x11480, 0x114af}, {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, + {0x11644, 0x11644}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, {0x11700, 0x1171a}, {0x11740, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118df}, {0x118ff, 0x11906}, + {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, + {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, + {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, {0x11c40, 0x11c40}, {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, + {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, + {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, + {0x13441, 0x13446}, {0x13460, 0x143fa}, {0x14400, 0x14646}, {0x16100, 0x1611d}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a70, 0x16abe}, {0x16ad0, 0x16aed}, + {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f50, 0x16f50}, + {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18cff, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, + {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, + {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, + {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, + {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, + {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, + {0x1d7c4, 0x1d7cb}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, {0x1e100, 0x1e12c}, {0x1e137, 0x1e13d}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ad}, + {0x1e2c0, 0x1e2eb}, {0x1e4d0, 0x1e4eb}, {0x1e5d0, 0x1e5ed}, {0x1e5f0, 0x1e5f0}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, + {0x1e800, 0x1e8c4}, {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, + {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, + {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, + {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, + {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, + {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, }; -static TSCharacterRange sym_identifier_character_set_2[] = { +static const TSCharacterRange sym_identifier_character_set_2[] = { {'0', '9'}, {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xb7, 0xb7}, {0xba, 0xba}, {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x300, 0x374}, {0x376, 0x377}, {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, {0x483, 0x487}, {0x48a, 0x52f}, {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x591, 0x5bd}, {0x5bf, 0x5bf}, {0x5c1, 0x5c2}, {0x5c4, 0x5c5}, {0x5c7, 0x5c7}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x610, 0x61a}, {0x620, 0x669}, {0x66e, 0x6d3}, {0x6d5, 0x6dc}, {0x6df, 0x6e8}, {0x6ea, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x74a}, {0x74d, 0x7b1}, {0x7c0, 0x7f5}, {0x7fa, 0x7fa}, {0x7fd, 0x7fd}, - {0x800, 0x82d}, {0x840, 0x85b}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x898, 0x8e1}, {0x8e3, 0x963}, {0x966, 0x96f}, + {0x800, 0x82d}, {0x840, 0x85b}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x897, 0x8e1}, {0x8e3, 0x963}, {0x966, 0x96f}, {0x971, 0x983}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, {0x9bc, 0x9c4}, {0x9c7, 0x9c8}, {0x9cb, 0x9ce}, {0x9d7, 0x9d7}, {0x9dc, 0x9dd}, {0x9df, 0x9e3}, {0x9e6, 0x9f1}, {0x9fc, 0x9fc}, {0x9fe, 0x9fe}, {0xa01, 0xa03}, {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, {0xa35, 0xa36}, {0xa38, 0xa39}, @@ -5713,7 +5749,7 @@ static TSCharacterRange sym_identifier_character_set_2[] = { {0x180b, 0x180d}, {0x180f, 0x1819}, {0x1820, 0x1878}, {0x1880, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1920, 0x192b}, {0x1930, 0x193b}, {0x1946, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x19d0, 0x19da}, {0x1a00, 0x1a1b}, {0x1a20, 0x1a5e}, {0x1a60, 0x1a7c}, {0x1a7f, 0x1a89}, {0x1a90, 0x1a99}, {0x1aa7, 0x1aa7}, {0x1ab0, 0x1abd}, {0x1abf, 0x1ace}, {0x1b00, 0x1b4c}, {0x1b50, 0x1b59}, {0x1b6b, 0x1b73}, - {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1cd0, 0x1cd2}, + {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c8a}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1cd0, 0x1cd2}, {0x1cd4, 0x1cfa}, {0x1d00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x200c, 0x200d}, {0x203f, 0x2040}, {0x2054, 0x2054}, {0x2071, 0x2071}, @@ -5724,7 +5760,7 @@ static TSCharacterRange sym_identifier_character_set_2[] = { {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2de0, 0x2dff}, {0x3005, 0x3007}, {0x3021, 0x302f}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, {0x3099, 0x309a}, {0x309d, 0x309f}, {0x30a1, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa62b}, {0xa640, 0xa66f}, {0xa674, 0xa67d}, {0xa67f, 0xa6f1}, {0xa717, 0xa71f}, - {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, {0xa7f2, 0xa827}, {0xa82c, 0xa82c}, {0xa840, 0xa873}, + {0xa722, 0xa788}, {0xa78b, 0xa7cd}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, {0xa7f2, 0xa827}, {0xa82c, 0xa82c}, {0xa840, 0xa873}, {0xa880, 0xa8c5}, {0xa8d0, 0xa8d9}, {0xa8e0, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa92d}, {0xa930, 0xa953}, {0xa960, 0xa97c}, {0xa980, 0xa9c0}, {0xa9cf, 0xa9d9}, {0xa9e0, 0xa9fe}, {0xaa00, 0xaa36}, {0xaa40, 0xaa4d}, {0xaa50, 0xaa59}, {0xaa60, 0xaa76}, {0xaa7a, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaef}, {0xaaf2, 0xaaf6}, {0xab01, 0xab06}, {0xab09, 0xab0e}, {0xab11, 0xab16}, {0xab20, 0xab26}, {0xab28, 0xab2e}, {0xab30, 0xab5a}, @@ -5737,39 +5773,42 @@ static TSCharacterRange sym_identifier_character_set_2[] = { {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x101fd, 0x101fd}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x102e0, 0x102e0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x1037a}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104a0, 0x104a9}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, - {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, - {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, - {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, - {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a38, 0x10a3a}, {0x10a3f, 0x10a3f}, {0x10a60, 0x10a7c}, - {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, - {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, {0x10efd, 0x10f1c}, - {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, {0x11066, 0x11075}, {0x1107f, 0x110ba}, - {0x110c2, 0x110c2}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, {0x11100, 0x11134}, {0x11136, 0x1113f}, {0x11144, 0x11147}, {0x11150, 0x11173}, {0x11176, 0x11176}, - {0x11180, 0x111c4}, {0x111c9, 0x111cc}, {0x111ce, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x11237}, {0x1123e, 0x11241}, {0x11280, 0x11286}, - {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, {0x11300, 0x11303}, {0x11305, 0x1130c}, - {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x11344}, {0x11347, 0x11348}, {0x1134b, 0x1134d}, - {0x11350, 0x11350}, {0x11357, 0x11357}, {0x1135d, 0x11363}, {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11400, 0x1144a}, {0x11450, 0x11459}, {0x1145e, 0x11461}, - {0x11480, 0x114c5}, {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, {0x115b8, 0x115c0}, {0x115d8, 0x115dd}, {0x11600, 0x11640}, {0x11644, 0x11644}, - {0x11650, 0x11659}, {0x11680, 0x116b8}, {0x116c0, 0x116c9}, {0x11700, 0x1171a}, {0x1171d, 0x1172b}, {0x11730, 0x11739}, {0x11740, 0x11746}, {0x11800, 0x1183a}, + {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x105c0, 0x105f3}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, + {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, + {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, + {0x109be, 0x109bf}, {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a38, 0x10a3a}, {0x10a3f, 0x10a3f}, + {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, + {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {0x10d40, 0x10d65}, {0x10d69, 0x10d6d}, {0x10d6f, 0x10d85}, + {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10efc, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, + {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, {0x11066, 0x11075}, {0x1107f, 0x110ba}, {0x110c2, 0x110c2}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, + {0x11100, 0x11134}, {0x11136, 0x1113f}, {0x11144, 0x11147}, {0x11150, 0x11173}, {0x11176, 0x11176}, {0x11180, 0x111c4}, {0x111c9, 0x111cc}, {0x111ce, 0x111da}, + {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x11237}, {0x1123e, 0x11241}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, + {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, {0x11300, 0x11303}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, + {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x11344}, {0x11347, 0x11348}, {0x1134b, 0x1134d}, {0x11350, 0x11350}, {0x11357, 0x11357}, {0x1135d, 0x11363}, + {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, {0x113b7, 0x113c0}, {0x113c2, 0x113c2}, + {0x113c5, 0x113c5}, {0x113c7, 0x113ca}, {0x113cc, 0x113d3}, {0x113e1, 0x113e2}, {0x11400, 0x1144a}, {0x11450, 0x11459}, {0x1145e, 0x11461}, {0x11480, 0x114c5}, + {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, {0x115b8, 0x115c0}, {0x115d8, 0x115dd}, {0x11600, 0x11640}, {0x11644, 0x11644}, {0x11650, 0x11659}, + {0x11680, 0x116b8}, {0x116c0, 0x116c9}, {0x116d0, 0x116e3}, {0x11700, 0x1171a}, {0x1171d, 0x1172b}, {0x11730, 0x11739}, {0x11740, 0x11746}, {0x11800, 0x1183a}, {0x118a0, 0x118e9}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x11935}, {0x11937, 0x11938}, {0x1193b, 0x11943}, {0x11950, 0x11959}, {0x119a0, 0x119a7}, {0x119aa, 0x119d7}, {0x119da, 0x119e1}, {0x119e3, 0x119e4}, {0x11a00, 0x11a3e}, {0x11a47, 0x11a47}, {0x11a50, 0x11a99}, - {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, - {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, - {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, {0x11ee0, 0x11ef6}, {0x11f00, 0x11f10}, - {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 0x11f59}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, - {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, - {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, - {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, - {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, - {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, {0x1cf00, 0x1cf2d}, - {0x1cf30, 0x1cf46}, {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, {0x1d242, 0x1d244}, {0x1d400, 0x1d454}, - {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, - {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, - {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, - {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, {0x1da00, 0x1da36}, {0x1da3b, 0x1da6c}, - {0x1da75, 0x1da75}, {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, - {0x1e01b, 0x1e021}, {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, {0x1e08f, 0x1e08f}, {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, - {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e4d0, 0x1e4f9}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, + {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11bf0, 0x11bf9}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, + {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, + {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, + {0x11ee0, 0x11ef6}, {0x11f00, 0x11f10}, {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 0x11f5a}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, + {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x13460, 0x143fa}, {0x14400, 0x14646}, {0x16100, 0x16139}, {0x16800, 0x16a38}, + {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, + {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16d70, 0x16d79}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, + {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18cff, 0x18d08}, {0x1aff0, 0x1aff3}, + {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, + {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, {0x1ccf0, 0x1ccf9}, {0x1cf00, 0x1cf2d}, {0x1cf30, 0x1cf46}, + {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, {0x1d242, 0x1d244}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, + {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, + {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, + {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, + {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, {0x1da00, 0x1da36}, {0x1da3b, 0x1da6c}, {0x1da75, 0x1da75}, + {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, {0x1e01b, 0x1e021}, + {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, {0x1e08f, 0x1e08f}, {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, {0x1e14e, 0x1e14e}, + {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e4d0, 0x1e4f9}, {0x1e5d0, 0x1e5fa}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e8d0, 0x1e8d6}, {0x1e900, 0x1e94b}, {0x1e950, 0x1e959}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, @@ -5783,438 +5822,436 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(55); + if (eof) ADVANCE(54); if (lookahead == '\r') SKIP(51); if (lookahead == '!') ADVANCE(20); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(95); - if (lookahead == '&') ADVANCE(99); - if (lookahead == '(') ADVANCE(59); - if (lookahead == ')') ADVANCE(60); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '+') ADVANCE(91); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(85); - if (lookahead == '.') ADVANCE(58); - if (lookahead == '/') ADVANCE(92); - if (lookahead == '0') ADVANCE(139); - if (lookahead == ':') ADVANCE(70); - if (lookahead == ';') ADVANCE(56); - if (lookahead == '<') ADVANCE(105); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(113); - if (lookahead == '@') ADVANCE(82); - if (lookahead == '[') ADVANCE(79); - if (lookahead == '\\') ADVANCE(133); - if (lookahead == ']') ADVANCE(80); - if (lookahead == '^') ADVANCE(101); - if (lookahead == 'e') ADVANCE(163); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '|') ADVANCE(87); - if (lookahead == '}') ADVANCE(89); - if (lookahead == '~') ADVANCE(104); + if (lookahead == '#') ADVANCE(154); + if (lookahead == '%') ADVANCE(92); + if (lookahead == '&') ADVANCE(96); + if (lookahead == '(') ADVANCE(58); + if (lookahead == ')') ADVANCE(59); + if (lookahead == '*') ADVANCE(62); + if (lookahead == '+') ADVANCE(88); + if (lookahead == ',') ADVANCE(60); + if (lookahead == '-') ADVANCE(82); + if (lookahead == '.') ADVANCE(57); + if (lookahead == '/') ADVANCE(89); + if (lookahead == '0') ADVANCE(136); + if (lookahead == ':') ADVANCE(69); + if (lookahead == ';') ADVANCE(55); + if (lookahead == '<') ADVANCE(102); + if (lookahead == '=') ADVANCE(75); + if (lookahead == '>') ADVANCE(110); + if (lookahead == '@') ADVANCE(79); + if (lookahead == '[') ADVANCE(76); + if (lookahead == '\\') ADVANCE(130); + if (lookahead == ']') ADVANCE(77); + if (lookahead == '^') ADVANCE(98); + if (lookahead == 'e') ADVANCE(152); + if (lookahead == '{') ADVANCE(85); + if (lookahead == '|') ADVANCE(84); + if (lookahead == '}') ADVANCE(86); + if (lookahead == '~') ADVANCE(101); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(51); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(137); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(153); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(168); + if (lookahead == '\n') ADVANCE(155); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(130); + if (lookahead == '\n') ADVANCE(127); END_STATE(); case 3: if (lookahead == '\n') SKIP(3); - if (lookahead == '\r') ADVANCE(135); - if (lookahead == '#') ADVANCE(136); - if (lookahead == '\\') ADVANCE(134); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '}') ADVANCE(89); + if (lookahead == '\r') ADVANCE(132); + if (lookahead == '#') ADVANCE(133); + if (lookahead == '\\') ADVANCE(131); + if (lookahead == '{') ADVANCE(85); + if (lookahead == '}') ADVANCE(86); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(135); - if (lookahead != 0) ADVANCE(136); + lookahead == 0xfeff) ADVANCE(132); + if (lookahead != 0) ADVANCE(133); END_STATE(); case 4: if (lookahead == '\r') SKIP(4); if (lookahead == '!') ADVANCE(19); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(95); - if (lookahead == '&') ADVANCE(99); - if (lookahead == '(') ADVANCE(59); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '+') ADVANCE(91); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '.') ADVANCE(58); - if (lookahead == '/') ADVANCE(92); - if (lookahead == '0') ADVANCE(139); - if (lookahead == ':') ADVANCE(70); - if (lookahead == ';') ADVANCE(56); - if (lookahead == '<') ADVANCE(105); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(113); - if (lookahead == '@') ADVANCE(82); - if (lookahead == '[') ADVANCE(79); + if (lookahead == '#') ADVANCE(154); + if (lookahead == '%') ADVANCE(92); + if (lookahead == '&') ADVANCE(96); + if (lookahead == '(') ADVANCE(58); + if (lookahead == '*') ADVANCE(62); + if (lookahead == '+') ADVANCE(88); + if (lookahead == ',') ADVANCE(60); + if (lookahead == '-') ADVANCE(81); + if (lookahead == '.') ADVANCE(57); + if (lookahead == '/') ADVANCE(89); + if (lookahead == '0') ADVANCE(136); + if (lookahead == ':') ADVANCE(69); + if (lookahead == ';') ADVANCE(55); + if (lookahead == '<') ADVANCE(102); + if (lookahead == '=') ADVANCE(75); + if (lookahead == '>') ADVANCE(110); + if (lookahead == '@') ADVANCE(79); + if (lookahead == '[') ADVANCE(76); if (lookahead == '\\') ADVANCE(10); - if (lookahead == '^') ADVANCE(101); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '|') ADVANCE(87); - if (lookahead == '~') ADVANCE(104); + if (lookahead == '^') ADVANCE(98); + if (lookahead == '{') ADVANCE(85); + if (lookahead == '|') ADVANCE(84); + if (lookahead == '~') ADVANCE(101); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(4); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(137); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(153); END_STATE(); case 5: if (lookahead == '\r') SKIP(5); if (lookahead == '!') ADVANCE(20); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(94); - if (lookahead == '&') ADVANCE(98); - if (lookahead == '(') ADVANCE(59); - if (lookahead == ')') ADVANCE(60); - if (lookahead == '*') ADVANCE(64); - if (lookahead == '+') ADVANCE(90); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(83); - if (lookahead == '.') ADVANCE(58); - if (lookahead == '/') ADVANCE(93); - if (lookahead == '0') ADVANCE(139); - if (lookahead == ':') ADVANCE(70); - if (lookahead == ';') ADVANCE(56); - if (lookahead == '<') ADVANCE(106); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(114); - if (lookahead == '@') ADVANCE(81); - if (lookahead == '[') ADVANCE(79); + if (lookahead == '#') ADVANCE(154); + if (lookahead == '%') ADVANCE(91); + if (lookahead == '&') ADVANCE(95); + if (lookahead == '(') ADVANCE(58); + if (lookahead == ')') ADVANCE(59); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '+') ADVANCE(87); + if (lookahead == ',') ADVANCE(60); + if (lookahead == '-') ADVANCE(80); + if (lookahead == '.') ADVANCE(57); + if (lookahead == '/') ADVANCE(90); + if (lookahead == '0') ADVANCE(136); + if (lookahead == ':') ADVANCE(69); + if (lookahead == ';') ADVANCE(55); + if (lookahead == '<') ADVANCE(103); + if (lookahead == '=') ADVANCE(75); + if (lookahead == '>') ADVANCE(111); + if (lookahead == '@') ADVANCE(78); + if (lookahead == '[') ADVANCE(76); if (lookahead == '\\') ADVANCE(10); - if (lookahead == ']') ADVANCE(80); - if (lookahead == '^') ADVANCE(100); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '|') ADVANCE(86); - if (lookahead == '}') ADVANCE(89); - if (lookahead == '~') ADVANCE(104); + if (lookahead == ']') ADVANCE(77); + if (lookahead == '^') ADVANCE(97); + if (lookahead == '{') ADVANCE(85); + if (lookahead == '|') ADVANCE(83); + if (lookahead == '}') ADVANCE(86); + if (lookahead == '~') ADVANCE(101); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(5); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(137); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(153); END_STATE(); case 6: if (lookahead == '\r') SKIP(6); - if (lookahead == '#') ADVANCE(167); + if (lookahead == '#') ADVANCE(154); if (lookahead == '%') ADVANCE(21); if (lookahead == '&') ADVANCE(22); - if (lookahead == '(') ADVANCE(59); - if (lookahead == '*') ADVANCE(65); - if (lookahead == '+') ADVANCE(91); - if (lookahead == '-') ADVANCE(84); + if (lookahead == '(') ADVANCE(58); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '+') ADVANCE(88); + if (lookahead == '-') ADVANCE(81); if (lookahead == '.') ADVANCE(15); if (lookahead == '/') ADVANCE(17); - if (lookahead == '0') ADVANCE(139); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(56); + if (lookahead == '0') ADVANCE(136); + if (lookahead == ':') ADVANCE(68); + if (lookahead == ';') ADVANCE(55); if (lookahead == '<') ADVANCE(18); - if (lookahead == '=') ADVANCE(77); + if (lookahead == '=') ADVANCE(74); if (lookahead == '>') ADVANCE(31); if (lookahead == '@') ADVANCE(23); - if (lookahead == '[') ADVANCE(79); + if (lookahead == '[') ADVANCE(76); if (lookahead == '\\') ADVANCE(10); if (lookahead == '^') ADVANCE(24); - if (lookahead == '{') ADVANCE(88); + if (lookahead == '{') ADVANCE(85); if (lookahead == '|') ADVANCE(25); - if (lookahead == '~') ADVANCE(104); + if (lookahead == '~') ADVANCE(101); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(6); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(137); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(153); END_STATE(); case 7: if (lookahead == '\r') SKIP(7); if (lookahead == '!') ADVANCE(19); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(95); - if (lookahead == '&') ADVANCE(99); - if (lookahead == '(') ADVANCE(59); - if (lookahead == ')') ADVANCE(60); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '+') ADVANCE(91); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '.') ADVANCE(57); - if (lookahead == '/') ADVANCE(92); - if (lookahead == ':') ADVANCE(70); - if (lookahead == ';') ADVANCE(56); - if (lookahead == '<') ADVANCE(105); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(113); - if (lookahead == '@') ADVANCE(82); - if (lookahead == '[') ADVANCE(79); + if (lookahead == '#') ADVANCE(154); + if (lookahead == '%') ADVANCE(92); + if (lookahead == '&') ADVANCE(96); + if (lookahead == '(') ADVANCE(58); + if (lookahead == ')') ADVANCE(59); + if (lookahead == '*') ADVANCE(62); + if (lookahead == '+') ADVANCE(88); + if (lookahead == ',') ADVANCE(60); + if (lookahead == '-') ADVANCE(81); + if (lookahead == '.') ADVANCE(56); + if (lookahead == '/') ADVANCE(89); + if (lookahead == ':') ADVANCE(69); + if (lookahead == ';') ADVANCE(55); + if (lookahead == '<') ADVANCE(102); + if (lookahead == '=') ADVANCE(75); + if (lookahead == '>') ADVANCE(110); + if (lookahead == '@') ADVANCE(79); + if (lookahead == '[') ADVANCE(76); if (lookahead == '\\') ADVANCE(10); - if (lookahead == ']') ADVANCE(80); - if (lookahead == '^') ADVANCE(101); - if (lookahead == '|') ADVANCE(87); - if (lookahead == '}') ADVANCE(89); + if (lookahead == ']') ADVANCE(77); + if (lookahead == '^') ADVANCE(98); + if (lookahead == '|') ADVANCE(84); + if (lookahead == '}') ADVANCE(86); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(7); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(153); END_STATE(); case 8: if (lookahead == '\r') SKIP(8); if (lookahead == '!') ADVANCE(19); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(95); - if (lookahead == '&') ADVANCE(99); - if (lookahead == '(') ADVANCE(59); - if (lookahead == ')') ADVANCE(60); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '+') ADVANCE(91); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '.') ADVANCE(57); - if (lookahead == '/') ADVANCE(92); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(56); - if (lookahead == '<') ADVANCE(105); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(113); - if (lookahead == '@') ADVANCE(82); - if (lookahead == '[') ADVANCE(79); + if (lookahead == '#') ADVANCE(154); + if (lookahead == '%') ADVANCE(92); + if (lookahead == '&') ADVANCE(96); + if (lookahead == '(') ADVANCE(58); + if (lookahead == ')') ADVANCE(59); + if (lookahead == '*') ADVANCE(62); + if (lookahead == '+') ADVANCE(88); + if (lookahead == ',') ADVANCE(60); + if (lookahead == '-') ADVANCE(81); + if (lookahead == '.') ADVANCE(56); + if (lookahead == '/') ADVANCE(89); + if (lookahead == ':') ADVANCE(68); + if (lookahead == ';') ADVANCE(55); + if (lookahead == '<') ADVANCE(102); + if (lookahead == '=') ADVANCE(75); + if (lookahead == '>') ADVANCE(110); + if (lookahead == '@') ADVANCE(79); + if (lookahead == '[') ADVANCE(76); if (lookahead == '\\') ADVANCE(10); - if (lookahead == ']') ADVANCE(80); - if (lookahead == '^') ADVANCE(101); - if (lookahead == '|') ADVANCE(87); + if (lookahead == ']') ADVANCE(77); + if (lookahead == '^') ADVANCE(98); + if (lookahead == '|') ADVANCE(84); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(8); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(153); END_STATE(); case 9: if (lookahead == '\r') SKIP(9); - if (lookahead == '#') ADVANCE(167); + if (lookahead == '#') ADVANCE(154); if (lookahead == '-') ADVANCE(30); - if (lookahead == ':') ADVANCE(69); + if (lookahead == ':') ADVANCE(68); if (lookahead == '\\') ADVANCE(10); - if (lookahead == 'e') ADVANCE(163); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(9); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); END_STATE(); case 10: if (lookahead == '\r') ADVANCE(1); if ((!eof && lookahead == 00) || - lookahead == '\n') ADVANCE(168); + lookahead == '\n') ADVANCE(155); END_STATE(); case 11: if (lookahead == '\r') SKIP(11); if (lookahead == '!') ADVANCE(19); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(95); - if (lookahead == '&') ADVANCE(99); - if (lookahead == '(') ADVANCE(59); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '+') ADVANCE(91); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '.') ADVANCE(58); - if (lookahead == '/') ADVANCE(92); - if (lookahead == '0') ADVANCE(139); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(56); - if (lookahead == '<') ADVANCE(105); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(113); - if (lookahead == '@') ADVANCE(82); - if (lookahead == '[') ADVANCE(79); + if (lookahead == '#') ADVANCE(154); + if (lookahead == '%') ADVANCE(92); + if (lookahead == '&') ADVANCE(96); + if (lookahead == '(') ADVANCE(58); + if (lookahead == '*') ADVANCE(62); + if (lookahead == '+') ADVANCE(88); + if (lookahead == ',') ADVANCE(60); + if (lookahead == '-') ADVANCE(81); + if (lookahead == '.') ADVANCE(57); + if (lookahead == '/') ADVANCE(89); + if (lookahead == '0') ADVANCE(136); + if (lookahead == ':') ADVANCE(68); + if (lookahead == ';') ADVANCE(55); + if (lookahead == '<') ADVANCE(102); + if (lookahead == '=') ADVANCE(75); + if (lookahead == '>') ADVANCE(110); + if (lookahead == '@') ADVANCE(79); + if (lookahead == '[') ADVANCE(76); if (lookahead == '\\') ADVANCE(10); - if (lookahead == '^') ADVANCE(101); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '|') ADVANCE(87); - if (lookahead == '~') ADVANCE(104); + if (lookahead == '^') ADVANCE(98); + if (lookahead == '{') ADVANCE(85); + if (lookahead == '|') ADVANCE(84); + if (lookahead == '~') ADVANCE(101); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(11); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(137); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(153); END_STATE(); case 12: if (lookahead == '\r') SKIP(12); if (lookahead == '!') ADVANCE(20); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(94); - if (lookahead == '&') ADVANCE(98); - if (lookahead == '(') ADVANCE(59); - if (lookahead == ')') ADVANCE(60); - if (lookahead == '*') ADVANCE(64); - if (lookahead == '+') ADVANCE(90); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(83); - if (lookahead == '.') ADVANCE(58); - if (lookahead == '/') ADVANCE(93); - if (lookahead == '0') ADVANCE(139); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(56); - if (lookahead == '<') ADVANCE(106); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(114); - if (lookahead == '@') ADVANCE(81); - if (lookahead == '[') ADVANCE(79); + if (lookahead == '#') ADVANCE(154); + if (lookahead == '%') ADVANCE(91); + if (lookahead == '&') ADVANCE(95); + if (lookahead == '(') ADVANCE(58); + if (lookahead == ')') ADVANCE(59); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '+') ADVANCE(87); + if (lookahead == ',') ADVANCE(60); + if (lookahead == '-') ADVANCE(80); + if (lookahead == '.') ADVANCE(57); + if (lookahead == '/') ADVANCE(90); + if (lookahead == '0') ADVANCE(136); + if (lookahead == ':') ADVANCE(68); + if (lookahead == ';') ADVANCE(55); + if (lookahead == '<') ADVANCE(103); + if (lookahead == '=') ADVANCE(75); + if (lookahead == '>') ADVANCE(111); + if (lookahead == '@') ADVANCE(78); + if (lookahead == '[') ADVANCE(76); if (lookahead == '\\') ADVANCE(10); - if (lookahead == ']') ADVANCE(80); - if (lookahead == '^') ADVANCE(100); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '|') ADVANCE(86); - if (lookahead == '}') ADVANCE(89); - if (lookahead == '~') ADVANCE(104); + if (lookahead == ']') ADVANCE(77); + if (lookahead == '^') ADVANCE(97); + if (lookahead == '{') ADVANCE(85); + if (lookahead == '|') ADVANCE(83); + if (lookahead == '}') ADVANCE(86); + if (lookahead == '~') ADVANCE(101); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(12); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(137); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(153); END_STATE(); case 13: if (lookahead == '\r') SKIP(13); if (lookahead == '!') ADVANCE(20); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(94); - if (lookahead == '&') ADVANCE(98); - if (lookahead == '(') ADVANCE(59); - if (lookahead == ')') ADVANCE(60); - if (lookahead == '*') ADVANCE(64); - if (lookahead == '+') ADVANCE(90); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(83); - if (lookahead == '.') ADVANCE(57); - if (lookahead == '/') ADVANCE(93); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(56); - if (lookahead == '<') ADVANCE(106); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(114); - if (lookahead == '@') ADVANCE(81); - if (lookahead == '[') ADVANCE(79); + if (lookahead == '#') ADVANCE(154); + if (lookahead == '%') ADVANCE(91); + if (lookahead == '&') ADVANCE(95); + if (lookahead == '(') ADVANCE(58); + if (lookahead == ')') ADVANCE(59); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '+') ADVANCE(87); + if (lookahead == ',') ADVANCE(60); + if (lookahead == '-') ADVANCE(80); + if (lookahead == '.') ADVANCE(56); + if (lookahead == '/') ADVANCE(90); + if (lookahead == ':') ADVANCE(68); + if (lookahead == ';') ADVANCE(55); + if (lookahead == '<') ADVANCE(103); + if (lookahead == '=') ADVANCE(75); + if (lookahead == '>') ADVANCE(111); + if (lookahead == '@') ADVANCE(78); + if (lookahead == '[') ADVANCE(76); if (lookahead == '\\') ADVANCE(10); - if (lookahead == ']') ADVANCE(80); - if (lookahead == '^') ADVANCE(100); - if (lookahead == '|') ADVANCE(86); - if (lookahead == '}') ADVANCE(89); + if (lookahead == ']') ADVANCE(77); + if (lookahead == '^') ADVANCE(97); + if (lookahead == '|') ADVANCE(83); + if (lookahead == '}') ADVANCE(86); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(13); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(153); END_STATE(); case 14: if (lookahead == '\r') SKIP(14); if (lookahead == '!') ADVANCE(20); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(94); - if (lookahead == '&') ADVANCE(98); - if (lookahead == '(') ADVANCE(59); - if (lookahead == ')') ADVANCE(60); - if (lookahead == '*') ADVANCE(64); - if (lookahead == '+') ADVANCE(90); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(83); - if (lookahead == '.') ADVANCE(57); - if (lookahead == '/') ADVANCE(93); - if (lookahead == ':') ADVANCE(70); - if (lookahead == ';') ADVANCE(56); - if (lookahead == '<') ADVANCE(106); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(114); - if (lookahead == '@') ADVANCE(81); - if (lookahead == '[') ADVANCE(79); + if (lookahead == '#') ADVANCE(154); + if (lookahead == '%') ADVANCE(91); + if (lookahead == '&') ADVANCE(95); + if (lookahead == '(') ADVANCE(58); + if (lookahead == ')') ADVANCE(59); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '+') ADVANCE(87); + if (lookahead == ',') ADVANCE(60); + if (lookahead == '-') ADVANCE(80); + if (lookahead == '.') ADVANCE(56); + if (lookahead == '/') ADVANCE(90); + if (lookahead == ':') ADVANCE(69); + if (lookahead == ';') ADVANCE(55); + if (lookahead == '<') ADVANCE(103); + if (lookahead == '=') ADVANCE(75); + if (lookahead == '>') ADVANCE(111); + if (lookahead == '@') ADVANCE(78); + if (lookahead == '[') ADVANCE(76); if (lookahead == '\\') ADVANCE(10); - if (lookahead == ']') ADVANCE(80); - if (lookahead == '^') ADVANCE(100); - if (lookahead == '|') ADVANCE(86); - if (lookahead == '}') ADVANCE(89); + if (lookahead == ']') ADVANCE(77); + if (lookahead == '^') ADVANCE(97); + if (lookahead == '|') ADVANCE(83); + if (lookahead == '}') ADVANCE(86); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(14); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(153); END_STATE(); case 15: if (lookahead == '.') ADVANCE(16); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(146); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(143); END_STATE(); case 16: - if (lookahead == '.') ADVANCE(129); + if (lookahead == '.') ADVANCE(126); END_STATE(); case 17: if (lookahead == '/') ADVANCE(27); - if (lookahead == '=') ADVANCE(119); + if (lookahead == '=') ADVANCE(116); END_STATE(); case 18: if (lookahead == '<') ADVANCE(28); END_STATE(); case 19: - if (lookahead == '=') ADVANCE(110); + if (lookahead == '=') ADVANCE(107); END_STATE(); case 20: - if (lookahead == '=') ADVANCE(110); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(137); + if (lookahead == '=') ADVANCE(107); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(134); END_STATE(); case 21: - if (lookahead == '=') ADVANCE(122); + if (lookahead == '=') ADVANCE(119); END_STATE(); case 22: - if (lookahead == '=') ADVANCE(126); + if (lookahead == '=') ADVANCE(123); END_STATE(); case 23: - if (lookahead == '=') ADVANCE(120); + if (lookahead == '=') ADVANCE(117); END_STATE(); case 24: - if (lookahead == '=') ADVANCE(127); + if (lookahead == '=') ADVANCE(124); END_STATE(); case 25: - if (lookahead == '=') ADVANCE(128); + if (lookahead == '=') ADVANCE(125); END_STATE(); case 26: - if (lookahead == '=') ADVANCE(123); + if (lookahead == '=') ADVANCE(120); END_STATE(); case 27: - if (lookahead == '=') ADVANCE(121); + if (lookahead == '=') ADVANCE(118); END_STATE(); case 28: - if (lookahead == '=') ADVANCE(125); + if (lookahead == '=') ADVANCE(122); END_STATE(); case 29: - if (lookahead == '=') ADVANCE(124); + if (lookahead == '=') ADVANCE(121); END_STATE(); case 30: - if (lookahead == '>') ADVANCE(74); + if (lookahead == '>') ADVANCE(71); END_STATE(); case 31: if (lookahead == '>') ADVANCE(29); @@ -6222,49 +6259,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 32: if (lookahead == '_') ADVANCE(38); if (lookahead == '0' || - lookahead == '1') ADVANCE(142); + lookahead == '1') ADVANCE(139); END_STATE(); case 33: if (lookahead == '_') ADVANCE(39); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(143); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(140); END_STATE(); case 34: if (lookahead == '_') ADVANCE(42); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(144); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(141); END_STATE(); case 35: if (lookahead == '{') ADVANCE(50); END_STATE(); case 36: - if (lookahead == '}') ADVANCE(130); + if (lookahead == '}') ADVANCE(127); if (lookahead != 0) ADVANCE(36); END_STATE(); case 37: if (lookahead == '+' || lookahead == '-') ADVANCE(40); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(144); END_STATE(); case 38: if (lookahead == '0' || - lookahead == '1') ADVANCE(142); + lookahead == '1') ADVANCE(139); END_STATE(); case 39: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(143); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(140); END_STATE(); case 40: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(144); END_STATE(); case 41: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(130); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(127); END_STATE(); case 42: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(144); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(141); END_STATE(); case 43: if (('0' <= lookahead && lookahead <= '9') || @@ -6306,472 +6343,439 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(36); END_STATE(); case 51: - if (eof) ADVANCE(55); + if (eof) ADVANCE(54); if (lookahead == '\r') SKIP(51); if (lookahead == '!') ADVANCE(20); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(95); - if (lookahead == '&') ADVANCE(99); - if (lookahead == '(') ADVANCE(59); - if (lookahead == ')') ADVANCE(60); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '+') ADVANCE(91); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(85); - if (lookahead == '.') ADVANCE(58); - if (lookahead == '/') ADVANCE(92); - if (lookahead == '0') ADVANCE(139); - if (lookahead == ':') ADVANCE(70); - if (lookahead == ';') ADVANCE(56); - if (lookahead == '<') ADVANCE(105); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(113); - if (lookahead == '@') ADVANCE(82); - if (lookahead == '[') ADVANCE(79); + if (lookahead == '#') ADVANCE(154); + if (lookahead == '%') ADVANCE(92); + if (lookahead == '&') ADVANCE(96); + if (lookahead == '(') ADVANCE(58); + if (lookahead == ')') ADVANCE(59); + if (lookahead == '*') ADVANCE(62); + if (lookahead == '+') ADVANCE(88); + if (lookahead == ',') ADVANCE(60); + if (lookahead == '-') ADVANCE(82); + if (lookahead == '.') ADVANCE(57); + if (lookahead == '/') ADVANCE(89); + if (lookahead == '0') ADVANCE(136); + if (lookahead == ':') ADVANCE(69); + if (lookahead == ';') ADVANCE(55); + if (lookahead == '<') ADVANCE(102); + if (lookahead == '=') ADVANCE(75); + if (lookahead == '>') ADVANCE(110); + if (lookahead == '@') ADVANCE(79); + if (lookahead == '[') ADVANCE(76); if (lookahead == '\\') ADVANCE(10); - if (lookahead == ']') ADVANCE(80); - if (lookahead == '^') ADVANCE(101); - if (lookahead == 'e') ADVANCE(163); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '|') ADVANCE(87); - if (lookahead == '}') ADVANCE(89); - if (lookahead == '~') ADVANCE(104); + if (lookahead == ']') ADVANCE(77); + if (lookahead == '^') ADVANCE(98); + if (lookahead == 'e') ADVANCE(152); + if (lookahead == '{') ADVANCE(85); + if (lookahead == '|') ADVANCE(84); + if (lookahead == '}') ADVANCE(86); + if (lookahead == '~') ADVANCE(101); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(51); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(137); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(153); END_STATE(); case 52: - if (eof) ADVANCE(55); + if (eof) ADVANCE(54); if (lookahead == '\r') SKIP(52); if (lookahead == '!') ADVANCE(20); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '(') ADVANCE(59); - if (lookahead == ')') ADVANCE(60); - if (lookahead == '*') ADVANCE(62); - if (lookahead == '+') ADVANCE(90); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(83); + if (lookahead == '#') ADVANCE(154); + if (lookahead == '(') ADVANCE(58); + if (lookahead == ')') ADVANCE(59); + if (lookahead == '*') ADVANCE(61); + if (lookahead == '+') ADVANCE(87); + if (lookahead == ',') ADVANCE(60); + if (lookahead == '-') ADVANCE(80); if (lookahead == '.') ADVANCE(15); - if (lookahead == '0') ADVANCE(139); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(56); - if (lookahead == '<') ADVANCE(107); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(112); - if (lookahead == '@') ADVANCE(81); - if (lookahead == '[') ADVANCE(79); + if (lookahead == '0') ADVANCE(136); + if (lookahead == ':') ADVANCE(68); + if (lookahead == ';') ADVANCE(55); + if (lookahead == '<') ADVANCE(104); + if (lookahead == '=') ADVANCE(75); + if (lookahead == '>') ADVANCE(109); + if (lookahead == '@') ADVANCE(78); + if (lookahead == '[') ADVANCE(76); if (lookahead == '\\') ADVANCE(10); - if (lookahead == ']') ADVANCE(80); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '|') ADVANCE(86); - if (lookahead == '}') ADVANCE(89); - if (lookahead == '~') ADVANCE(104); + if (lookahead == ']') ADVANCE(77); + if (lookahead == '{') ADVANCE(85); + if (lookahead == '|') ADVANCE(83); + if (lookahead == '}') ADVANCE(86); + if (lookahead == '~') ADVANCE(101); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(52); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(137); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(153); END_STATE(); case 53: - if (eof) ADVANCE(55); + if (eof) ADVANCE(54); if (lookahead == '\r') SKIP(53); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '(') ADVANCE(59); - if (lookahead == '*') ADVANCE(62); - if (lookahead == '+') ADVANCE(90); - if (lookahead == '-') ADVANCE(83); + if (lookahead == '#') ADVANCE(154); + if (lookahead == '(') ADVANCE(58); + if (lookahead == '*') ADVANCE(61); + if (lookahead == '+') ADVANCE(87); + if (lookahead == '-') ADVANCE(80); if (lookahead == '.') ADVANCE(15); - if (lookahead == '0') ADVANCE(139); - if (lookahead == '@') ADVANCE(81); - if (lookahead == '[') ADVANCE(79); + if (lookahead == '0') ADVANCE(136); + if (lookahead == '@') ADVANCE(78); + if (lookahead == '[') ADVANCE(76); if (lookahead == '\\') ADVANCE(10); - if (lookahead == 'e') ADVANCE(164); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '~') ADVANCE(104); + if (lookahead == 'e') ADVANCE(152); + if (lookahead == '{') ADVANCE(85); + if (lookahead == '~') ADVANCE(101); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(53); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(137); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(153); END_STATE(); case 54: - if (eof) ADVANCE(55); - if (lookahead == '\r') SKIP(54); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '(') ADVANCE(59); - if (lookahead == '*') ADVANCE(62); - if (lookahead == '+') ADVANCE(90); - if (lookahead == '-') ADVANCE(83); - if (lookahead == '.') ADVANCE(15); - if (lookahead == '0') ADVANCE(139); - if (lookahead == '@') ADVANCE(81); - if (lookahead == '[') ADVANCE(79); - if (lookahead == '\\') ADVANCE(10); - if (lookahead == 'e') ADVANCE(165); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '~') ADVANCE(104); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ' || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(54); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 55: - ACCEPT_TOKEN(ts_builtin_sym_end); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 56: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 57: ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(16); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(143); END_STATE(); case 58: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(16); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(146); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 59: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 60: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 61: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 62: ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(73); + if (lookahead == '=') ADVANCE(115); END_STATE(); case 63: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(76); - if (lookahead == '=') ADVANCE(118); + if (lookahead == '*') ADVANCE(72); END_STATE(); case 64: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(75); + if (lookahead == '*') ADVANCE(26); + if (lookahead == '=') ADVANCE(115); END_STATE(); case 65: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(26); - if (lookahead == '=') ADVANCE(118); + ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); case 66: ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(121); END_STATE(); case 67: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(124); + ACCEPT_TOKEN(anon_sym_COLON_EQ); END_STATE(); case 68: - ACCEPT_TOKEN(anon_sym_COLON_EQ); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 69: ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '=') ADVANCE(67); END_STATE(); case 70: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '=') ADVANCE(68); + ACCEPT_TOKEN(anon_sym_except_STAR); END_STATE(); case 71: - ACCEPT_TOKEN(anon_sym_except); - if (lookahead == '*') ADVANCE(73); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 72: - ACCEPT_TOKEN(anon_sym_except); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 73: - ACCEPT_TOKEN(anon_sym_except_STAR); + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(120); END_STATE(); case 74: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 75: - ACCEPT_TOKEN(anon_sym_STAR_STAR); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(106); END_STATE(); case 76: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(123); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 77: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 78: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(109); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 79: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == '=') ADVANCE(117); END_STATE(); case 80: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 81: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(114); END_STATE(); case 82: - ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == '=') ADVANCE(120); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(114); + if (lookahead == '>') ADVANCE(71); END_STATE(); case 83: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 84: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(117); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(125); END_STATE(); case 85: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(117); - if (lookahead == '>') ADVANCE(74); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 86: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 87: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(128); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 88: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(113); END_STATE(); case 89: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(94); + if (lookahead == '=') ADVANCE(116); END_STATE(); case 90: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(93); END_STATE(); case 91: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(116); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 92: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(97); + ACCEPT_TOKEN(anon_sym_PERCENT); if (lookahead == '=') ADVANCE(119); END_STATE(); case 93: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(96); - END_STATE(); - case 94: - ACCEPT_TOKEN(anon_sym_PERCENT); - END_STATE(); - case 95: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(122); - END_STATE(); - case 96: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); - case 97: + case 94: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == '=') ADVANCE(121); + if (lookahead == '=') ADVANCE(118); END_STATE(); - case 98: + case 95: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 99: + case 96: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '=') ADVANCE(126); + if (lookahead == '=') ADVANCE(123); END_STATE(); - case 100: + case 97: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 101: + case 98: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(127); + if (lookahead == '=') ADVANCE(124); END_STATE(); - case 102: + case 99: ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 103: + case 100: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(125); + if (lookahead == '=') ADVANCE(122); END_STATE(); - case 104: + case 101: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 105: + case 102: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(103); - if (lookahead == '=') ADVANCE(108); - if (lookahead == '>') ADVANCE(115); + if (lookahead == '<') ADVANCE(100); + if (lookahead == '=') ADVANCE(105); + if (lookahead == '>') ADVANCE(112); END_STATE(); - case 106: + case 103: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(102); - if (lookahead == '=') ADVANCE(108); - if (lookahead == '>') ADVANCE(115); + if (lookahead == '<') ADVANCE(99); + if (lookahead == '=') ADVANCE(105); + if (lookahead == '>') ADVANCE(112); END_STATE(); - case 107: + case 104: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(108); - if (lookahead == '>') ADVANCE(115); + if (lookahead == '=') ADVANCE(105); + if (lookahead == '>') ADVANCE(112); END_STATE(); - case 108: + case 105: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 109: + case 106: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 110: + case 107: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 111: + case 108: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 112: + case 109: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(111); + if (lookahead == '=') ADVANCE(108); END_STATE(); - case 113: + case 110: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(111); - if (lookahead == '>') ADVANCE(67); + if (lookahead == '=') ADVANCE(108); + if (lookahead == '>') ADVANCE(66); END_STATE(); - case 114: + case 111: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(111); - if (lookahead == '>') ADVANCE(66); + if (lookahead == '=') ADVANCE(108); + if (lookahead == '>') ADVANCE(65); END_STATE(); - case 115: + case 112: ACCEPT_TOKEN(anon_sym_LT_GT); END_STATE(); - case 116: + case 113: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 117: + case 114: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 118: + case 115: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 119: + case 116: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 120: + case 117: ACCEPT_TOKEN(anon_sym_AT_EQ); END_STATE(); - case 121: + case 118: ACCEPT_TOKEN(anon_sym_SLASH_SLASH_EQ); END_STATE(); - case 122: + case 119: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 123: + case 120: ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); - case 124: + case 121: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 125: + case 122: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 126: + case 123: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 127: + case 124: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 128: + case 125: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 129: + case 126: ACCEPT_TOKEN(sym_ellipsis); END_STATE(); - case 130: + case 127: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 131: + case 128: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(127); END_STATE(); - case 132: + case 129: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(131); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(128); END_STATE(); - case 133: + case 130: ACCEPT_TOKEN(anon_sym_BSLASH); ADVANCE_MAP( - 0, 168, - '\n', 130, + 0, 155, + '\n', 127, '\r', 2, 'N', 35, 'U', 49, 'u', 45, 'x', 43, - '"', 130, - '\'', 130, - '\\', 130, - 'a', 130, - 'b', 130, - 'f', 130, - 'n', 130, - 'r', 130, - 't', 130, - 'v', 130, + '"', 127, + '\'', 127, + '\\', 127, + 'a', 127, + 'b', 127, + 'f', 127, + 'n', 127, + 'r', 127, + 't', 127, + 'v', 127, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(132); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(129); END_STATE(); - case 134: + case 131: ACCEPT_TOKEN(aux_sym_format_specifier_token1); - if ((!eof && lookahead == 00)) ADVANCE(136); - if (lookahead == '\r') ADVANCE(136); + if ((!eof && lookahead == 00)) ADVANCE(133); + if (lookahead == '\r') ADVANCE(133); if (lookahead != 0 && lookahead != '\n' && lookahead != '{' && - lookahead != '}') ADVANCE(136); + lookahead != '}') ADVANCE(133); END_STATE(); - case 135: + case 132: ACCEPT_TOKEN(aux_sym_format_specifier_token1); ADVANCE_MAP( - '\r', 135, - '#', 136, - '\\', 134, - '\t', 135, - 0x0b, 135, - '\f', 135, - ' ', 135, - 0x200b, 135, - 0x2060, 135, - 0xfeff, 135, + '\r', 132, + '#', 133, + '\\', 131, + '\t', 132, + 0x0b, 132, + '\f', 132, + ' ', 132, + 0x200b, 132, + 0x2060, 132, + 0xfeff, 132, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '{' && - lookahead != '}') ADVANCE(136); + lookahead != '}') ADVANCE(133); END_STATE(); - case 136: + case 133: ACCEPT_TOKEN(aux_sym_format_specifier_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '{' && - lookahead != '}') ADVANCE(136); + lookahead != '}') ADVANCE(133); END_STATE(); - case 137: + case 134: ACCEPT_TOKEN(sym_type_conversion); END_STATE(); - case 138: + case 135: ACCEPT_TOKEN(sym_integer); END_STATE(); - case 139: + case 136: ACCEPT_TOKEN(sym_integer); ADVANCE_MAP( - '.', 148, - '_', 141, + '.', 145, + '_', 138, 'B', 32, 'b', 32, 'E', 37, @@ -6780,185 +6784,135 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 33, 'X', 34, 'x', 34, - 'J', 138, - 'L', 138, - 'j', 138, - 'l', 138, + 'J', 135, + 'L', 135, + 'j', 135, + 'l', 135, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(140); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(137); END_STATE(); - case 140: + case 137: ACCEPT_TOKEN(sym_integer); ADVANCE_MAP( - '.', 148, - '_', 141, + '.', 145, + '_', 138, 'E', 37, 'e', 37, - 'J', 138, - 'L', 138, - 'j', 138, - 'l', 138, + 'J', 135, + 'L', 135, + 'j', 135, + 'l', 135, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(140); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(137); END_STATE(); - case 141: + case 138: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(148); + if (lookahead == '.') ADVANCE(145); if (lookahead == 'E' || lookahead == 'e') ADVANCE(37); if (lookahead == 'J' || lookahead == 'L' || lookahead == 'j' || - lookahead == 'l') ADVANCE(138); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(140); + lookahead == 'l') ADVANCE(135); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(137); END_STATE(); - case 142: + case 139: ACCEPT_TOKEN(sym_integer); if (lookahead == '_') ADVANCE(38); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(138); + lookahead == 'l') ADVANCE(135); if (lookahead == '0' || - lookahead == '1') ADVANCE(142); + lookahead == '1') ADVANCE(139); END_STATE(); - case 143: + case 140: ACCEPT_TOKEN(sym_integer); if (lookahead == '_') ADVANCE(39); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(138); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(143); + lookahead == 'l') ADVANCE(135); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(140); END_STATE(); - case 144: + case 141: ACCEPT_TOKEN(sym_integer); if (lookahead == '_') ADVANCE(42); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(138); + lookahead == 'l') ADVANCE(135); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(144); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(141); END_STATE(); - case 145: + case 142: ACCEPT_TOKEN(sym_float); END_STATE(); - case 146: + case 143: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(148); + if (lookahead == '_') ADVANCE(145); if (lookahead == 'E' || lookahead == 'e') ADVANCE(37); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(145); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(146); + lookahead == 'j') ADVANCE(142); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(143); END_STATE(); - case 147: + case 144: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(149); + if (lookahead == '_') ADVANCE(146); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(145); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(147); + lookahead == 'j') ADVANCE(142); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(144); END_STATE(); - case 148: + case 145: ACCEPT_TOKEN(sym_float); if (lookahead == 'E' || lookahead == 'e') ADVANCE(37); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(145); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(146); + lookahead == 'j') ADVANCE(142); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(143); END_STATE(); - case 149: + case 146: ACCEPT_TOKEN(sym_float); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(145); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(147); - END_STATE(); - case 150: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '*') ADVANCE(73); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); - END_STATE(); - case 151: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(154); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); - END_STATE(); - case 152: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(155); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); - END_STATE(); - case 153: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(156); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); - END_STATE(); - case 154: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(157); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); - END_STATE(); - case 155: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(158); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + lookahead == 'j') ADVANCE(142); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(144); END_STATE(); - case 156: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(159); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); - END_STATE(); - case 157: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(160); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); - END_STATE(); - case 158: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(161); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); - END_STATE(); - case 159: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(162); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); - END_STATE(); - case 160: + case 147: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(71); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (lookahead == '*') ADVANCE(70); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(153); END_STATE(); - case 161: + case 148: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(72); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (lookahead == 'c') ADVANCE(149); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(153); END_STATE(); - case 162: + case 149: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(150); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (lookahead == 'e') ADVANCE(150); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(153); END_STATE(); - case 163: + case 150: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'x') ADVANCE(151); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (lookahead == 'p') ADVANCE(151); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(153); END_STATE(); - case 164: + case 151: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'x') ADVANCE(152); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (lookahead == 't') ADVANCE(147); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(153); END_STATE(); - case 165: + case 152: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'x') ADVANCE(153); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (lookahead == 'x') ADVANCE(148); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(153); END_STATE(); - case 166: + case 153: ACCEPT_TOKEN(sym_identifier); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(153); END_STATE(); - case 167: + case 154: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(167); + lookahead != '\n') ADVANCE(154); END_STATE(); - case 168: + case 155: ACCEPT_TOKEN(sym_line_continuation); END_STATE(); default: @@ -7121,25 +7075,26 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 's') ADVANCE(72); END_STATE(); case 35: - if (lookahead == 'e') ADVANCE(73); + if (lookahead == 'c') ADVANCE(73); + if (lookahead == 'e') ADVANCE(74); END_STATE(); case 36: - if (lookahead == 'n') ADVANCE(74); + if (lookahead == 'n') ADVANCE(75); END_STATE(); case 37: - if (lookahead == 'r') ADVANCE(75); + if (lookahead == 'r') ADVANCE(76); END_STATE(); case 38: - if (lookahead == 'o') ADVANCE(76); + if (lookahead == 'o') ADVANCE(77); END_STATE(); case 39: - if (lookahead == 'o') ADVANCE(77); + if (lookahead == 'o') ADVANCE(78); END_STATE(); case 40: ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 41: - if (lookahead == 'p') ADVANCE(78); + if (lookahead == 'p') ADVANCE(79); END_STATE(); case 42: ACCEPT_TOKEN(anon_sym_in); @@ -7148,80 +7103,80 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_is); END_STATE(); case 44: - if (lookahead == 'm') ADVANCE(79); + if (lookahead == 'm') ADVANCE(80); END_STATE(); case 45: - if (lookahead == 't') ADVANCE(80); + if (lookahead == 't') ADVANCE(81); END_STATE(); case 46: - if (lookahead == 'n') ADVANCE(81); - if (lookahead == 't') ADVANCE(82); + if (lookahead == 'n') ADVANCE(82); + if (lookahead == 't') ADVANCE(83); END_STATE(); case 47: ACCEPT_TOKEN(anon_sym_or); END_STATE(); case 48: - if (lookahead == 's') ADVANCE(83); + if (lookahead == 's') ADVANCE(84); END_STATE(); case 49: - if (lookahead == 'i') ADVANCE(84); + if (lookahead == 'i') ADVANCE(85); END_STATE(); case 50: - if (lookahead == 'i') ADVANCE(85); + if (lookahead == 'i') ADVANCE(86); END_STATE(); case 51: - if (lookahead == 't') ADVANCE(86); + if (lookahead == 't') ADVANCE(87); END_STATE(); case 52: - if (lookahead == 'y') ADVANCE(87); + if (lookahead == 'y') ADVANCE(88); END_STATE(); case 53: - if (lookahead == 'p') ADVANCE(88); + if (lookahead == 'p') ADVANCE(89); END_STATE(); case 54: - if (lookahead == 'i') ADVANCE(89); + if (lookahead == 'i') ADVANCE(90); END_STATE(); case 55: - if (lookahead == 't') ADVANCE(90); + if (lookahead == 't') ADVANCE(91); END_STATE(); case 56: - if (lookahead == 'e') ADVANCE(91); + if (lookahead == 'e') ADVANCE(92); END_STATE(); case 57: - if (lookahead == 's') ADVANCE(92); + if (lookahead == 's') ADVANCE(93); END_STATE(); case 58: - if (lookahead == 'e') ADVANCE(93); + if (lookahead == 'e') ADVANCE(94); END_STATE(); case 59: - if (lookahead == 'e') ADVANCE(94); + if (lookahead == 'e') ADVANCE(95); END_STATE(); case 60: - if (lookahead == 'u') ADVANCE(95); + if (lookahead == 'u') ADVANCE(96); END_STATE(); case 61: ACCEPT_TOKEN(anon_sym_and); END_STATE(); case 62: - if (lookahead == 'e') ADVANCE(96); + if (lookahead == 'e') ADVANCE(97); END_STATE(); case 63: - if (lookahead == 'n') ADVANCE(97); + if (lookahead == 'n') ADVANCE(98); END_STATE(); case 64: - if (lookahead == 'i') ADVANCE(98); + if (lookahead == 'i') ADVANCE(99); END_STATE(); case 65: - if (lookahead == 'a') ADVANCE(99); + if (lookahead == 'a') ADVANCE(100); END_STATE(); case 66: - if (lookahead == 'e') ADVANCE(100); + if (lookahead == 'e') ADVANCE(101); END_STATE(); case 67: - if (lookahead == 's') ADVANCE(101); + if (lookahead == 's') ADVANCE(102); END_STATE(); case 68: - if (lookahead == 't') ADVANCE(102); + if (lookahead == 't') ADVANCE(103); END_STATE(); case 69: ACCEPT_TOKEN(anon_sym_def); @@ -7230,264 +7185,276 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_del); END_STATE(); case 71: - if (lookahead == 'f') ADVANCE(103); + if (lookahead == 'f') ADVANCE(104); END_STATE(); case 72: - if (lookahead == 'e') ADVANCE(104); + if (lookahead == 'e') ADVANCE(105); END_STATE(); case 73: - if (lookahead == 'c') ADVANCE(105); + if (lookahead == 'e') ADVANCE(106); END_STATE(); case 74: - if (lookahead == 'a') ADVANCE(106); + if (lookahead == 'c') ADVANCE(107); END_STATE(); case 75: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 'a') ADVANCE(108); END_STATE(); case 76: - if (lookahead == 'm') ADVANCE(107); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 77: - if (lookahead == 'b') ADVANCE(108); + if (lookahead == 'm') ADVANCE(109); END_STATE(); case 78: - if (lookahead == 'o') ADVANCE(109); + if (lookahead == 'b') ADVANCE(110); END_STATE(); case 79: - if (lookahead == 'b') ADVANCE(110); + if (lookahead == 'o') ADVANCE(111); END_STATE(); case 80: - if (lookahead == 'c') ADVANCE(111); + if (lookahead == 'b') ADVANCE(112); END_STATE(); case 81: - if (lookahead == 'l') ADVANCE(112); + if (lookahead == 'c') ADVANCE(113); END_STATE(); case 82: - ACCEPT_TOKEN(anon_sym_not); + if (lookahead == 'l') ADVANCE(114); END_STATE(); case 83: - if (lookahead == 's') ADVANCE(113); + ACCEPT_TOKEN(anon_sym_not); END_STATE(); case 84: - if (lookahead == 'n') ADVANCE(114); + if (lookahead == 's') ADVANCE(115); END_STATE(); case 85: - if (lookahead == 's') ADVANCE(115); + if (lookahead == 'n') ADVANCE(116); END_STATE(); case 86: - if (lookahead == 'u') ADVANCE(116); + if (lookahead == 's') ADVANCE(117); END_STATE(); case 87: - ACCEPT_TOKEN(anon_sym_try); + if (lookahead == 'u') ADVANCE(118); END_STATE(); case 88: - if (lookahead == 'e') ADVANCE(117); + ACCEPT_TOKEN(anon_sym_try); END_STATE(); case 89: - if (lookahead == 'l') ADVANCE(118); + if (lookahead == 'e') ADVANCE(119); END_STATE(); case 90: - if (lookahead == 'h') ADVANCE(119); + if (lookahead == 'l') ADVANCE(120); END_STATE(); case 91: - if (lookahead == 'l') ADVANCE(120); + if (lookahead == 'h') ADVANCE(121); END_STATE(); case 92: - if (lookahead == 'e') ADVANCE(121); + if (lookahead == 'l') ADVANCE(122); END_STATE(); case 93: - ACCEPT_TOKEN(sym_none); + if (lookahead == 'e') ADVANCE(123); END_STATE(); case 94: - ACCEPT_TOKEN(sym_true); + ACCEPT_TOKEN(sym_none); END_STATE(); case 95: - if (lookahead == 't') ADVANCE(122); + ACCEPT_TOKEN(sym_true); END_STATE(); case 96: - if (lookahead == 'r') ADVANCE(123); + if (lookahead == 't') ADVANCE(124); END_STATE(); case 97: - if (lookahead == 'c') ADVANCE(124); + if (lookahead == 'r') ADVANCE(125); END_STATE(); case 98: - if (lookahead == 't') ADVANCE(125); + if (lookahead == 'c') ADVANCE(126); END_STATE(); case 99: - if (lookahead == 'k') ADVANCE(126); + if (lookahead == 't') ADVANCE(127); END_STATE(); case 100: - ACCEPT_TOKEN(anon_sym_case); + if (lookahead == 'k') ADVANCE(128); END_STATE(); case 101: - if (lookahead == 's') ADVANCE(127); + ACCEPT_TOKEN(anon_sym_case); END_STATE(); case 102: - if (lookahead == 'i') ADVANCE(128); + if (lookahead == 's') ADVANCE(129); END_STATE(); case 103: - ACCEPT_TOKEN(anon_sym_elif); + if (lookahead == 'i') ADVANCE(130); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_else); + ACCEPT_TOKEN(anon_sym_elif); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_exec); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 106: - if (lookahead == 'l') ADVANCE(129); + if (lookahead == 'p') ADVANCE(131); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_from); + ACCEPT_TOKEN(anon_sym_exec); END_STATE(); case 108: - if (lookahead == 'a') ADVANCE(130); + if (lookahead == 'l') ADVANCE(132); END_STATE(); case 109: - if (lookahead == 'r') ADVANCE(131); + ACCEPT_TOKEN(anon_sym_from); END_STATE(); case 110: - if (lookahead == 'd') ADVANCE(132); + if (lookahead == 'a') ADVANCE(133); END_STATE(); case 111: - if (lookahead == 'h') ADVANCE(133); + if (lookahead == 'r') ADVANCE(134); END_STATE(); case 112: - if (lookahead == 'o') ADVANCE(134); + if (lookahead == 'd') ADVANCE(135); END_STATE(); case 113: - ACCEPT_TOKEN(anon_sym_pass); + if (lookahead == 'h') ADVANCE(136); END_STATE(); case 114: - if (lookahead == 't') ADVANCE(135); + if (lookahead == 'o') ADVANCE(137); END_STATE(); case 115: - if (lookahead == 'e') ADVANCE(136); + ACCEPT_TOKEN(anon_sym_pass); END_STATE(); case 116: - if (lookahead == 'r') ADVANCE(137); + if (lookahead == 't') ADVANCE(138); END_STATE(); case 117: - ACCEPT_TOKEN(anon_sym_type); + if (lookahead == 'e') ADVANCE(139); END_STATE(); case 118: - if (lookahead == 'e') ADVANCE(138); + if (lookahead == 'r') ADVANCE(140); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_with); + ACCEPT_TOKEN(anon_sym_type); END_STATE(); case 120: - if (lookahead == 'd') ADVANCE(139); + if (lookahead == 'e') ADVANCE(141); END_STATE(); case 121: - ACCEPT_TOKEN(sym_false); + ACCEPT_TOKEN(anon_sym_with); END_STATE(); case 122: - if (lookahead == 'u') ADVANCE(140); + if (lookahead == 'd') ADVANCE(142); END_STATE(); case 123: - if (lookahead == 't') ADVANCE(141); + ACCEPT_TOKEN(sym_false); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_async); + if (lookahead == 'u') ADVANCE(143); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_await); + if (lookahead == 't') ADVANCE(144); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_break); + ACCEPT_TOKEN(anon_sym_async); END_STATE(); case 127: - ACCEPT_TOKEN(anon_sym_class); + ACCEPT_TOKEN(anon_sym_await); END_STATE(); case 128: - if (lookahead == 'n') ADVANCE(142); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 129: - if (lookahead == 'l') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_class); END_STATE(); case 130: - if (lookahead == 'l') ADVANCE(144); + if (lookahead == 'n') ADVANCE(145); END_STATE(); case 131: - if (lookahead == 't') ADVANCE(145); + if (lookahead == 't') ADVANCE(146); END_STATE(); case 132: - if (lookahead == 'a') ADVANCE(146); + if (lookahead == 'l') ADVANCE(147); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_match); + if (lookahead == 'l') ADVANCE(148); END_STATE(); case 134: - if (lookahead == 'c') ADVANCE(147); + if (lookahead == 't') ADVANCE(149); END_STATE(); case 135: - ACCEPT_TOKEN(anon_sym_print); + if (lookahead == 'a') ADVANCE(150); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_raise); + ACCEPT_TOKEN(anon_sym_match); END_STATE(); case 137: - if (lookahead == 'n') ADVANCE(148); + if (lookahead == 'c') ADVANCE(151); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_while); + ACCEPT_TOKEN(anon_sym_print); END_STATE(); case 139: - ACCEPT_TOKEN(anon_sym_yield); + ACCEPT_TOKEN(anon_sym_raise); END_STATE(); case 140: - if (lookahead == 'r') ADVANCE(149); + if (lookahead == 'n') ADVANCE(152); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_assert); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 142: - if (lookahead == 'u') ADVANCE(150); + ACCEPT_TOKEN(anon_sym_yield); END_STATE(); case 143: - if (lookahead == 'y') ADVANCE(151); + if (lookahead == 'r') ADVANCE(153); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_global); + ACCEPT_TOKEN(anon_sym_assert); END_STATE(); case 145: - ACCEPT_TOKEN(anon_sym_import); + if (lookahead == 'u') ADVANCE(154); END_STATE(); case 146: - ACCEPT_TOKEN(anon_sym_lambda); + ACCEPT_TOKEN(anon_sym_except); END_STATE(); case 147: - if (lookahead == 'a') ADVANCE(152); + if (lookahead == 'y') ADVANCE(155); END_STATE(); case 148: - ACCEPT_TOKEN(anon_sym_return); + ACCEPT_TOKEN(anon_sym_global); END_STATE(); case 149: - if (lookahead == 'e') ADVANCE(153); + ACCEPT_TOKEN(anon_sym_import); END_STATE(); case 150: - if (lookahead == 'e') ADVANCE(154); + ACCEPT_TOKEN(anon_sym_lambda); END_STATE(); case 151: - ACCEPT_TOKEN(anon_sym_finally); + if (lookahead == 'a') ADVANCE(156); END_STATE(); case 152: - if (lookahead == 'l') ADVANCE(155); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 153: - if (lookahead == '_') ADVANCE(156); + if (lookahead == 'e') ADVANCE(157); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_continue); + if (lookahead == 'e') ADVANCE(158); END_STATE(); case 155: - ACCEPT_TOKEN(anon_sym_nonlocal); + ACCEPT_TOKEN(anon_sym_finally); END_STATE(); case 156: - if (lookahead == '_') ADVANCE(157); + if (lookahead == 'l') ADVANCE(159); END_STATE(); case 157: + if (lookahead == '_') ADVANCE(160); + END_STATE(); + case 158: + ACCEPT_TOKEN(anon_sym_continue); + END_STATE(); + case 159: + ACCEPT_TOKEN(anon_sym_nonlocal); + END_STATE(); + case 160: + if (lookahead == '_') ADVANCE(161); + END_STATE(); + case 161: ACCEPT_TOKEN(anon_sym___future__); END_STATE(); default: @@ -7495,7 +7462,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { } } -static const TSLexMode ts_lex_modes[STATE_COUNT] = { +static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, [1] = {.lex_state = 52, .external_lex_state = 2}, [2] = {.lex_state = 52, .external_lex_state = 3}, @@ -7559,30 +7526,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [60] = {.lex_state = 52, .external_lex_state = 3}, [61] = {.lex_state = 52, .external_lex_state = 3}, [62] = {.lex_state = 52, .external_lex_state = 3}, - [63] = {.lex_state = 52, .external_lex_state = 3}, - [64] = {.lex_state = 52, .external_lex_state = 2}, + [63] = {.lex_state = 52, .external_lex_state = 2}, + [64] = {.lex_state = 52, .external_lex_state = 3}, [65] = {.lex_state = 52, .external_lex_state = 3}, - [66] = {.lex_state = 52, .external_lex_state = 3}, - [67] = {.lex_state = 52, .external_lex_state = 2}, + [66] = {.lex_state = 52, .external_lex_state = 2}, + [67] = {.lex_state = 52, .external_lex_state = 3}, [68] = {.lex_state = 52, .external_lex_state = 3}, [69] = {.lex_state = 52, .external_lex_state = 3}, - [70] = {.lex_state = 52, .external_lex_state = 3}, - [71] = {.lex_state = 52, .external_lex_state = 3}, - [72] = {.lex_state = 52, .external_lex_state = 3}, - [73] = {.lex_state = 4, .external_lex_state = 4}, - [74] = {.lex_state = 4, .external_lex_state = 4}, + [70] = {.lex_state = 4, .external_lex_state = 4}, + [71] = {.lex_state = 4, .external_lex_state = 4}, + [72] = {.lex_state = 5, .external_lex_state = 5}, + [73] = {.lex_state = 5, .external_lex_state = 5}, + [74] = {.lex_state = 5, .external_lex_state = 5}, [75] = {.lex_state = 5, .external_lex_state = 5}, [76] = {.lex_state = 5, .external_lex_state = 5}, [77] = {.lex_state = 5, .external_lex_state = 5}, [78] = {.lex_state = 5, .external_lex_state = 5}, [79] = {.lex_state = 5, .external_lex_state = 5}, - [80] = {.lex_state = 5, .external_lex_state = 5}, - [81] = {.lex_state = 5, .external_lex_state = 5}, - [82] = {.lex_state = 5, .external_lex_state = 5}, + [80] = {.lex_state = 4, .external_lex_state = 4}, + [81] = {.lex_state = 4, .external_lex_state = 4}, + [82] = {.lex_state = 4, .external_lex_state = 4}, [83] = {.lex_state = 4, .external_lex_state = 4}, - [84] = {.lex_state = 4, .external_lex_state = 4}, - [85] = {.lex_state = 4, .external_lex_state = 4}, - [86] = {.lex_state = 4, .external_lex_state = 4}, + [84] = {.lex_state = 52, .external_lex_state = 5}, + [85] = {.lex_state = 52, .external_lex_state = 5}, + [86] = {.lex_state = 52, .external_lex_state = 5}, [87] = {.lex_state = 52, .external_lex_state = 5}, [88] = {.lex_state = 52, .external_lex_state = 5}, [89] = {.lex_state = 52, .external_lex_state = 5}, @@ -7630,9 +7597,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [131] = {.lex_state = 52, .external_lex_state = 5}, [132] = {.lex_state = 52, .external_lex_state = 5}, [133] = {.lex_state = 52, .external_lex_state = 5}, - [134] = {.lex_state = 52, .external_lex_state = 5}, - [135] = {.lex_state = 52, .external_lex_state = 5}, - [136] = {.lex_state = 52, .external_lex_state = 5}, + [134] = {.lex_state = 52, .external_lex_state = 4}, + [135] = {.lex_state = 52, .external_lex_state = 4}, + [136] = {.lex_state = 52, .external_lex_state = 4}, [137] = {.lex_state = 52, .external_lex_state = 4}, [138] = {.lex_state = 52, .external_lex_state = 4}, [139] = {.lex_state = 52, .external_lex_state = 4}, @@ -7640,214 +7607,214 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [141] = {.lex_state = 52, .external_lex_state = 4}, [142] = {.lex_state = 52, .external_lex_state = 4}, [143] = {.lex_state = 52, .external_lex_state = 4}, - [144] = {.lex_state = 52, .external_lex_state = 4}, - [145] = {.lex_state = 52, .external_lex_state = 4}, - [146] = {.lex_state = 52, .external_lex_state = 4}, - [147] = {.lex_state = 52, .external_lex_state = 4}, - [148] = {.lex_state = 52, .external_lex_state = 4}, - [149] = {.lex_state = 52, .external_lex_state = 4}, - [150] = {.lex_state = 52, .external_lex_state = 4}, - [151] = {.lex_state = 52, .external_lex_state = 4}, - [152] = {.lex_state = 52, .external_lex_state = 4}, - [153] = {.lex_state = 52, .external_lex_state = 2}, - [154] = {.lex_state = 4, .external_lex_state = 4}, - [155] = {.lex_state = 4, .external_lex_state = 4}, - [156] = {.lex_state = 11, .external_lex_state = 4}, - [157] = {.lex_state = 5, .external_lex_state = 4}, - [158] = {.lex_state = 5, .external_lex_state = 6}, - [159] = {.lex_state = 12, .external_lex_state = 4}, - [160] = {.lex_state = 12, .external_lex_state = 6}, - [161] = {.lex_state = 12, .external_lex_state = 4}, - [162] = {.lex_state = 5, .external_lex_state = 6}, - [163] = {.lex_state = 5, .external_lex_state = 2}, - [164] = {.lex_state = 5, .external_lex_state = 6}, - [165] = {.lex_state = 5, .external_lex_state = 6}, - [166] = {.lex_state = 5, .external_lex_state = 7}, + [144] = {.lex_state = 52, .external_lex_state = 2}, + [145] = {.lex_state = 4, .external_lex_state = 4}, + [146] = {.lex_state = 4, .external_lex_state = 4}, + [147] = {.lex_state = 11, .external_lex_state = 4}, + [148] = {.lex_state = 5, .external_lex_state = 4}, + [149] = {.lex_state = 5, .external_lex_state = 6}, + [150] = {.lex_state = 12, .external_lex_state = 4}, + [151] = {.lex_state = 12, .external_lex_state = 6}, + [152] = {.lex_state = 5, .external_lex_state = 6}, + [153] = {.lex_state = 12, .external_lex_state = 4}, + [154] = {.lex_state = 5, .external_lex_state = 7}, + [155] = {.lex_state = 5, .external_lex_state = 2}, + [156] = {.lex_state = 5, .external_lex_state = 8}, + [157] = {.lex_state = 12, .external_lex_state = 8}, + [158] = {.lex_state = 12, .external_lex_state = 6}, + [159] = {.lex_state = 5, .external_lex_state = 6}, + [160] = {.lex_state = 5, .external_lex_state = 6}, + [161] = {.lex_state = 5, .external_lex_state = 7}, + [162] = {.lex_state = 5, .external_lex_state = 8}, + [163] = {.lex_state = 5, .external_lex_state = 8}, + [164] = {.lex_state = 5, .external_lex_state = 8}, + [165] = {.lex_state = 5, .external_lex_state = 7}, + [166] = {.lex_state = 12, .external_lex_state = 2}, [167] = {.lex_state = 5, .external_lex_state = 8}, - [168] = {.lex_state = 12, .external_lex_state = 8}, - [169] = {.lex_state = 5, .external_lex_state = 8}, - [170] = {.lex_state = 5, .external_lex_state = 7}, - [171] = {.lex_state = 12, .external_lex_state = 6}, - [172] = {.lex_state = 5, .external_lex_state = 8}, - [173] = {.lex_state = 12, .external_lex_state = 2}, - [174] = {.lex_state = 5, .external_lex_state = 8}, - [175] = {.lex_state = 5, .external_lex_state = 8}, - [176] = {.lex_state = 12, .external_lex_state = 7}, - [177] = {.lex_state = 5, .external_lex_state = 7}, - [178] = {.lex_state = 12, .external_lex_state = 2}, - [179] = {.lex_state = 5, .external_lex_state = 8}, - [180] = {.lex_state = 11, .external_lex_state = 4}, - [181] = {.lex_state = 12, .external_lex_state = 6}, - [182] = {.lex_state = 12, .external_lex_state = 7}, - [183] = {.lex_state = 5, .external_lex_state = 7}, - [184] = {.lex_state = 12, .external_lex_state = 8}, - [185] = {.lex_state = 5, .external_lex_state = 8}, - [186] = {.lex_state = 12, .external_lex_state = 7}, - [187] = {.lex_state = 11, .external_lex_state = 2}, - [188] = {.lex_state = 11, .external_lex_state = 2}, - [189] = {.lex_state = 5, .external_lex_state = 7}, - [190] = {.lex_state = 5, .external_lex_state = 6}, - [191] = {.lex_state = 52, .external_lex_state = 8}, - [192] = {.lex_state = 52, .external_lex_state = 7}, - [193] = {.lex_state = 5, .external_lex_state = 6}, + [168] = {.lex_state = 5, .external_lex_state = 8}, + [169] = {.lex_state = 11, .external_lex_state = 4}, + [170] = {.lex_state = 12, .external_lex_state = 6}, + [171] = {.lex_state = 12, .external_lex_state = 7}, + [172] = {.lex_state = 12, .external_lex_state = 2}, + [173] = {.lex_state = 12, .external_lex_state = 7}, + [174] = {.lex_state = 5, .external_lex_state = 7}, + [175] = {.lex_state = 12, .external_lex_state = 8}, + [176] = {.lex_state = 5, .external_lex_state = 8}, + [177] = {.lex_state = 12, .external_lex_state = 7}, + [178] = {.lex_state = 11, .external_lex_state = 2}, + [179] = {.lex_state = 11, .external_lex_state = 2}, + [180] = {.lex_state = 5, .external_lex_state = 7}, + [181] = {.lex_state = 52, .external_lex_state = 2}, + [182] = {.lex_state = 52, .external_lex_state = 7}, + [183] = {.lex_state = 52, .external_lex_state = 7}, + [184] = {.lex_state = 52, .external_lex_state = 2}, + [185] = {.lex_state = 52, .external_lex_state = 8}, + [186] = {.lex_state = 52, .external_lex_state = 8}, + [187] = {.lex_state = 52, .external_lex_state = 8}, + [188] = {.lex_state = 52, .external_lex_state = 7}, + [189] = {.lex_state = 5, .external_lex_state = 6}, + [190] = {.lex_state = 52, .external_lex_state = 8}, + [191] = {.lex_state = 5, .external_lex_state = 6}, + [192] = {.lex_state = 52, .external_lex_state = 8}, + [193] = {.lex_state = 52, .external_lex_state = 7}, [194] = {.lex_state = 5, .external_lex_state = 6}, - [195] = {.lex_state = 52, .external_lex_state = 8}, - [196] = {.lex_state = 52, .external_lex_state = 7}, - [197] = {.lex_state = 5, .external_lex_state = 6}, - [198] = {.lex_state = 52, .external_lex_state = 8}, - [199] = {.lex_state = 52, .external_lex_state = 8}, - [200] = {.lex_state = 52, .external_lex_state = 8}, - [201] = {.lex_state = 52, .external_lex_state = 7}, - [202] = {.lex_state = 5, .external_lex_state = 6}, - [203] = {.lex_state = 52, .external_lex_state = 8}, - [204] = {.lex_state = 52, .external_lex_state = 7}, - [205] = {.lex_state = 5, .external_lex_state = 6}, - [206] = {.lex_state = 52, .external_lex_state = 7}, + [195] = {.lex_state = 52, .external_lex_state = 7}, + [196] = {.lex_state = 52, .external_lex_state = 8}, + [197] = {.lex_state = 52, .external_lex_state = 7}, + [198] = {.lex_state = 5, .external_lex_state = 6}, + [199] = {.lex_state = 52, .external_lex_state = 2}, + [200] = {.lex_state = 5, .external_lex_state = 6}, + [201] = {.lex_state = 52, .external_lex_state = 8}, + [202] = {.lex_state = 52, .external_lex_state = 7}, + [203] = {.lex_state = 5, .external_lex_state = 6}, + [204] = {.lex_state = 52, .external_lex_state = 8}, + [205] = {.lex_state = 52, .external_lex_state = 7}, + [206] = {.lex_state = 5, .external_lex_state = 6}, [207] = {.lex_state = 52, .external_lex_state = 8}, [208] = {.lex_state = 52, .external_lex_state = 7}, [209] = {.lex_state = 5, .external_lex_state = 6}, [210] = {.lex_state = 52, .external_lex_state = 8}, - [211] = {.lex_state = 52, .external_lex_state = 8}, - [212] = {.lex_state = 52, .external_lex_state = 2}, + [211] = {.lex_state = 52, .external_lex_state = 7}, + [212] = {.lex_state = 52, .external_lex_state = 7}, [213] = {.lex_state = 52, .external_lex_state = 8}, - [214] = {.lex_state = 52, .external_lex_state = 7}, - [215] = {.lex_state = 5, .external_lex_state = 6}, - [216] = {.lex_state = 52, .external_lex_state = 7}, - [217] = {.lex_state = 52, .external_lex_state = 2}, - [218] = {.lex_state = 52, .external_lex_state = 2}, - [219] = {.lex_state = 52, .external_lex_state = 8}, - [220] = {.lex_state = 52, .external_lex_state = 7}, - [221] = {.lex_state = 52, .external_lex_state = 7}, - [222] = {.lex_state = 52, .external_lex_state = 7}, - [223] = {.lex_state = 6, .external_lex_state = 4}, - [224] = {.lex_state = 6, .external_lex_state = 4}, + [214] = {.lex_state = 6, .external_lex_state = 4}, + [215] = {.lex_state = 6, .external_lex_state = 4}, + [216] = {.lex_state = 52, .external_lex_state = 2}, + [217] = {.lex_state = 5, .external_lex_state = 7}, + [218] = {.lex_state = 5, .external_lex_state = 7}, + [219] = {.lex_state = 5, .external_lex_state = 7}, + [220] = {.lex_state = 5, .external_lex_state = 7}, + [221] = {.lex_state = 5, .external_lex_state = 7}, + [222] = {.lex_state = 5, .external_lex_state = 7}, + [223] = {.lex_state = 5, .external_lex_state = 7}, + [224] = {.lex_state = 5, .external_lex_state = 7}, [225] = {.lex_state = 52, .external_lex_state = 2}, - [226] = {.lex_state = 5, .external_lex_state = 7}, - [227] = {.lex_state = 5, .external_lex_state = 7}, - [228] = {.lex_state = 5, .external_lex_state = 7}, - [229] = {.lex_state = 5, .external_lex_state = 7}, - [230] = {.lex_state = 5, .external_lex_state = 7}, - [231] = {.lex_state = 5, .external_lex_state = 7}, - [232] = {.lex_state = 52, .external_lex_state = 2}, - [233] = {.lex_state = 5, .external_lex_state = 7}, - [234] = {.lex_state = 5, .external_lex_state = 7}, - [235] = {.lex_state = 5, .external_lex_state = 2}, - [236] = {.lex_state = 5, .external_lex_state = 2}, + [226] = {.lex_state = 5, .external_lex_state = 2}, + [227] = {.lex_state = 5, .external_lex_state = 2}, + [228] = {.lex_state = 5, .external_lex_state = 2}, + [229] = {.lex_state = 5, .external_lex_state = 2}, + [230] = {.lex_state = 5, .external_lex_state = 2}, + [231] = {.lex_state = 5, .external_lex_state = 8}, + [232] = {.lex_state = 5, .external_lex_state = 2}, + [233] = {.lex_state = 52, .external_lex_state = 8}, + [234] = {.lex_state = 6, .external_lex_state = 2}, + [235] = {.lex_state = 5, .external_lex_state = 8}, + [236] = {.lex_state = 6, .external_lex_state = 2}, [237] = {.lex_state = 5, .external_lex_state = 2}, [238] = {.lex_state = 5, .external_lex_state = 2}, - [239] = {.lex_state = 52, .external_lex_state = 8}, + [239] = {.lex_state = 5, .external_lex_state = 8}, [240] = {.lex_state = 5, .external_lex_state = 2}, [241] = {.lex_state = 5, .external_lex_state = 2}, [242] = {.lex_state = 5, .external_lex_state = 2}, [243] = {.lex_state = 5, .external_lex_state = 2}, - [244] = {.lex_state = 5, .external_lex_state = 8}, - [245] = {.lex_state = 52, .external_lex_state = 6}, + [244] = {.lex_state = 5, .external_lex_state = 2}, + [245] = {.lex_state = 5, .external_lex_state = 2}, [246] = {.lex_state = 5, .external_lex_state = 8}, [247] = {.lex_state = 5, .external_lex_state = 8}, [248] = {.lex_state = 5, .external_lex_state = 2}, - [249] = {.lex_state = 6, .external_lex_state = 2}, - [250] = {.lex_state = 5, .external_lex_state = 8}, + [249] = {.lex_state = 5, .external_lex_state = 8}, + [250] = {.lex_state = 5, .external_lex_state = 2}, [251] = {.lex_state = 5, .external_lex_state = 2}, [252] = {.lex_state = 5, .external_lex_state = 8}, [253] = {.lex_state = 5, .external_lex_state = 2}, - [254] = {.lex_state = 5, .external_lex_state = 2}, - [255] = {.lex_state = 5, .external_lex_state = 2}, - [256] = {.lex_state = 5, .external_lex_state = 8}, + [254] = {.lex_state = 5, .external_lex_state = 8}, + [255] = {.lex_state = 5, .external_lex_state = 8}, + [256] = {.lex_state = 52, .external_lex_state = 6}, [257] = {.lex_state = 5, .external_lex_state = 2}, [258] = {.lex_state = 5, .external_lex_state = 2}, - [259] = {.lex_state = 5, .external_lex_state = 8}, + [259] = {.lex_state = 5, .external_lex_state = 2}, [260] = {.lex_state = 5, .external_lex_state = 2}, [261] = {.lex_state = 5, .external_lex_state = 2}, - [262] = {.lex_state = 5, .external_lex_state = 8}, + [262] = {.lex_state = 5, .external_lex_state = 2}, [263] = {.lex_state = 5, .external_lex_state = 2}, - [264] = {.lex_state = 5, .external_lex_state = 8}, - [265] = {.lex_state = 5, .external_lex_state = 2}, - [266] = {.lex_state = 5, .external_lex_state = 2}, - [267] = {.lex_state = 5, .external_lex_state = 2}, - [268] = {.lex_state = 6, .external_lex_state = 2}, - [269] = {.lex_state = 5, .external_lex_state = 2}, - [270] = {.lex_state = 5, .external_lex_state = 2}, - [271] = {.lex_state = 5, .external_lex_state = 2}, - [272] = {.lex_state = 5, .external_lex_state = 2}, - [273] = {.lex_state = 52, .external_lex_state = 7}, + [264] = {.lex_state = 52, .external_lex_state = 8}, + [265] = {.lex_state = 52, .external_lex_state = 8}, + [266] = {.lex_state = 5, .external_lex_state = 8}, + [267] = {.lex_state = 5, .external_lex_state = 8}, + [268] = {.lex_state = 52, .external_lex_state = 8}, + [269] = {.lex_state = 52, .external_lex_state = 7}, + [270] = {.lex_state = 5, .external_lex_state = 8}, + [271] = {.lex_state = 5, .external_lex_state = 8}, + [272] = {.lex_state = 5, .external_lex_state = 8}, + [273] = {.lex_state = 5, .external_lex_state = 8}, [274] = {.lex_state = 52, .external_lex_state = 8}, - [275] = {.lex_state = 5, .external_lex_state = 8}, - [276] = {.lex_state = 52, .external_lex_state = 7}, - [277] = {.lex_state = 52, .external_lex_state = 8}, + [275] = {.lex_state = 52, .external_lex_state = 7}, + [276] = {.lex_state = 52, .external_lex_state = 8}, + [277] = {.lex_state = 5, .external_lex_state = 8}, [278] = {.lex_state = 5, .external_lex_state = 8}, [279] = {.lex_state = 5, .external_lex_state = 8}, [280] = {.lex_state = 5, .external_lex_state = 8}, - [281] = {.lex_state = 5, .external_lex_state = 8}, - [282] = {.lex_state = 5, .external_lex_state = 8}, - [283] = {.lex_state = 5, .external_lex_state = 8}, - [284] = {.lex_state = 52, .external_lex_state = 8}, - [285] = {.lex_state = 52, .external_lex_state = 7}, - [286] = {.lex_state = 52, .external_lex_state = 8}, + [281] = {.lex_state = 52, .external_lex_state = 8}, + [282] = {.lex_state = 52, .external_lex_state = 7}, + [283] = {.lex_state = 52, .external_lex_state = 8}, + [284] = {.lex_state = 5, .external_lex_state = 8}, + [285] = {.lex_state = 5, .external_lex_state = 8}, + [286] = {.lex_state = 5, .external_lex_state = 8}, [287] = {.lex_state = 5, .external_lex_state = 8}, - [288] = {.lex_state = 5, .external_lex_state = 8}, - [289] = {.lex_state = 5, .external_lex_state = 8}, - [290] = {.lex_state = 5, .external_lex_state = 8}, + [288] = {.lex_state = 52, .external_lex_state = 8}, + [289] = {.lex_state = 52, .external_lex_state = 7}, + [290] = {.lex_state = 52, .external_lex_state = 8}, [291] = {.lex_state = 5, .external_lex_state = 8}, [292] = {.lex_state = 5, .external_lex_state = 8}, [293] = {.lex_state = 5, .external_lex_state = 8}, - [294] = {.lex_state = 52, .external_lex_state = 7}, - [295] = {.lex_state = 52, .external_lex_state = 8}, + [294] = {.lex_state = 52, .external_lex_state = 8}, + [295] = {.lex_state = 52, .external_lex_state = 7}, [296] = {.lex_state = 52, .external_lex_state = 8}, - [297] = {.lex_state = 52, .external_lex_state = 7}, + [297] = {.lex_state = 5, .external_lex_state = 8}, [298] = {.lex_state = 5, .external_lex_state = 8}, [299] = {.lex_state = 5, .external_lex_state = 8}, [300] = {.lex_state = 5, .external_lex_state = 8}, - [301] = {.lex_state = 5, .external_lex_state = 8}, - [302] = {.lex_state = 5, .external_lex_state = 8}, - [303] = {.lex_state = 5, .external_lex_state = 8}, + [301] = {.lex_state = 52, .external_lex_state = 8}, + [302] = {.lex_state = 52, .external_lex_state = 7}, + [303] = {.lex_state = 52, .external_lex_state = 8}, [304] = {.lex_state = 5, .external_lex_state = 8}, - [305] = {.lex_state = 52, .external_lex_state = 8}, - [306] = {.lex_state = 52, .external_lex_state = 7}, - [307] = {.lex_state = 52, .external_lex_state = 8}, - [308] = {.lex_state = 52, .external_lex_state = 7}, - [309] = {.lex_state = 52, .external_lex_state = 8}, - [310] = {.lex_state = 52, .external_lex_state = 8}, + [305] = {.lex_state = 5, .external_lex_state = 8}, + [306] = {.lex_state = 5, .external_lex_state = 8}, + [307] = {.lex_state = 5, .external_lex_state = 8}, + [308] = {.lex_state = 52, .external_lex_state = 8}, + [309] = {.lex_state = 52, .external_lex_state = 7}, + [310] = {.lex_state = 52, .external_lex_state = 7}, [311] = {.lex_state = 5, .external_lex_state = 8}, [312] = {.lex_state = 5, .external_lex_state = 8}, [313] = {.lex_state = 5, .external_lex_state = 8}, [314] = {.lex_state = 5, .external_lex_state = 8}, - [315] = {.lex_state = 52, .external_lex_state = 7}, - [316] = {.lex_state = 52, .external_lex_state = 8}, - [317] = {.lex_state = 52, .external_lex_state = 8}, - [318] = {.lex_state = 5, .external_lex_state = 8}, - [319] = {.lex_state = 5, .external_lex_state = 8}, - [320] = {.lex_state = 52, .external_lex_state = 8}, - [321] = {.lex_state = 5, .external_lex_state = 8}, - [322] = {.lex_state = 5, .external_lex_state = 8}, - [323] = {.lex_state = 5, .external_lex_state = 8}, - [324] = {.lex_state = 5, .external_lex_state = 8}, - [325] = {.lex_state = 52, .external_lex_state = 8}, - [326] = {.lex_state = 5, .external_lex_state = 8}, - [327] = {.lex_state = 52, .external_lex_state = 7}, - [328] = {.lex_state = 52, .external_lex_state = 8}, - [329] = {.lex_state = 52, .external_lex_state = 8}, - [330] = {.lex_state = 52, .external_lex_state = 8}, - [331] = {.lex_state = 52, .external_lex_state = 6}, + [315] = {.lex_state = 5, .external_lex_state = 8}, + [316] = {.lex_state = 5, .external_lex_state = 8}, + [317] = {.lex_state = 5, .external_lex_state = 8}, + [318] = {.lex_state = 52, .external_lex_state = 8}, + [319] = {.lex_state = 52, .external_lex_state = 8}, + [320] = {.lex_state = 12, .external_lex_state = 6}, + [321] = {.lex_state = 52, .external_lex_state = 8}, + [322] = {.lex_state = 52, .external_lex_state = 8}, + [323] = {.lex_state = 52, .external_lex_state = 8}, + [324] = {.lex_state = 52, .external_lex_state = 8}, + [325] = {.lex_state = 52, .external_lex_state = 7}, + [326] = {.lex_state = 52, .external_lex_state = 6}, + [327] = {.lex_state = 52, .external_lex_state = 6}, + [328] = {.lex_state = 52, .external_lex_state = 6}, + [329] = {.lex_state = 52, .external_lex_state = 6}, + [330] = {.lex_state = 5, .external_lex_state = 2}, + [331] = {.lex_state = 52, .external_lex_state = 7}, [332] = {.lex_state = 52, .external_lex_state = 7}, [333] = {.lex_state = 52, .external_lex_state = 6}, - [334] = {.lex_state = 52, .external_lex_state = 8}, - [335] = {.lex_state = 5, .external_lex_state = 2}, + [334] = {.lex_state = 52, .external_lex_state = 7}, + [335] = {.lex_state = 52, .external_lex_state = 6}, [336] = {.lex_state = 52, .external_lex_state = 6}, - [337] = {.lex_state = 52, .external_lex_state = 6}, - [338] = {.lex_state = 52, .external_lex_state = 8}, + [337] = {.lex_state = 52, .external_lex_state = 7}, + [338] = {.lex_state = 52, .external_lex_state = 7}, [339] = {.lex_state = 52, .external_lex_state = 6}, - [340] = {.lex_state = 52, .external_lex_state = 6}, - [341] = {.lex_state = 52, .external_lex_state = 7}, - [342] = {.lex_state = 52, .external_lex_state = 8}, - [343] = {.lex_state = 52, .external_lex_state = 7}, - [344] = {.lex_state = 52, .external_lex_state = 7}, - [345] = {.lex_state = 52, .external_lex_state = 7}, - [346] = {.lex_state = 52, .external_lex_state = 6}, - [347] = {.lex_state = 12, .external_lex_state = 6}, - [348] = {.lex_state = 52, .external_lex_state = 6}, - [349] = {.lex_state = 52, .external_lex_state = 2}, - [350] = {.lex_state = 52, .external_lex_state = 4}, - [351] = {.lex_state = 5, .external_lex_state = 6}, + [340] = {.lex_state = 52, .external_lex_state = 4}, + [341] = {.lex_state = 5, .external_lex_state = 6}, + [342] = {.lex_state = 5, .external_lex_state = 6}, + [343] = {.lex_state = 52, .external_lex_state = 2}, + [344] = {.lex_state = 5, .external_lex_state = 6}, + [345] = {.lex_state = 52, .external_lex_state = 2}, + [346] = {.lex_state = 52, .external_lex_state = 8}, + [347] = {.lex_state = 52, .external_lex_state = 7}, + [348] = {.lex_state = 5, .external_lex_state = 6}, + [349] = {.lex_state = 5, .external_lex_state = 6}, + [350] = {.lex_state = 5, .external_lex_state = 6}, + [351] = {.lex_state = 52, .external_lex_state = 4}, [352] = {.lex_state = 5, .external_lex_state = 6}, [353] = {.lex_state = 5, .external_lex_state = 6}, [354] = {.lex_state = 5, .external_lex_state = 6}, @@ -7856,27 +7823,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [357] = {.lex_state = 5, .external_lex_state = 6}, [358] = {.lex_state = 5, .external_lex_state = 6}, [359] = {.lex_state = 5, .external_lex_state = 6}, - [360] = {.lex_state = 5, .external_lex_state = 6}, + [360] = {.lex_state = 52, .external_lex_state = 2}, [361] = {.lex_state = 5, .external_lex_state = 6}, - [362] = {.lex_state = 52, .external_lex_state = 4}, + [362] = {.lex_state = 5, .external_lex_state = 6}, [363] = {.lex_state = 52, .external_lex_state = 7}, - [364] = {.lex_state = 52, .external_lex_state = 2}, - [365] = {.lex_state = 5, .external_lex_state = 6}, - [366] = {.lex_state = 5, .external_lex_state = 6}, - [367] = {.lex_state = 52, .external_lex_state = 8}, - [368] = {.lex_state = 5, .external_lex_state = 6}, - [369] = {.lex_state = 5, .external_lex_state = 6}, - [370] = {.lex_state = 5, .external_lex_state = 6}, - [371] = {.lex_state = 52, .external_lex_state = 2}, + [364] = {.lex_state = 52, .external_lex_state = 7}, + [365] = {.lex_state = 52, .external_lex_state = 7}, + [366] = {.lex_state = 52, .external_lex_state = 7}, + [367] = {.lex_state = 52, .external_lex_state = 7}, + [368] = {.lex_state = 52, .external_lex_state = 7}, + [369] = {.lex_state = 52, .external_lex_state = 7}, + [370] = {.lex_state = 52, .external_lex_state = 7}, + [371] = {.lex_state = 52, .external_lex_state = 4}, [372] = {.lex_state = 12, .external_lex_state = 8}, - [373] = {.lex_state = 52, .external_lex_state = 7}, - [374] = {.lex_state = 52, .external_lex_state = 7}, + [373] = {.lex_state = 5, .external_lex_state = 2}, + [374] = {.lex_state = 52, .external_lex_state = 4}, [375] = {.lex_state = 52, .external_lex_state = 7}, - [376] = {.lex_state = 52, .external_lex_state = 4}, + [376] = {.lex_state = 52, .external_lex_state = 7}, [377] = {.lex_state = 52, .external_lex_state = 7}, - [378] = {.lex_state = 52, .external_lex_state = 7}, - [379] = {.lex_state = 52, .external_lex_state = 7}, - [380] = {.lex_state = 52, .external_lex_state = 4}, + [378] = {.lex_state = 12, .external_lex_state = 8}, + [379] = {.lex_state = 52, .external_lex_state = 4}, + [380] = {.lex_state = 52, .external_lex_state = 7}, [381] = {.lex_state = 52, .external_lex_state = 7}, [382] = {.lex_state = 52, .external_lex_state = 7}, [383] = {.lex_state = 52, .external_lex_state = 7}, @@ -7893,92 +7860,92 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [394] = {.lex_state = 52, .external_lex_state = 7}, [395] = {.lex_state = 52, .external_lex_state = 7}, [396] = {.lex_state = 52, .external_lex_state = 7}, - [397] = {.lex_state = 52, .external_lex_state = 4}, + [397] = {.lex_state = 52, .external_lex_state = 7}, [398] = {.lex_state = 52, .external_lex_state = 7}, [399] = {.lex_state = 52, .external_lex_state = 7}, [400] = {.lex_state = 52, .external_lex_state = 7}, - [401] = {.lex_state = 52, .external_lex_state = 7}, - [402] = {.lex_state = 52, .external_lex_state = 7}, + [401] = {.lex_state = 52, .external_lex_state = 2}, + [402] = {.lex_state = 52, .external_lex_state = 2}, [403] = {.lex_state = 5, .external_lex_state = 2}, [404] = {.lex_state = 52, .external_lex_state = 7}, - [405] = {.lex_state = 52, .external_lex_state = 7}, - [406] = {.lex_state = 52, .external_lex_state = 7}, - [407] = {.lex_state = 12, .external_lex_state = 8}, - [408] = {.lex_state = 52, .external_lex_state = 7}, - [409] = {.lex_state = 52, .external_lex_state = 7}, - [410] = {.lex_state = 52, .external_lex_state = 2}, - [411] = {.lex_state = 52, .external_lex_state = 4}, - [412] = {.lex_state = 52, .external_lex_state = 7}, - [413] = {.lex_state = 52, .external_lex_state = 8}, - [414] = {.lex_state = 52, .external_lex_state = 2}, - [415] = {.lex_state = 52, .external_lex_state = 8}, - [416] = {.lex_state = 12, .external_lex_state = 2}, - [417] = {.lex_state = 5, .external_lex_state = 7}, - [418] = {.lex_state = 52, .external_lex_state = 7}, - [419] = {.lex_state = 52, .external_lex_state = 7}, - [420] = {.lex_state = 52, .external_lex_state = 8}, + [405] = {.lex_state = 52, .external_lex_state = 2}, + [406] = {.lex_state = 52, .external_lex_state = 4}, + [407] = {.lex_state = 52, .external_lex_state = 7}, + [408] = {.lex_state = 52, .external_lex_state = 2}, + [409] = {.lex_state = 52, .external_lex_state = 2}, + [410] = {.lex_state = 53, .external_lex_state = 9}, + [411] = {.lex_state = 52, .external_lex_state = 2}, + [412] = {.lex_state = 52, .external_lex_state = 2}, + [413] = {.lex_state = 53, .external_lex_state = 9}, + [414] = {.lex_state = 52, .external_lex_state = 8}, + [415] = {.lex_state = 53, .external_lex_state = 10}, + [416] = {.lex_state = 52, .external_lex_state = 7}, + [417] = {.lex_state = 53, .external_lex_state = 10}, + [418] = {.lex_state = 53, .external_lex_state = 10}, + [419] = {.lex_state = 52, .external_lex_state = 2}, + [420] = {.lex_state = 52, .external_lex_state = 2}, [421] = {.lex_state = 52, .external_lex_state = 2}, - [422] = {.lex_state = 52, .external_lex_state = 7}, - [423] = {.lex_state = 52, .external_lex_state = 2}, + [422] = {.lex_state = 52, .external_lex_state = 2}, + [423] = {.lex_state = 52, .external_lex_state = 8}, [424] = {.lex_state = 52, .external_lex_state = 2}, - [425] = {.lex_state = 52, .external_lex_state = 2}, - [426] = {.lex_state = 52, .external_lex_state = 4}, - [427] = {.lex_state = 52, .external_lex_state = 4}, - [428] = {.lex_state = 52, .external_lex_state = 2}, - [429] = {.lex_state = 52, .external_lex_state = 2}, + [425] = {.lex_state = 5, .external_lex_state = 8}, + [426] = {.lex_state = 53, .external_lex_state = 9}, + [427] = {.lex_state = 52, .external_lex_state = 2}, + [428] = {.lex_state = 53, .external_lex_state = 9}, + [429] = {.lex_state = 52, .external_lex_state = 4}, [430] = {.lex_state = 52, .external_lex_state = 2}, - [431] = {.lex_state = 52, .external_lex_state = 7}, + [431] = {.lex_state = 52, .external_lex_state = 2}, [432] = {.lex_state = 52, .external_lex_state = 2}, [433] = {.lex_state = 52, .external_lex_state = 2}, - [434] = {.lex_state = 52, .external_lex_state = 2}, - [435] = {.lex_state = 52, .external_lex_state = 2}, - [436] = {.lex_state = 12, .external_lex_state = 2}, - [437] = {.lex_state = 52, .external_lex_state = 2}, + [434] = {.lex_state = 52, .external_lex_state = 7}, + [435] = {.lex_state = 52, .external_lex_state = 8}, + [436] = {.lex_state = 52, .external_lex_state = 2}, + [437] = {.lex_state = 52, .external_lex_state = 4}, [438] = {.lex_state = 52, .external_lex_state = 2}, - [439] = {.lex_state = 5, .external_lex_state = 2}, - [440] = {.lex_state = 52, .external_lex_state = 4}, - [441] = {.lex_state = 52, .external_lex_state = 2}, - [442] = {.lex_state = 52, .external_lex_state = 2}, - [443] = {.lex_state = 52, .external_lex_state = 2}, + [439] = {.lex_state = 52, .external_lex_state = 2}, + [440] = {.lex_state = 53, .external_lex_state = 10}, + [441] = {.lex_state = 52, .external_lex_state = 8}, + [442] = {.lex_state = 12, .external_lex_state = 2}, + [443] = {.lex_state = 12, .external_lex_state = 2}, [444] = {.lex_state = 52, .external_lex_state = 2}, [445] = {.lex_state = 52, .external_lex_state = 2}, - [446] = {.lex_state = 52, .external_lex_state = 4}, + [446] = {.lex_state = 52, .external_lex_state = 2}, [447] = {.lex_state = 52, .external_lex_state = 4}, [448] = {.lex_state = 52, .external_lex_state = 2}, - [449] = {.lex_state = 5, .external_lex_state = 8}, - [450] = {.lex_state = 52, .external_lex_state = 8}, + [449] = {.lex_state = 52, .external_lex_state = 7}, + [450] = {.lex_state = 52, .external_lex_state = 2}, [451] = {.lex_state = 52, .external_lex_state = 2}, [452] = {.lex_state = 52, .external_lex_state = 2}, [453] = {.lex_state = 52, .external_lex_state = 2}, [454] = {.lex_state = 52, .external_lex_state = 2}, - [455] = {.lex_state = 52, .external_lex_state = 2}, + [455] = {.lex_state = 5, .external_lex_state = 7}, [456] = {.lex_state = 52, .external_lex_state = 2}, [457] = {.lex_state = 52, .external_lex_state = 2}, - [458] = {.lex_state = 52, .external_lex_state = 2}, - [459] = {.lex_state = 52, .external_lex_state = 2}, + [458] = {.lex_state = 52, .external_lex_state = 4}, + [459] = {.lex_state = 52, .external_lex_state = 4}, [460] = {.lex_state = 52, .external_lex_state = 2}, [461] = {.lex_state = 52, .external_lex_state = 2}, - [462] = {.lex_state = 7, .external_lex_state = 9}, + [462] = {.lex_state = 7, .external_lex_state = 4}, [463] = {.lex_state = 52, .external_lex_state = 2}, [464] = {.lex_state = 52, .external_lex_state = 2}, [465] = {.lex_state = 52, .external_lex_state = 2}, [466] = {.lex_state = 52, .external_lex_state = 2}, - [467] = {.lex_state = 52, .external_lex_state = 2}, + [467] = {.lex_state = 7, .external_lex_state = 4}, [468] = {.lex_state = 52, .external_lex_state = 2}, [469] = {.lex_state = 52, .external_lex_state = 2}, [470] = {.lex_state = 52, .external_lex_state = 2}, - [471] = {.lex_state = 7, .external_lex_state = 4}, + [471] = {.lex_state = 52, .external_lex_state = 2}, [472] = {.lex_state = 52, .external_lex_state = 2}, [473] = {.lex_state = 52, .external_lex_state = 2}, [474] = {.lex_state = 52, .external_lex_state = 2}, [475] = {.lex_state = 52, .external_lex_state = 2}, - [476] = {.lex_state = 7, .external_lex_state = 4}, - [477] = {.lex_state = 7, .external_lex_state = 9}, + [476] = {.lex_state = 52, .external_lex_state = 2}, + [477] = {.lex_state = 7, .external_lex_state = 11}, [478] = {.lex_state = 52, .external_lex_state = 2}, - [479] = {.lex_state = 52, .external_lex_state = 2}, + [479] = {.lex_state = 7, .external_lex_state = 11}, [480] = {.lex_state = 52, .external_lex_state = 2}, [481] = {.lex_state = 52, .external_lex_state = 2}, - [482] = {.lex_state = 52, .external_lex_state = 2}, + [482] = {.lex_state = 53, .external_lex_state = 9}, [483] = {.lex_state = 52, .external_lex_state = 2}, [484] = {.lex_state = 52, .external_lex_state = 2}, [485] = {.lex_state = 52, .external_lex_state = 2}, @@ -7991,7 +7958,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [492] = {.lex_state = 52, .external_lex_state = 2}, [493] = {.lex_state = 52, .external_lex_state = 2}, [494] = {.lex_state = 52, .external_lex_state = 2}, - [495] = {.lex_state = 53, .external_lex_state = 10}, + [495] = {.lex_state = 52, .external_lex_state = 2}, [496] = {.lex_state = 52, .external_lex_state = 2}, [497] = {.lex_state = 52, .external_lex_state = 2}, [498] = {.lex_state = 52, .external_lex_state = 2}, @@ -7999,7 +7966,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [500] = {.lex_state = 52, .external_lex_state = 2}, [501] = {.lex_state = 52, .external_lex_state = 2}, [502] = {.lex_state = 52, .external_lex_state = 2}, - [503] = {.lex_state = 54, .external_lex_state = 2}, + [503] = {.lex_state = 52, .external_lex_state = 2}, [504] = {.lex_state = 52, .external_lex_state = 2}, [505] = {.lex_state = 52, .external_lex_state = 2}, [506] = {.lex_state = 52, .external_lex_state = 2}, @@ -8068,8 +8035,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [569] = {.lex_state = 52, .external_lex_state = 2}, [570] = {.lex_state = 52, .external_lex_state = 2}, [571] = {.lex_state = 52, .external_lex_state = 2}, - [572] = {.lex_state = 53, .external_lex_state = 10}, - [573] = {.lex_state = 54, .external_lex_state = 2}, + [572] = {.lex_state = 52, .external_lex_state = 2}, + [573] = {.lex_state = 52, .external_lex_state = 2}, [574] = {.lex_state = 52, .external_lex_state = 2}, [575] = {.lex_state = 52, .external_lex_state = 2}, [576] = {.lex_state = 52, .external_lex_state = 2}, @@ -8083,9 +8050,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [584] = {.lex_state = 52, .external_lex_state = 2}, [585] = {.lex_state = 52, .external_lex_state = 2}, [586] = {.lex_state = 52, .external_lex_state = 2}, - [587] = {.lex_state = 52, .external_lex_state = 2}, - [588] = {.lex_state = 53, .external_lex_state = 11}, - [589] = {.lex_state = 54, .external_lex_state = 3}, + [587] = {.lex_state = 53, .external_lex_state = 10}, + [588] = {.lex_state = 52, .external_lex_state = 2}, + [589] = {.lex_state = 52, .external_lex_state = 2}, [590] = {.lex_state = 52, .external_lex_state = 2}, [591] = {.lex_state = 52, .external_lex_state = 2}, [592] = {.lex_state = 52, .external_lex_state = 2}, @@ -8100,216 +8067,216 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [601] = {.lex_state = 52, .external_lex_state = 2}, [602] = {.lex_state = 52, .external_lex_state = 2}, [603] = {.lex_state = 52, .external_lex_state = 2}, - [604] = {.lex_state = 52, .external_lex_state = 2}, - [605] = {.lex_state = 52, .external_lex_state = 2}, + [604] = {.lex_state = 7, .external_lex_state = 11}, + [605] = {.lex_state = 7, .external_lex_state = 11}, [606] = {.lex_state = 52, .external_lex_state = 2}, - [607] = {.lex_state = 53, .external_lex_state = 11}, - [608] = {.lex_state = 54, .external_lex_state = 3}, - [609] = {.lex_state = 52, .external_lex_state = 2}, + [607] = {.lex_state = 7, .external_lex_state = 11}, + [608] = {.lex_state = 7, .external_lex_state = 11}, + [609] = {.lex_state = 52, .external_lex_state = 3}, [610] = {.lex_state = 52, .external_lex_state = 2}, - [611] = {.lex_state = 7, .external_lex_state = 9}, - [612] = {.lex_state = 7, .external_lex_state = 9}, - [613] = {.lex_state = 54, .external_lex_state = 2}, + [611] = {.lex_state = 52, .external_lex_state = 2}, + [612] = {.lex_state = 7, .external_lex_state = 11}, + [613] = {.lex_state = 52, .external_lex_state = 3}, [614] = {.lex_state = 52, .external_lex_state = 3}, - [615] = {.lex_state = 52, .external_lex_state = 2}, - [616] = {.lex_state = 7, .external_lex_state = 9}, - [617] = {.lex_state = 7, .external_lex_state = 9}, - [618] = {.lex_state = 52, .external_lex_state = 3}, - [619] = {.lex_state = 52, .external_lex_state = 3}, - [620] = {.lex_state = 52, .external_lex_state = 3}, - [621] = {.lex_state = 7, .external_lex_state = 9}, - [622] = {.lex_state = 52, .external_lex_state = 2}, - [623] = {.lex_state = 52, .external_lex_state = 2}, - [624] = {.lex_state = 7, .external_lex_state = 9}, - [625] = {.lex_state = 52, .external_lex_state = 2}, - [626] = {.lex_state = 53, .external_lex_state = 10}, - [627] = {.lex_state = 53, .external_lex_state = 11}, - [628] = {.lex_state = 54, .external_lex_state = 3}, - [629] = {.lex_state = 52, .external_lex_state = 3}, - [630] = {.lex_state = 8, .external_lex_state = 9}, - [631] = {.lex_state = 8, .external_lex_state = 9}, - [632] = {.lex_state = 8, .external_lex_state = 9}, - [633] = {.lex_state = 8, .external_lex_state = 9}, - [634] = {.lex_state = 8, .external_lex_state = 9}, - [635] = {.lex_state = 8, .external_lex_state = 9}, - [636] = {.lex_state = 8, .external_lex_state = 9}, - [637] = {.lex_state = 8, .external_lex_state = 9}, - [638] = {.lex_state = 52, .external_lex_state = 2}, - [639] = {.lex_state = 8, .external_lex_state = 9}, - [640] = {.lex_state = 8, .external_lex_state = 9}, - [641] = {.lex_state = 8, .external_lex_state = 9}, - [642] = {.lex_state = 8, .external_lex_state = 9}, - [643] = {.lex_state = 8, .external_lex_state = 9}, - [644] = {.lex_state = 8, .external_lex_state = 9}, - [645] = {.lex_state = 8, .external_lex_state = 9}, - [646] = {.lex_state = 8, .external_lex_state = 9}, - [647] = {.lex_state = 8, .external_lex_state = 9}, - [648] = {.lex_state = 8, .external_lex_state = 9}, - [649] = {.lex_state = 8, .external_lex_state = 9}, - [650] = {.lex_state = 54, .external_lex_state = 2}, - [651] = {.lex_state = 53, .external_lex_state = 10}, - [652] = {.lex_state = 52, .external_lex_state = 6}, - [653] = {.lex_state = 53, .external_lex_state = 11}, - [654] = {.lex_state = 54, .external_lex_state = 2}, - [655] = {.lex_state = 52, .external_lex_state = 2}, - [656] = {.lex_state = 53, .external_lex_state = 11}, - [657] = {.lex_state = 54, .external_lex_state = 3}, - [658] = {.lex_state = 52, .external_lex_state = 2}, - [659] = {.lex_state = 54, .external_lex_state = 3}, - [660] = {.lex_state = 54, .external_lex_state = 3}, - [661] = {.lex_state = 54, .external_lex_state = 3}, - [662] = {.lex_state = 54, .external_lex_state = 3}, - [663] = {.lex_state = 52, .external_lex_state = 2}, - [664] = {.lex_state = 54, .external_lex_state = 3}, - [665] = {.lex_state = 53, .external_lex_state = 10}, - [666] = {.lex_state = 52, .external_lex_state = 3}, - [667] = {.lex_state = 52, .external_lex_state = 2}, - [668] = {.lex_state = 54, .external_lex_state = 2}, - [669] = {.lex_state = 54, .external_lex_state = 2}, - [670] = {.lex_state = 53, .external_lex_state = 10}, - [671] = {.lex_state = 53, .external_lex_state = 10}, - [672] = {.lex_state = 53, .external_lex_state = 10}, - [673] = {.lex_state = 53, .external_lex_state = 10}, - [674] = {.lex_state = 52, .external_lex_state = 3}, - [675] = {.lex_state = 53, .external_lex_state = 11}, - [676] = {.lex_state = 54, .external_lex_state = 2}, - [677] = {.lex_state = 53, .external_lex_state = 10}, - [678] = {.lex_state = 53, .external_lex_state = 10}, - [679] = {.lex_state = 54, .external_lex_state = 2}, - [680] = {.lex_state = 54, .external_lex_state = 2}, - [681] = {.lex_state = 54, .external_lex_state = 3}, - [682] = {.lex_state = 52, .external_lex_state = 2}, - [683] = {.lex_state = 53, .external_lex_state = 11}, - [684] = {.lex_state = 53, .external_lex_state = 11}, - [685] = {.lex_state = 52, .external_lex_state = 6}, - [686] = {.lex_state = 54, .external_lex_state = 3}, - [687] = {.lex_state = 53, .external_lex_state = 11}, - [688] = {.lex_state = 54, .external_lex_state = 2}, - [689] = {.lex_state = 53, .external_lex_state = 11}, - [690] = {.lex_state = 53, .external_lex_state = 11}, - [691] = {.lex_state = 53, .external_lex_state = 10}, - [692] = {.lex_state = 53, .external_lex_state = 10}, - [693] = {.lex_state = 54, .external_lex_state = 2}, - [694] = {.lex_state = 52, .external_lex_state = 3}, - [695] = {.lex_state = 53, .external_lex_state = 11}, - [696] = {.lex_state = 54, .external_lex_state = 3}, - [697] = {.lex_state = 52, .external_lex_state = 3}, - [698] = {.lex_state = 53, .external_lex_state = 11}, - [699] = {.lex_state = 53, .external_lex_state = 11}, + [615] = {.lex_state = 7, .external_lex_state = 11}, + [616] = {.lex_state = 52, .external_lex_state = 2}, + [617] = {.lex_state = 52, .external_lex_state = 3}, + [618] = {.lex_state = 53, .external_lex_state = 10}, + [619] = {.lex_state = 8, .external_lex_state = 11}, + [620] = {.lex_state = 53, .external_lex_state = 10}, + [621] = {.lex_state = 53, .external_lex_state = 9}, + [622] = {.lex_state = 53, .external_lex_state = 10}, + [623] = {.lex_state = 8, .external_lex_state = 11}, + [624] = {.lex_state = 8, .external_lex_state = 11}, + [625] = {.lex_state = 8, .external_lex_state = 11}, + [626] = {.lex_state = 8, .external_lex_state = 11}, + [627] = {.lex_state = 8, .external_lex_state = 11}, + [628] = {.lex_state = 8, .external_lex_state = 11}, + [629] = {.lex_state = 53, .external_lex_state = 9}, + [630] = {.lex_state = 53, .external_lex_state = 10}, + [631] = {.lex_state = 8, .external_lex_state = 11}, + [632] = {.lex_state = 8, .external_lex_state = 11}, + [633] = {.lex_state = 8, .external_lex_state = 11}, + [634] = {.lex_state = 53, .external_lex_state = 9}, + [635] = {.lex_state = 53, .external_lex_state = 9}, + [636] = {.lex_state = 53, .external_lex_state = 9}, + [637] = {.lex_state = 8, .external_lex_state = 11}, + [638] = {.lex_state = 8, .external_lex_state = 11}, + [639] = {.lex_state = 53, .external_lex_state = 10}, + [640] = {.lex_state = 53, .external_lex_state = 9}, + [641] = {.lex_state = 53, .external_lex_state = 9}, + [642] = {.lex_state = 53, .external_lex_state = 10}, + [643] = {.lex_state = 53, .external_lex_state = 10}, + [644] = {.lex_state = 53, .external_lex_state = 10}, + [645] = {.lex_state = 8, .external_lex_state = 11}, + [646] = {.lex_state = 53, .external_lex_state = 9}, + [647] = {.lex_state = 53, .external_lex_state = 9}, + [648] = {.lex_state = 53, .external_lex_state = 9}, + [649] = {.lex_state = 53, .external_lex_state = 9}, + [650] = {.lex_state = 8, .external_lex_state = 11}, + [651] = {.lex_state = 8, .external_lex_state = 11}, + [652] = {.lex_state = 53, .external_lex_state = 9}, + [653] = {.lex_state = 53, .external_lex_state = 10}, + [654] = {.lex_state = 53, .external_lex_state = 10}, + [655] = {.lex_state = 8, .external_lex_state = 11}, + [656] = {.lex_state = 53, .external_lex_state = 10}, + [657] = {.lex_state = 8, .external_lex_state = 11}, + [658] = {.lex_state = 53, .external_lex_state = 9}, + [659] = {.lex_state = 8, .external_lex_state = 11}, + [660] = {.lex_state = 53, .external_lex_state = 9}, + [661] = {.lex_state = 53, .external_lex_state = 10}, + [662] = {.lex_state = 8, .external_lex_state = 11}, + [663] = {.lex_state = 52, .external_lex_state = 3}, + [664] = {.lex_state = 53, .external_lex_state = 10}, + [665] = {.lex_state = 52, .external_lex_state = 2}, + [666] = {.lex_state = 53, .external_lex_state = 10}, + [667] = {.lex_state = 53, .external_lex_state = 10}, + [668] = {.lex_state = 53, .external_lex_state = 9}, + [669] = {.lex_state = 52, .external_lex_state = 3}, + [670] = {.lex_state = 52, .external_lex_state = 3}, + [671] = {.lex_state = 52, .external_lex_state = 3}, + [672] = {.lex_state = 52, .external_lex_state = 2}, + [673] = {.lex_state = 52, .external_lex_state = 6}, + [674] = {.lex_state = 52, .external_lex_state = 2}, + [675] = {.lex_state = 52, .external_lex_state = 3}, + [676] = {.lex_state = 52, .external_lex_state = 6}, + [677] = {.lex_state = 52, .external_lex_state = 3}, + [678] = {.lex_state = 52, .external_lex_state = 2}, + [679] = {.lex_state = 52, .external_lex_state = 2}, + [680] = {.lex_state = 52, .external_lex_state = 2}, + [681] = {.lex_state = 52, .external_lex_state = 2}, + [682] = {.lex_state = 52, .external_lex_state = 3}, + [683] = {.lex_state = 52, .external_lex_state = 2}, + [684] = {.lex_state = 52, .external_lex_state = 3}, + [685] = {.lex_state = 52, .external_lex_state = 3}, + [686] = {.lex_state = 52, .external_lex_state = 2}, + [687] = {.lex_state = 52, .external_lex_state = 2}, + [688] = {.lex_state = 52, .external_lex_state = 2}, + [689] = {.lex_state = 52, .external_lex_state = 2}, + [690] = {.lex_state = 52, .external_lex_state = 2}, + [691] = {.lex_state = 52, .external_lex_state = 3}, + [692] = {.lex_state = 52, .external_lex_state = 3}, + [693] = {.lex_state = 52, .external_lex_state = 3}, + [694] = {.lex_state = 52, .external_lex_state = 2}, + [695] = {.lex_state = 52, .external_lex_state = 3}, + [696] = {.lex_state = 52, .external_lex_state = 2}, + [697] = {.lex_state = 52, .external_lex_state = 2}, + [698] = {.lex_state = 52, .external_lex_state = 3}, + [699] = {.lex_state = 52, .external_lex_state = 2}, [700] = {.lex_state = 52, .external_lex_state = 3}, - [701] = {.lex_state = 53, .external_lex_state = 10}, + [701] = {.lex_state = 52, .external_lex_state = 3}, [702] = {.lex_state = 52, .external_lex_state = 3}, [703] = {.lex_state = 52, .external_lex_state = 3}, - [704] = {.lex_state = 52, .external_lex_state = 3}, + [704] = {.lex_state = 52, .external_lex_state = 2}, [705] = {.lex_state = 52, .external_lex_state = 2}, - [706] = {.lex_state = 52, .external_lex_state = 2}, + [706] = {.lex_state = 52, .external_lex_state = 3}, [707] = {.lex_state = 52, .external_lex_state = 2}, - [708] = {.lex_state = 52, .external_lex_state = 3}, + [708] = {.lex_state = 52, .external_lex_state = 8}, [709] = {.lex_state = 52, .external_lex_state = 3}, [710] = {.lex_state = 52, .external_lex_state = 2}, - [711] = {.lex_state = 52, .external_lex_state = 2}, - [712] = {.lex_state = 52, .external_lex_state = 2}, + [711] = {.lex_state = 52, .external_lex_state = 3}, + [712] = {.lex_state = 52, .external_lex_state = 8}, [713] = {.lex_state = 52, .external_lex_state = 2}, [714] = {.lex_state = 52, .external_lex_state = 3}, [715] = {.lex_state = 52, .external_lex_state = 2}, [716] = {.lex_state = 52, .external_lex_state = 2}, [717] = {.lex_state = 52, .external_lex_state = 3}, [718] = {.lex_state = 52, .external_lex_state = 3}, - [719] = {.lex_state = 52, .external_lex_state = 2}, - [720] = {.lex_state = 52, .external_lex_state = 3}, + [719] = {.lex_state = 52, .external_lex_state = 3}, + [720] = {.lex_state = 52, .external_lex_state = 2}, [721] = {.lex_state = 52, .external_lex_state = 2}, - [722] = {.lex_state = 52, .external_lex_state = 3}, - [723] = {.lex_state = 52, .external_lex_state = 3}, + [722] = {.lex_state = 52, .external_lex_state = 2}, + [723] = {.lex_state = 52, .external_lex_state = 2}, [724] = {.lex_state = 52, .external_lex_state = 2}, - [725] = {.lex_state = 52, .external_lex_state = 3}, - [726] = {.lex_state = 52, .external_lex_state = 3}, - [727] = {.lex_state = 52, .external_lex_state = 8}, - [728] = {.lex_state = 52, .external_lex_state = 8}, + [725] = {.lex_state = 52, .external_lex_state = 2}, + [726] = {.lex_state = 52, .external_lex_state = 2}, + [727] = {.lex_state = 52, .external_lex_state = 3}, + [728] = {.lex_state = 52, .external_lex_state = 2}, [729] = {.lex_state = 52, .external_lex_state = 2}, [730] = {.lex_state = 52, .external_lex_state = 2}, [731] = {.lex_state = 52, .external_lex_state = 2}, - [732] = {.lex_state = 52, .external_lex_state = 2}, + [732] = {.lex_state = 52, .external_lex_state = 8}, [733] = {.lex_state = 52, .external_lex_state = 2}, - [734] = {.lex_state = 52, .external_lex_state = 3}, - [735] = {.lex_state = 52, .external_lex_state = 3}, + [734] = {.lex_state = 52, .external_lex_state = 2}, + [735] = {.lex_state = 52, .external_lex_state = 2}, [736] = {.lex_state = 52, .external_lex_state = 2}, [737] = {.lex_state = 52, .external_lex_state = 2}, [738] = {.lex_state = 52, .external_lex_state = 2}, [739] = {.lex_state = 52, .external_lex_state = 2}, [740] = {.lex_state = 52, .external_lex_state = 2}, [741] = {.lex_state = 52, .external_lex_state = 2}, - [742] = {.lex_state = 52, .external_lex_state = 2}, - [743] = {.lex_state = 52, .external_lex_state = 2}, + [742] = {.lex_state = 52, .external_lex_state = 3}, + [743] = {.lex_state = 52, .external_lex_state = 3}, [744] = {.lex_state = 52, .external_lex_state = 2}, - [745] = {.lex_state = 52, .external_lex_state = 3}, - [746] = {.lex_state = 52, .external_lex_state = 3}, + [745] = {.lex_state = 52, .external_lex_state = 2}, + [746] = {.lex_state = 52, .external_lex_state = 2}, [747] = {.lex_state = 52, .external_lex_state = 2}, [748] = {.lex_state = 52, .external_lex_state = 2}, [749] = {.lex_state = 52, .external_lex_state = 2}, [750] = {.lex_state = 52, .external_lex_state = 2}, - [751] = {.lex_state = 52, .external_lex_state = 3}, + [751] = {.lex_state = 52, .external_lex_state = 2}, [752] = {.lex_state = 52, .external_lex_state = 2}, - [753] = {.lex_state = 52, .external_lex_state = 3}, - [754] = {.lex_state = 52, .external_lex_state = 3}, + [753] = {.lex_state = 52, .external_lex_state = 2}, + [754] = {.lex_state = 52, .external_lex_state = 2}, [755] = {.lex_state = 52, .external_lex_state = 2}, - [756] = {.lex_state = 52, .external_lex_state = 3}, - [757] = {.lex_state = 52, .external_lex_state = 3}, - [758] = {.lex_state = 52, .external_lex_state = 3}, - [759] = {.lex_state = 52, .external_lex_state = 3}, - [760] = {.lex_state = 52, .external_lex_state = 3}, - [761] = {.lex_state = 52, .external_lex_state = 3}, - [762] = {.lex_state = 52, .external_lex_state = 3}, - [763] = {.lex_state = 52, .external_lex_state = 3}, - [764] = {.lex_state = 52, .external_lex_state = 3}, - [765] = {.lex_state = 52, .external_lex_state = 2}, - [766] = {.lex_state = 52, .external_lex_state = 3}, + [756] = {.lex_state = 52, .external_lex_state = 2}, + [757] = {.lex_state = 52, .external_lex_state = 2}, + [758] = {.lex_state = 52, .external_lex_state = 2}, + [759] = {.lex_state = 52, .external_lex_state = 2}, + [760] = {.lex_state = 52, .external_lex_state = 2}, + [761] = {.lex_state = 52, .external_lex_state = 2}, + [762] = {.lex_state = 52, .external_lex_state = 2}, + [763] = {.lex_state = 52, .external_lex_state = 2}, + [764] = {.lex_state = 52, .external_lex_state = 2}, + [765] = {.lex_state = 52, .external_lex_state = 3}, + [766] = {.lex_state = 52, .external_lex_state = 2}, [767] = {.lex_state = 52, .external_lex_state = 2}, - [768] = {.lex_state = 52, .external_lex_state = 2}, - [769] = {.lex_state = 52, .external_lex_state = 8}, + [768] = {.lex_state = 52, .external_lex_state = 3}, + [769] = {.lex_state = 52, .external_lex_state = 2}, [770] = {.lex_state = 52, .external_lex_state = 2}, [771] = {.lex_state = 52, .external_lex_state = 2}, [772] = {.lex_state = 52, .external_lex_state = 2}, - [773] = {.lex_state = 52, .external_lex_state = 2}, - [774] = {.lex_state = 52, .external_lex_state = 3}, - [775] = {.lex_state = 52, .external_lex_state = 3}, + [773] = {.lex_state = 52, .external_lex_state = 3}, + [774] = {.lex_state = 52, .external_lex_state = 2}, + [775] = {.lex_state = 52, .external_lex_state = 7}, [776] = {.lex_state = 52, .external_lex_state = 2}, [777] = {.lex_state = 52, .external_lex_state = 2}, [778] = {.lex_state = 52, .external_lex_state = 2}, - [779] = {.lex_state = 52, .external_lex_state = 2}, - [780] = {.lex_state = 52, .external_lex_state = 3}, - [781] = {.lex_state = 52, .external_lex_state = 2}, + [779] = {.lex_state = 52, .external_lex_state = 7}, + [780] = {.lex_state = 52, .external_lex_state = 2}, + [781] = {.lex_state = 52, .external_lex_state = 3}, [782] = {.lex_state = 52, .external_lex_state = 3}, - [783] = {.lex_state = 52, .external_lex_state = 2}, + [783] = {.lex_state = 52, .external_lex_state = 3}, [784] = {.lex_state = 52, .external_lex_state = 2}, - [785] = {.lex_state = 52, .external_lex_state = 2}, + [785] = {.lex_state = 52, .external_lex_state = 3}, [786] = {.lex_state = 52, .external_lex_state = 3}, - [787] = {.lex_state = 52, .external_lex_state = 2}, - [788] = {.lex_state = 52, .external_lex_state = 2}, + [787] = {.lex_state = 52, .external_lex_state = 3}, + [788] = {.lex_state = 52, .external_lex_state = 3}, [789] = {.lex_state = 52, .external_lex_state = 3}, [790] = {.lex_state = 52, .external_lex_state = 3}, - [791] = {.lex_state = 52, .external_lex_state = 2}, - [792] = {.lex_state = 52, .external_lex_state = 2}, - [793] = {.lex_state = 52, .external_lex_state = 3}, - [794] = {.lex_state = 52, .external_lex_state = 2}, - [795] = {.lex_state = 52, .external_lex_state = 2}, - [796] = {.lex_state = 52, .external_lex_state = 3}, + [791] = {.lex_state = 52, .external_lex_state = 3}, + [792] = {.lex_state = 52, .external_lex_state = 3}, + [793] = {.lex_state = 52, .external_lex_state = 2}, + [794] = {.lex_state = 52, .external_lex_state = 3}, + [795] = {.lex_state = 52, .external_lex_state = 3}, + [796] = {.lex_state = 52, .external_lex_state = 2}, [797] = {.lex_state = 52, .external_lex_state = 3}, [798] = {.lex_state = 52, .external_lex_state = 3}, [799] = {.lex_state = 52, .external_lex_state = 3}, - [800] = {.lex_state = 52, .external_lex_state = 2}, + [800] = {.lex_state = 52, .external_lex_state = 3}, [801] = {.lex_state = 52, .external_lex_state = 3}, - [802] = {.lex_state = 52, .external_lex_state = 2}, + [802] = {.lex_state = 52, .external_lex_state = 3}, [803] = {.lex_state = 52, .external_lex_state = 3}, - [804] = {.lex_state = 52, .external_lex_state = 7}, + [804] = {.lex_state = 52, .external_lex_state = 3}, [805] = {.lex_state = 52, .external_lex_state = 3}, [806] = {.lex_state = 52, .external_lex_state = 3}, - [807] = {.lex_state = 52, .external_lex_state = 2}, - [808] = {.lex_state = 52, .external_lex_state = 2}, - [809] = {.lex_state = 52, .external_lex_state = 2}, - [810] = {.lex_state = 52, .external_lex_state = 7}, + [807] = {.lex_state = 52, .external_lex_state = 3}, + [808] = {.lex_state = 52, .external_lex_state = 3}, + [809] = {.lex_state = 52, .external_lex_state = 3}, + [810] = {.lex_state = 52, .external_lex_state = 3}, [811] = {.lex_state = 52, .external_lex_state = 3}, [812] = {.lex_state = 52, .external_lex_state = 3}, - [813] = {.lex_state = 52, .external_lex_state = 2}, + [813] = {.lex_state = 52, .external_lex_state = 3}, [814] = {.lex_state = 52, .external_lex_state = 3}, [815] = {.lex_state = 52, .external_lex_state = 3}, [816] = {.lex_state = 52, .external_lex_state = 3}, @@ -8317,33 +8284,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [818] = {.lex_state = 52, .external_lex_state = 3}, [819] = {.lex_state = 52, .external_lex_state = 2}, [820] = {.lex_state = 52, .external_lex_state = 3}, - [821] = {.lex_state = 52, .external_lex_state = 3}, + [821] = {.lex_state = 52, .external_lex_state = 2}, [822] = {.lex_state = 52, .external_lex_state = 3}, - [823] = {.lex_state = 52, .external_lex_state = 2}, - [824] = {.lex_state = 52, .external_lex_state = 3}, + [823] = {.lex_state = 52, .external_lex_state = 3}, + [824] = {.lex_state = 52, .external_lex_state = 2}, [825] = {.lex_state = 52, .external_lex_state = 3}, [826] = {.lex_state = 52, .external_lex_state = 2}, [827] = {.lex_state = 52, .external_lex_state = 2}, - [828] = {.lex_state = 52, .external_lex_state = 2}, - [829] = {.lex_state = 52, .external_lex_state = 2}, + [828] = {.lex_state = 52, .external_lex_state = 3}, + [829] = {.lex_state = 52, .external_lex_state = 3}, [830] = {.lex_state = 52, .external_lex_state = 3}, - [831] = {.lex_state = 52, .external_lex_state = 2}, + [831] = {.lex_state = 52, .external_lex_state = 3}, [832] = {.lex_state = 52, .external_lex_state = 3}, - [833] = {.lex_state = 52, .external_lex_state = 2}, - [834] = {.lex_state = 52, .external_lex_state = 3}, - [835] = {.lex_state = 52, .external_lex_state = 3}, - [836] = {.lex_state = 52, .external_lex_state = 3}, - [837] = {.lex_state = 52, .external_lex_state = 8}, - [838] = {.lex_state = 52, .external_lex_state = 3}, - [839] = {.lex_state = 52, .external_lex_state = 3}, + [833] = {.lex_state = 52, .external_lex_state = 3}, + [834] = {.lex_state = 52, .external_lex_state = 2}, + [835] = {.lex_state = 52, .external_lex_state = 2}, + [836] = {.lex_state = 52, .external_lex_state = 8}, + [837] = {.lex_state = 52, .external_lex_state = 2}, + [838] = {.lex_state = 52, .external_lex_state = 2}, + [839] = {.lex_state = 52, .external_lex_state = 2}, [840] = {.lex_state = 52, .external_lex_state = 2}, [841] = {.lex_state = 52, .external_lex_state = 2}, [842] = {.lex_state = 52, .external_lex_state = 2}, - [843] = {.lex_state = 52, .external_lex_state = 2}, - [844] = {.lex_state = 52, .external_lex_state = 3}, - [845] = {.lex_state = 52, .external_lex_state = 2}, - [846] = {.lex_state = 52, .external_lex_state = 3}, - [847] = {.lex_state = 52, .external_lex_state = 3}, + [843] = {.lex_state = 52, .external_lex_state = 8}, + [844] = {.lex_state = 52, .external_lex_state = 2}, + [845] = {.lex_state = 13, .external_lex_state = 11}, + [846] = {.lex_state = 52, .external_lex_state = 2}, + [847] = {.lex_state = 52, .external_lex_state = 2}, [848] = {.lex_state = 52, .external_lex_state = 2}, [849] = {.lex_state = 52, .external_lex_state = 2}, [850] = {.lex_state = 52, .external_lex_state = 2}, @@ -8353,10 +8320,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [854] = {.lex_state = 52, .external_lex_state = 2}, [855] = {.lex_state = 52, .external_lex_state = 2}, [856] = {.lex_state = 52, .external_lex_state = 2}, - [857] = {.lex_state = 52, .external_lex_state = 2}, + [857] = {.lex_state = 13, .external_lex_state = 12}, [858] = {.lex_state = 52, .external_lex_state = 2}, [859] = {.lex_state = 52, .external_lex_state = 2}, - [860] = {.lex_state = 52, .external_lex_state = 8}, + [860] = {.lex_state = 52, .external_lex_state = 2}, [861] = {.lex_state = 52, .external_lex_state = 2}, [862] = {.lex_state = 52, .external_lex_state = 2}, [863] = {.lex_state = 52, .external_lex_state = 2}, @@ -8366,7 +8333,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [867] = {.lex_state = 52, .external_lex_state = 2}, [868] = {.lex_state = 52, .external_lex_state = 2}, [869] = {.lex_state = 52, .external_lex_state = 2}, - [870] = {.lex_state = 13, .external_lex_state = 9}, + [870] = {.lex_state = 52, .external_lex_state = 2}, [871] = {.lex_state = 52, .external_lex_state = 2}, [872] = {.lex_state = 52, .external_lex_state = 2}, [873] = {.lex_state = 52, .external_lex_state = 2}, @@ -8389,7 +8356,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [890] = {.lex_state = 52, .external_lex_state = 2}, [891] = {.lex_state = 52, .external_lex_state = 2}, [892] = {.lex_state = 52, .external_lex_state = 2}, - [893] = {.lex_state = 52, .external_lex_state = 2}, + [893] = {.lex_state = 13, .external_lex_state = 13}, [894] = {.lex_state = 52, .external_lex_state = 2}, [895] = {.lex_state = 52, .external_lex_state = 2}, [896] = {.lex_state = 52, .external_lex_state = 2}, @@ -8397,7 +8364,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [898] = {.lex_state = 52, .external_lex_state = 2}, [899] = {.lex_state = 52, .external_lex_state = 2}, [900] = {.lex_state = 52, .external_lex_state = 2}, - [901] = {.lex_state = 52, .external_lex_state = 2}, + [901] = {.lex_state = 13, .external_lex_state = 13}, [902] = {.lex_state = 52, .external_lex_state = 2}, [903] = {.lex_state = 52, .external_lex_state = 2}, [904] = {.lex_state = 52, .external_lex_state = 2}, @@ -8423,8 +8390,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [924] = {.lex_state = 52, .external_lex_state = 2}, [925] = {.lex_state = 52, .external_lex_state = 2}, [926] = {.lex_state = 52, .external_lex_state = 2}, - [927] = {.lex_state = 13, .external_lex_state = 12}, - [928] = {.lex_state = 13, .external_lex_state = 13}, + [927] = {.lex_state = 52, .external_lex_state = 2}, + [928] = {.lex_state = 52, .external_lex_state = 2}, [929] = {.lex_state = 52, .external_lex_state = 2}, [930] = {.lex_state = 52, .external_lex_state = 2}, [931] = {.lex_state = 52, .external_lex_state = 2}, @@ -8445,313 +8412,313 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [946] = {.lex_state = 52, .external_lex_state = 2}, [947] = {.lex_state = 52, .external_lex_state = 2}, [948] = {.lex_state = 52, .external_lex_state = 2}, - [949] = {.lex_state = 52, .external_lex_state = 2}, - [950] = {.lex_state = 52, .external_lex_state = 2}, - [951] = {.lex_state = 52, .external_lex_state = 2}, - [952] = {.lex_state = 52, .external_lex_state = 2}, - [953] = {.lex_state = 52, .external_lex_state = 2}, - [954] = {.lex_state = 52, .external_lex_state = 2}, - [955] = {.lex_state = 52, .external_lex_state = 2}, - [956] = {.lex_state = 52, .external_lex_state = 2}, - [957] = {.lex_state = 52, .external_lex_state = 2}, - [958] = {.lex_state = 52, .external_lex_state = 2}, - [959] = {.lex_state = 52, .external_lex_state = 2}, - [960] = {.lex_state = 52, .external_lex_state = 2}, - [961] = {.lex_state = 52, .external_lex_state = 2}, - [962] = {.lex_state = 52, .external_lex_state = 2}, - [963] = {.lex_state = 52, .external_lex_state = 2}, - [964] = {.lex_state = 13, .external_lex_state = 12}, - [965] = {.lex_state = 52, .external_lex_state = 2}, - [966] = {.lex_state = 13, .external_lex_state = 4}, - [967] = {.lex_state = 13, .external_lex_state = 14}, - [968] = {.lex_state = 13, .external_lex_state = 9}, - [969] = {.lex_state = 13, .external_lex_state = 4}, - [970] = {.lex_state = 13, .external_lex_state = 4}, - [971] = {.lex_state = 13, .external_lex_state = 15}, - [972] = {.lex_state = 13, .external_lex_state = 14}, - [973] = {.lex_state = 13, .external_lex_state = 9}, - [974] = {.lex_state = 13, .external_lex_state = 9}, - [975] = {.lex_state = 13, .external_lex_state = 9}, - [976] = {.lex_state = 13, .external_lex_state = 9}, - [977] = {.lex_state = 13, .external_lex_state = 7}, - [978] = {.lex_state = 13, .external_lex_state = 7}, - [979] = {.lex_state = 13, .external_lex_state = 7}, - [980] = {.lex_state = 13, .external_lex_state = 6}, - [981] = {.lex_state = 13, .external_lex_state = 6}, - [982] = {.lex_state = 13, .external_lex_state = 6}, - [983] = {.lex_state = 13, .external_lex_state = 6}, - [984] = {.lex_state = 13, .external_lex_state = 6}, - [985] = {.lex_state = 13, .external_lex_state = 6}, - [986] = {.lex_state = 13, .external_lex_state = 9}, - [987] = {.lex_state = 13, .external_lex_state = 9}, - [988] = {.lex_state = 13, .external_lex_state = 9}, - [989] = {.lex_state = 13, .external_lex_state = 9}, - [990] = {.lex_state = 13, .external_lex_state = 9}, - [991] = {.lex_state = 13, .external_lex_state = 9}, - [992] = {.lex_state = 13, .external_lex_state = 13}, - [993] = {.lex_state = 13, .external_lex_state = 12}, - [994] = {.lex_state = 13, .external_lex_state = 2}, - [995] = {.lex_state = 13, .external_lex_state = 2}, - [996] = {.lex_state = 14, .external_lex_state = 13}, - [997] = {.lex_state = 14, .external_lex_state = 13}, - [998] = {.lex_state = 13, .external_lex_state = 12}, + [949] = {.lex_state = 13, .external_lex_state = 11}, + [950] = {.lex_state = 13, .external_lex_state = 14}, + [951] = {.lex_state = 13, .external_lex_state = 4}, + [952] = {.lex_state = 13, .external_lex_state = 15}, + [953] = {.lex_state = 13, .external_lex_state = 14}, + [954] = {.lex_state = 13, .external_lex_state = 4}, + [955] = {.lex_state = 13, .external_lex_state = 4}, + [956] = {.lex_state = 13, .external_lex_state = 11}, + [957] = {.lex_state = 13, .external_lex_state = 11}, + [958] = {.lex_state = 13, .external_lex_state = 6}, + [959] = {.lex_state = 13, .external_lex_state = 11}, + [960] = {.lex_state = 13, .external_lex_state = 6}, + [961] = {.lex_state = 13, .external_lex_state = 7}, + [962] = {.lex_state = 13, .external_lex_state = 11}, + [963] = {.lex_state = 13, .external_lex_state = 12}, + [964] = {.lex_state = 13, .external_lex_state = 6}, + [965] = {.lex_state = 13, .external_lex_state = 11}, + [966] = {.lex_state = 13, .external_lex_state = 11}, + [967] = {.lex_state = 13, .external_lex_state = 11}, + [968] = {.lex_state = 13, .external_lex_state = 7}, + [969] = {.lex_state = 13, .external_lex_state = 7}, + [970] = {.lex_state = 13, .external_lex_state = 6}, + [971] = {.lex_state = 13, .external_lex_state = 6}, + [972] = {.lex_state = 13, .external_lex_state = 11}, + [973] = {.lex_state = 13, .external_lex_state = 11}, + [974] = {.lex_state = 13, .external_lex_state = 11}, + [975] = {.lex_state = 13, .external_lex_state = 6}, + [976] = {.lex_state = 13, .external_lex_state = 4}, + [977] = {.lex_state = 13, .external_lex_state = 13}, + [978] = {.lex_state = 13, .external_lex_state = 8}, + [979] = {.lex_state = 13, .external_lex_state = 13}, + [980] = {.lex_state = 14, .external_lex_state = 11}, + [981] = {.lex_state = 13, .external_lex_state = 8}, + [982] = {.lex_state = 13, .external_lex_state = 12}, + [983] = {.lex_state = 13, .external_lex_state = 13}, + [984] = {.lex_state = 13, .external_lex_state = 2}, + [985] = {.lex_state = 13, .external_lex_state = 8}, + [986] = {.lex_state = 13, .external_lex_state = 4}, + [987] = {.lex_state = 13, .external_lex_state = 13}, + [988] = {.lex_state = 13, .external_lex_state = 13}, + [989] = {.lex_state = 13, .external_lex_state = 13}, + [990] = {.lex_state = 13, .external_lex_state = 13}, + [991] = {.lex_state = 13, .external_lex_state = 12}, + [992] = {.lex_state = 13, .external_lex_state = 8}, + [993] = {.lex_state = 13, .external_lex_state = 13}, + [994] = {.lex_state = 13, .external_lex_state = 14}, + [995] = {.lex_state = 13, .external_lex_state = 8}, + [996] = {.lex_state = 13, .external_lex_state = 13}, + [997] = {.lex_state = 13, .external_lex_state = 12}, + [998] = {.lex_state = 13, .external_lex_state = 8}, [999] = {.lex_state = 13, .external_lex_state = 12}, - [1000] = {.lex_state = 14, .external_lex_state = 9}, - [1001] = {.lex_state = 13, .external_lex_state = 4}, - [1002] = {.lex_state = 13, .external_lex_state = 12}, - [1003] = {.lex_state = 13, .external_lex_state = 12}, - [1004] = {.lex_state = 13, .external_lex_state = 12}, - [1005] = {.lex_state = 13, .external_lex_state = 12}, - [1006] = {.lex_state = 13, .external_lex_state = 12}, + [1000] = {.lex_state = 13, .external_lex_state = 13}, + [1001] = {.lex_state = 13, .external_lex_state = 12}, + [1002] = {.lex_state = 14, .external_lex_state = 12}, + [1003] = {.lex_state = 13, .external_lex_state = 13}, + [1004] = {.lex_state = 13, .external_lex_state = 13}, + [1005] = {.lex_state = 13, .external_lex_state = 13}, + [1006] = {.lex_state = 13, .external_lex_state = 2}, [1007] = {.lex_state = 13, .external_lex_state = 12}, - [1008] = {.lex_state = 13, .external_lex_state = 12}, + [1008] = {.lex_state = 13, .external_lex_state = 13}, [1009] = {.lex_state = 13, .external_lex_state = 12}, [1010] = {.lex_state = 13, .external_lex_state = 13}, [1011] = {.lex_state = 13, .external_lex_state = 13}, - [1012] = {.lex_state = 14, .external_lex_state = 9}, - [1013] = {.lex_state = 13, .external_lex_state = 12}, - [1014] = {.lex_state = 13, .external_lex_state = 12}, - [1015] = {.lex_state = 13, .external_lex_state = 4}, + [1012] = {.lex_state = 14, .external_lex_state = 11}, + [1013] = {.lex_state = 13, .external_lex_state = 2}, + [1014] = {.lex_state = 13, .external_lex_state = 13}, + [1015] = {.lex_state = 13, .external_lex_state = 13}, [1016] = {.lex_state = 13, .external_lex_state = 12}, [1017] = {.lex_state = 13, .external_lex_state = 13}, - [1018] = {.lex_state = 13, .external_lex_state = 12}, - [1019] = {.lex_state = 13, .external_lex_state = 12}, - [1020] = {.lex_state = 13, .external_lex_state = 8}, - [1021] = {.lex_state = 13, .external_lex_state = 12}, - [1022] = {.lex_state = 13, .external_lex_state = 12}, + [1018] = {.lex_state = 14, .external_lex_state = 11}, + [1019] = {.lex_state = 13, .external_lex_state = 13}, + [1020] = {.lex_state = 13, .external_lex_state = 13}, + [1021] = {.lex_state = 13, .external_lex_state = 13}, + [1022] = {.lex_state = 13, .external_lex_state = 13}, [1023] = {.lex_state = 13, .external_lex_state = 12}, [1024] = {.lex_state = 13, .external_lex_state = 12}, - [1025] = {.lex_state = 13, .external_lex_state = 2}, - [1026] = {.lex_state = 14, .external_lex_state = 9}, - [1027] = {.lex_state = 13, .external_lex_state = 12}, - [1028] = {.lex_state = 13, .external_lex_state = 12}, - [1029] = {.lex_state = 13, .external_lex_state = 12}, - [1030] = {.lex_state = 13, .external_lex_state = 12}, - [1031] = {.lex_state = 13, .external_lex_state = 12}, - [1032] = {.lex_state = 13, .external_lex_state = 12}, - [1033] = {.lex_state = 13, .external_lex_state = 14}, - [1034] = {.lex_state = 13, .external_lex_state = 8}, - [1035] = {.lex_state = 13, .external_lex_state = 8}, - [1036] = {.lex_state = 13, .external_lex_state = 8}, - [1037] = {.lex_state = 13, .external_lex_state = 13}, - [1038] = {.lex_state = 13, .external_lex_state = 13}, - [1039] = {.lex_state = 13, .external_lex_state = 13}, - [1040] = {.lex_state = 13, .external_lex_state = 13}, - [1041] = {.lex_state = 13, .external_lex_state = 13}, - [1042] = {.lex_state = 13, .external_lex_state = 13}, - [1043] = {.lex_state = 13, .external_lex_state = 13}, - [1044] = {.lex_state = 13, .external_lex_state = 8}, - [1045] = {.lex_state = 13, .external_lex_state = 13}, - [1046] = {.lex_state = 13, .external_lex_state = 8}, - [1047] = {.lex_state = 13, .external_lex_state = 12}, - [1048] = {.lex_state = 13, .external_lex_state = 12}, - [1049] = {.lex_state = 13, .external_lex_state = 9}, - [1050] = {.lex_state = 13, .external_lex_state = 9}, - [1051] = {.lex_state = 14, .external_lex_state = 12}, - [1052] = {.lex_state = 13, .external_lex_state = 15}, - [1053] = {.lex_state = 13, .external_lex_state = 15}, - [1054] = {.lex_state = 13, .external_lex_state = 7}, - [1055] = {.lex_state = 13, .external_lex_state = 14}, - [1056] = {.lex_state = 14, .external_lex_state = 12}, - [1057] = {.lex_state = 14, .external_lex_state = 12}, - [1058] = {.lex_state = 14, .external_lex_state = 12}, - [1059] = {.lex_state = 13, .external_lex_state = 9}, - [1060] = {.lex_state = 13, .external_lex_state = 15}, - [1061] = {.lex_state = 13, .external_lex_state = 15}, - [1062] = {.lex_state = 13, .external_lex_state = 15}, - [1063] = {.lex_state = 13, .external_lex_state = 15}, - [1064] = {.lex_state = 13, .external_lex_state = 15}, - [1065] = {.lex_state = 13, .external_lex_state = 6}, - [1066] = {.lex_state = 14, .external_lex_state = 13}, - [1067] = {.lex_state = 14, .external_lex_state = 13}, - [1068] = {.lex_state = 14, .external_lex_state = 13}, - [1069] = {.lex_state = 13, .external_lex_state = 15}, - [1070] = {.lex_state = 13, .external_lex_state = 15}, + [1025] = {.lex_state = 13, .external_lex_state = 12}, + [1026] = {.lex_state = 13, .external_lex_state = 13}, + [1027] = {.lex_state = 13, .external_lex_state = 13}, + [1028] = {.lex_state = 13, .external_lex_state = 13}, + [1029] = {.lex_state = 13, .external_lex_state = 13}, + [1030] = {.lex_state = 13, .external_lex_state = 13}, + [1031] = {.lex_state = 14, .external_lex_state = 12}, + [1032] = {.lex_state = 14, .external_lex_state = 14}, + [1033] = {.lex_state = 13, .external_lex_state = 11}, + [1034] = {.lex_state = 13, .external_lex_state = 11}, + [1035] = {.lex_state = 13, .external_lex_state = 11}, + [1036] = {.lex_state = 13, .external_lex_state = 11}, + [1037] = {.lex_state = 13, .external_lex_state = 11}, + [1038] = {.lex_state = 14, .external_lex_state = 13}, + [1039] = {.lex_state = 13, .external_lex_state = 11}, + [1040] = {.lex_state = 13, .external_lex_state = 11}, + [1041] = {.lex_state = 13, .external_lex_state = 11}, + [1042] = {.lex_state = 14, .external_lex_state = 14}, + [1043] = {.lex_state = 14, .external_lex_state = 14}, + [1044] = {.lex_state = 13, .external_lex_state = 11}, + [1045] = {.lex_state = 14, .external_lex_state = 12}, + [1046] = {.lex_state = 13, .external_lex_state = 7}, + [1047] = {.lex_state = 13, .external_lex_state = 11}, + [1048] = {.lex_state = 13, .external_lex_state = 7}, + [1049] = {.lex_state = 14, .external_lex_state = 11}, + [1050] = {.lex_state = 14, .external_lex_state = 11}, + [1051] = {.lex_state = 13, .external_lex_state = 14}, + [1052] = {.lex_state = 13, .external_lex_state = 6}, + [1053] = {.lex_state = 14, .external_lex_state = 12}, + [1054] = {.lex_state = 14, .external_lex_state = 12}, + [1055] = {.lex_state = 14, .external_lex_state = 12}, + [1056] = {.lex_state = 13, .external_lex_state = 14}, + [1057] = {.lex_state = 13, .external_lex_state = 11}, + [1058] = {.lex_state = 14, .external_lex_state = 14}, + [1059] = {.lex_state = 14, .external_lex_state = 14}, + [1060] = {.lex_state = 13, .external_lex_state = 11}, + [1061] = {.lex_state = 13, .external_lex_state = 11}, + [1062] = {.lex_state = 13, .external_lex_state = 6}, + [1063] = {.lex_state = 13, .external_lex_state = 11}, + [1064] = {.lex_state = 14, .external_lex_state = 12}, + [1065] = {.lex_state = 14, .external_lex_state = 12}, + [1066] = {.lex_state = 13, .external_lex_state = 11}, + [1067] = {.lex_state = 13, .external_lex_state = 11}, + [1068] = {.lex_state = 13, .external_lex_state = 11}, + [1069] = {.lex_state = 13, .external_lex_state = 6}, + [1070] = {.lex_state = 13, .external_lex_state = 14}, [1071] = {.lex_state = 13, .external_lex_state = 14}, - [1072] = {.lex_state = 13, .external_lex_state = 15}, - [1073] = {.lex_state = 13, .external_lex_state = 9}, - [1074] = {.lex_state = 13, .external_lex_state = 6}, - [1075] = {.lex_state = 13, .external_lex_state = 9}, - [1076] = {.lex_state = 13, .external_lex_state = 9}, - [1077] = {.lex_state = 13, .external_lex_state = 9}, - [1078] = {.lex_state = 13, .external_lex_state = 9}, - [1079] = {.lex_state = 13, .external_lex_state = 9}, - [1080] = {.lex_state = 13, .external_lex_state = 9}, - [1081] = {.lex_state = 13, .external_lex_state = 9}, - [1082] = {.lex_state = 14, .external_lex_state = 12}, - [1083] = {.lex_state = 13, .external_lex_state = 9}, - [1084] = {.lex_state = 13, .external_lex_state = 9}, - [1085] = {.lex_state = 13, .external_lex_state = 9}, - [1086] = {.lex_state = 14, .external_lex_state = 14}, - [1087] = {.lex_state = 14, .external_lex_state = 14}, - [1088] = {.lex_state = 13, .external_lex_state = 14}, - [1089] = {.lex_state = 13, .external_lex_state = 9}, + [1072] = {.lex_state = 13, .external_lex_state = 6}, + [1073] = {.lex_state = 13, .external_lex_state = 14}, + [1074] = {.lex_state = 13, .external_lex_state = 14}, + [1075] = {.lex_state = 13, .external_lex_state = 14}, + [1076] = {.lex_state = 13, .external_lex_state = 14}, + [1077] = {.lex_state = 13, .external_lex_state = 14}, + [1078] = {.lex_state = 13, .external_lex_state = 14}, + [1079] = {.lex_state = 13, .external_lex_state = 14}, + [1080] = {.lex_state = 13, .external_lex_state = 14}, + [1081] = {.lex_state = 13, .external_lex_state = 7}, + [1082] = {.lex_state = 14, .external_lex_state = 13}, + [1083] = {.lex_state = 14, .external_lex_state = 13}, + [1084] = {.lex_state = 14, .external_lex_state = 13}, + [1085] = {.lex_state = 13, .external_lex_state = 14}, + [1086] = {.lex_state = 13, .external_lex_state = 7}, + [1087] = {.lex_state = 13, .external_lex_state = 14}, + [1088] = {.lex_state = 13, .external_lex_state = 7}, + [1089] = {.lex_state = 13, .external_lex_state = 14}, [1090] = {.lex_state = 13, .external_lex_state = 14}, - [1091] = {.lex_state = 13, .external_lex_state = 9}, - [1092] = {.lex_state = 13, .external_lex_state = 9}, - [1093] = {.lex_state = 13, .external_lex_state = 9}, - [1094] = {.lex_state = 13, .external_lex_state = 6}, - [1095] = {.lex_state = 13, .external_lex_state = 9}, - [1096] = {.lex_state = 13, .external_lex_state = 14}, - [1097] = {.lex_state = 13, .external_lex_state = 14}, - [1098] = {.lex_state = 13, .external_lex_state = 9}, - [1099] = {.lex_state = 13, .external_lex_state = 6}, - [1100] = {.lex_state = 13, .external_lex_state = 14}, - [1101] = {.lex_state = 13, .external_lex_state = 14}, - [1102] = {.lex_state = 13, .external_lex_state = 14}, - [1103] = {.lex_state = 13, .external_lex_state = 14}, - [1104] = {.lex_state = 13, .external_lex_state = 14}, - [1105] = {.lex_state = 13, .external_lex_state = 14}, - [1106] = {.lex_state = 13, .external_lex_state = 14}, - [1107] = {.lex_state = 13, .external_lex_state = 14}, - [1108] = {.lex_state = 13, .external_lex_state = 9}, - [1109] = {.lex_state = 13, .external_lex_state = 9}, - [1110] = {.lex_state = 13, .external_lex_state = 7}, - [1111] = {.lex_state = 14, .external_lex_state = 12}, - [1112] = {.lex_state = 14, .external_lex_state = 12}, - [1113] = {.lex_state = 14, .external_lex_state = 12}, - [1114] = {.lex_state = 13, .external_lex_state = 9}, - [1115] = {.lex_state = 13, .external_lex_state = 9}, - [1116] = {.lex_state = 13, .external_lex_state = 7}, - [1117] = {.lex_state = 13, .external_lex_state = 7}, - [1118] = {.lex_state = 13, .external_lex_state = 9}, - [1119] = {.lex_state = 13, .external_lex_state = 9}, - [1120] = {.lex_state = 13, .external_lex_state = 9}, - [1121] = {.lex_state = 13, .external_lex_state = 9}, - [1122] = {.lex_state = 14, .external_lex_state = 14}, - [1123] = {.lex_state = 14, .external_lex_state = 14}, - [1124] = {.lex_state = 14, .external_lex_state = 14}, - [1125] = {.lex_state = 13, .external_lex_state = 14}, - [1126] = {.lex_state = 13, .external_lex_state = 9}, - [1127] = {.lex_state = 13, .external_lex_state = 14}, - [1128] = {.lex_state = 14, .external_lex_state = 13}, - [1129] = {.lex_state = 14, .external_lex_state = 12}, - [1130] = {.lex_state = 14, .external_lex_state = 12}, - [1131] = {.lex_state = 13, .external_lex_state = 9}, - [1132] = {.lex_state = 13, .external_lex_state = 7}, - [1133] = {.lex_state = 13, .external_lex_state = 14}, - [1134] = {.lex_state = 13, .external_lex_state = 9}, - [1135] = {.lex_state = 13, .external_lex_state = 9}, - [1136] = {.lex_state = 14, .external_lex_state = 9}, - [1137] = {.lex_state = 14, .external_lex_state = 9}, - [1138] = {.lex_state = 13, .external_lex_state = 14}, - [1139] = {.lex_state = 13, .external_lex_state = 14}, - [1140] = {.lex_state = 13, .external_lex_state = 9}, - [1141] = {.lex_state = 14, .external_lex_state = 13}, - [1142] = {.lex_state = 14, .external_lex_state = 13}, - [1143] = {.lex_state = 13, .external_lex_state = 9}, - [1144] = {.lex_state = 14, .external_lex_state = 12}, - [1145] = {.lex_state = 13, .external_lex_state = 9}, - [1146] = {.lex_state = 14, .external_lex_state = 12}, - [1147] = {.lex_state = 13, .external_lex_state = 9}, - [1148] = {.lex_state = 13, .external_lex_state = 14}, - [1149] = {.lex_state = 14, .external_lex_state = 13}, - [1150] = {.lex_state = 13, .external_lex_state = 13}, + [1091] = {.lex_state = 13, .external_lex_state = 14}, + [1092] = {.lex_state = 13, .external_lex_state = 14}, + [1093] = {.lex_state = 13, .external_lex_state = 14}, + [1094] = {.lex_state = 13, .external_lex_state = 14}, + [1095] = {.lex_state = 13, .external_lex_state = 11}, + [1096] = {.lex_state = 13, .external_lex_state = 11}, + [1097] = {.lex_state = 13, .external_lex_state = 11}, + [1098] = {.lex_state = 13, .external_lex_state = 11}, + [1099] = {.lex_state = 13, .external_lex_state = 11}, + [1100] = {.lex_state = 13, .external_lex_state = 11}, + [1101] = {.lex_state = 13, .external_lex_state = 11}, + [1102] = {.lex_state = 13, .external_lex_state = 11}, + [1103] = {.lex_state = 13, .external_lex_state = 11}, + [1104] = {.lex_state = 13, .external_lex_state = 11}, + [1105] = {.lex_state = 13, .external_lex_state = 11}, + [1106] = {.lex_state = 13, .external_lex_state = 11}, + [1107] = {.lex_state = 13, .external_lex_state = 11}, + [1108] = {.lex_state = 14, .external_lex_state = 13}, + [1109] = {.lex_state = 14, .external_lex_state = 13}, + [1110] = {.lex_state = 13, .external_lex_state = 11}, + [1111] = {.lex_state = 13, .external_lex_state = 11}, + [1112] = {.lex_state = 14, .external_lex_state = 13}, + [1113] = {.lex_state = 14, .external_lex_state = 13}, + [1114] = {.lex_state = 14, .external_lex_state = 13}, + [1115] = {.lex_state = 13, .external_lex_state = 15}, + [1116] = {.lex_state = 13, .external_lex_state = 15}, + [1117] = {.lex_state = 13, .external_lex_state = 11}, + [1118] = {.lex_state = 14, .external_lex_state = 13}, + [1119] = {.lex_state = 14, .external_lex_state = 13}, + [1120] = {.lex_state = 14, .external_lex_state = 13}, + [1121] = {.lex_state = 13, .external_lex_state = 11}, + [1122] = {.lex_state = 13, .external_lex_state = 11}, + [1123] = {.lex_state = 13, .external_lex_state = 15}, + [1124] = {.lex_state = 13, .external_lex_state = 15}, + [1125] = {.lex_state = 13, .external_lex_state = 15}, + [1126] = {.lex_state = 13, .external_lex_state = 15}, + [1127] = {.lex_state = 13, .external_lex_state = 15}, + [1128] = {.lex_state = 13, .external_lex_state = 15}, + [1129] = {.lex_state = 13, .external_lex_state = 15}, + [1130] = {.lex_state = 13, .external_lex_state = 15}, + [1131] = {.lex_state = 13, .external_lex_state = 11}, + [1132] = {.lex_state = 13, .external_lex_state = 12}, + [1133] = {.lex_state = 13, .external_lex_state = 12}, + [1134] = {.lex_state = 13, .external_lex_state = 13}, + [1135] = {.lex_state = 13, .external_lex_state = 13}, + [1136] = {.lex_state = 13, .external_lex_state = 13}, + [1137] = {.lex_state = 13, .external_lex_state = 12}, + [1138] = {.lex_state = 13, .external_lex_state = 12}, + [1139] = {.lex_state = 14, .external_lex_state = 14}, + [1140] = {.lex_state = 13, .external_lex_state = 12}, + [1141] = {.lex_state = 14, .external_lex_state = 15}, + [1142] = {.lex_state = 13, .external_lex_state = 12}, + [1143] = {.lex_state = 14, .external_lex_state = 15}, + [1144] = {.lex_state = 13, .external_lex_state = 13}, + [1145] = {.lex_state = 13, .external_lex_state = 12}, + [1146] = {.lex_state = 13, .external_lex_state = 12}, + [1147] = {.lex_state = 13, .external_lex_state = 13}, + [1148] = {.lex_state = 13, .external_lex_state = 13}, + [1149] = {.lex_state = 13, .external_lex_state = 12}, + [1150] = {.lex_state = 13, .external_lex_state = 12}, [1151] = {.lex_state = 13, .external_lex_state = 13}, - [1152] = {.lex_state = 13, .external_lex_state = 12}, - [1153] = {.lex_state = 13, .external_lex_state = 12}, - [1154] = {.lex_state = 13, .external_lex_state = 12}, + [1152] = {.lex_state = 13, .external_lex_state = 13}, + [1153] = {.lex_state = 13, .external_lex_state = 13}, + [1154] = {.lex_state = 13, .external_lex_state = 13}, [1155] = {.lex_state = 13, .external_lex_state = 12}, - [1156] = {.lex_state = 13, .external_lex_state = 12}, + [1156] = {.lex_state = 13, .external_lex_state = 8}, [1157] = {.lex_state = 13, .external_lex_state = 12}, - [1158] = {.lex_state = 13, .external_lex_state = 13}, - [1159] = {.lex_state = 14, .external_lex_state = 14}, - [1160] = {.lex_state = 14, .external_lex_state = 14}, - [1161] = {.lex_state = 14, .external_lex_state = 14}, - [1162] = {.lex_state = 13, .external_lex_state = 12}, - [1163] = {.lex_state = 13, .external_lex_state = 12}, - [1164] = {.lex_state = 13, .external_lex_state = 12}, - [1165] = {.lex_state = 13, .external_lex_state = 12}, - [1166] = {.lex_state = 13, .external_lex_state = 12}, - [1167] = {.lex_state = 13, .external_lex_state = 12}, - [1168] = {.lex_state = 14, .external_lex_state = 14}, - [1169] = {.lex_state = 14, .external_lex_state = 14}, - [1170] = {.lex_state = 14, .external_lex_state = 14}, - [1171] = {.lex_state = 13, .external_lex_state = 12}, - [1172] = {.lex_state = 13, .external_lex_state = 12}, + [1158] = {.lex_state = 14, .external_lex_state = 14}, + [1159] = {.lex_state = 14, .external_lex_state = 12}, + [1160] = {.lex_state = 13, .external_lex_state = 13}, + [1161] = {.lex_state = 13, .external_lex_state = 13}, + [1162] = {.lex_state = 13, .external_lex_state = 13}, + [1163] = {.lex_state = 13, .external_lex_state = 13}, + [1164] = {.lex_state = 13, .external_lex_state = 13}, + [1165] = {.lex_state = 13, .external_lex_state = 13}, + [1166] = {.lex_state = 13, .external_lex_state = 13}, + [1167] = {.lex_state = 13, .external_lex_state = 13}, + [1168] = {.lex_state = 13, .external_lex_state = 13}, + [1169] = {.lex_state = 13, .external_lex_state = 13}, + [1170] = {.lex_state = 13, .external_lex_state = 12}, + [1171] = {.lex_state = 13, .external_lex_state = 13}, + [1172] = {.lex_state = 13, .external_lex_state = 13}, [1173] = {.lex_state = 13, .external_lex_state = 12}, [1174] = {.lex_state = 13, .external_lex_state = 12}, [1175] = {.lex_state = 13, .external_lex_state = 12}, [1176] = {.lex_state = 13, .external_lex_state = 12}, - [1177] = {.lex_state = 13, .external_lex_state = 13}, + [1177] = {.lex_state = 13, .external_lex_state = 12}, [1178] = {.lex_state = 13, .external_lex_state = 12}, - [1179] = {.lex_state = 13, .external_lex_state = 14}, - [1180] = {.lex_state = 13, .external_lex_state = 12}, - [1181] = {.lex_state = 13, .external_lex_state = 12}, - [1182] = {.lex_state = 13, .external_lex_state = 12}, - [1183] = {.lex_state = 13, .external_lex_state = 12}, - [1184] = {.lex_state = 13, .external_lex_state = 12}, - [1185] = {.lex_state = 13, .external_lex_state = 12}, - [1186] = {.lex_state = 13, .external_lex_state = 12}, + [1179] = {.lex_state = 13, .external_lex_state = 13}, + [1180] = {.lex_state = 13, .external_lex_state = 13}, + [1181] = {.lex_state = 13, .external_lex_state = 13}, + [1182] = {.lex_state = 14, .external_lex_state = 14}, + [1183] = {.lex_state = 13, .external_lex_state = 13}, + [1184] = {.lex_state = 14, .external_lex_state = 14}, + [1185] = {.lex_state = 13, .external_lex_state = 13}, + [1186] = {.lex_state = 13, .external_lex_state = 13}, [1187] = {.lex_state = 13, .external_lex_state = 13}, - [1188] = {.lex_state = 13, .external_lex_state = 12}, - [1189] = {.lex_state = 13, .external_lex_state = 12}, - [1190] = {.lex_state = 13, .external_lex_state = 12}, + [1188] = {.lex_state = 13, .external_lex_state = 13}, + [1189] = {.lex_state = 13, .external_lex_state = 13}, + [1190] = {.lex_state = 13, .external_lex_state = 13}, [1191] = {.lex_state = 13, .external_lex_state = 13}, [1192] = {.lex_state = 13, .external_lex_state = 13}, [1193] = {.lex_state = 13, .external_lex_state = 13}, [1194] = {.lex_state = 13, .external_lex_state = 12}, - [1195] = {.lex_state = 13, .external_lex_state = 12}, + [1195] = {.lex_state = 13, .external_lex_state = 8}, [1196] = {.lex_state = 13, .external_lex_state = 13}, [1197] = {.lex_state = 13, .external_lex_state = 13}, - [1198] = {.lex_state = 13, .external_lex_state = 12}, - [1199] = {.lex_state = 13, .external_lex_state = 12}, - [1200] = {.lex_state = 13, .external_lex_state = 13}, - [1201] = {.lex_state = 14, .external_lex_state = 13}, + [1198] = {.lex_state = 14, .external_lex_state = 14}, + [1199] = {.lex_state = 14, .external_lex_state = 14}, + [1200] = {.lex_state = 14, .external_lex_state = 14}, + [1201] = {.lex_state = 13, .external_lex_state = 12}, [1202] = {.lex_state = 13, .external_lex_state = 12}, - [1203] = {.lex_state = 13, .external_lex_state = 12}, - [1204] = {.lex_state = 13, .external_lex_state = 12}, - [1205] = {.lex_state = 13, .external_lex_state = 12}, - [1206] = {.lex_state = 13, .external_lex_state = 12}, - [1207] = {.lex_state = 13, .external_lex_state = 12}, + [1203] = {.lex_state = 13, .external_lex_state = 14}, + [1204] = {.lex_state = 14, .external_lex_state = 14}, + [1205] = {.lex_state = 13, .external_lex_state = 13}, + [1206] = {.lex_state = 13, .external_lex_state = 8}, + [1207] = {.lex_state = 13, .external_lex_state = 13}, [1208] = {.lex_state = 13, .external_lex_state = 13}, [1209] = {.lex_state = 13, .external_lex_state = 13}, [1210] = {.lex_state = 13, .external_lex_state = 12}, [1211] = {.lex_state = 13, .external_lex_state = 12}, [1212] = {.lex_state = 13, .external_lex_state = 12}, [1213] = {.lex_state = 13, .external_lex_state = 12}, - [1214] = {.lex_state = 13, .external_lex_state = 2}, - [1215] = {.lex_state = 13, .external_lex_state = 14}, + [1214] = {.lex_state = 13, .external_lex_state = 12}, + [1215] = {.lex_state = 13, .external_lex_state = 12}, [1216] = {.lex_state = 13, .external_lex_state = 12}, [1217] = {.lex_state = 13, .external_lex_state = 12}, - [1218] = {.lex_state = 13, .external_lex_state = 12}, - [1219] = {.lex_state = 13, .external_lex_state = 12}, + [1218] = {.lex_state = 13, .external_lex_state = 13}, + [1219] = {.lex_state = 13, .external_lex_state = 13}, [1220] = {.lex_state = 13, .external_lex_state = 12}, [1221] = {.lex_state = 13, .external_lex_state = 12}, - [1222] = {.lex_state = 13, .external_lex_state = 12}, - [1223] = {.lex_state = 13, .external_lex_state = 12}, - [1224] = {.lex_state = 13, .external_lex_state = 12}, - [1225] = {.lex_state = 13, .external_lex_state = 12}, - [1226] = {.lex_state = 13, .external_lex_state = 13}, - [1227] = {.lex_state = 13, .external_lex_state = 12}, - [1228] = {.lex_state = 13, .external_lex_state = 12}, + [1222] = {.lex_state = 13, .external_lex_state = 8}, + [1223] = {.lex_state = 13, .external_lex_state = 13}, + [1224] = {.lex_state = 13, .external_lex_state = 13}, + [1225] = {.lex_state = 14, .external_lex_state = 12}, + [1226] = {.lex_state = 14, .external_lex_state = 12}, + [1227] = {.lex_state = 14, .external_lex_state = 14}, + [1228] = {.lex_state = 14, .external_lex_state = 15}, [1229] = {.lex_state = 13, .external_lex_state = 12}, - [1230] = {.lex_state = 13, .external_lex_state = 14}, + [1230] = {.lex_state = 13, .external_lex_state = 13}, [1231] = {.lex_state = 13, .external_lex_state = 14}, - [1232] = {.lex_state = 14, .external_lex_state = 14}, + [1232] = {.lex_state = 14, .external_lex_state = 15}, [1233] = {.lex_state = 13, .external_lex_state = 13}, [1234] = {.lex_state = 14, .external_lex_state = 14}, [1235] = {.lex_state = 14, .external_lex_state = 14}, - [1236] = {.lex_state = 13, .external_lex_state = 13}, - [1237] = {.lex_state = 13, .external_lex_state = 13}, - [1238] = {.lex_state = 14, .external_lex_state = 13}, - [1239] = {.lex_state = 13, .external_lex_state = 12}, - [1240] = {.lex_state = 13, .external_lex_state = 12}, + [1236] = {.lex_state = 14, .external_lex_state = 14}, + [1237] = {.lex_state = 13, .external_lex_state = 14}, + [1238] = {.lex_state = 13, .external_lex_state = 14}, + [1239] = {.lex_state = 13, .external_lex_state = 14}, + [1240] = {.lex_state = 14, .external_lex_state = 15}, [1241] = {.lex_state = 13, .external_lex_state = 12}, - [1242] = {.lex_state = 13, .external_lex_state = 12}, - [1243] = {.lex_state = 13, .external_lex_state = 12}, - [1244] = {.lex_state = 13, .external_lex_state = 12}, + [1242] = {.lex_state = 13, .external_lex_state = 13}, + [1243] = {.lex_state = 13, .external_lex_state = 13}, + [1244] = {.lex_state = 13, .external_lex_state = 13}, [1245] = {.lex_state = 13, .external_lex_state = 13}, - [1246] = {.lex_state = 14, .external_lex_state = 13}, - [1247] = {.lex_state = 13, .external_lex_state = 8}, - [1248] = {.lex_state = 13, .external_lex_state = 12}, + [1246] = {.lex_state = 13, .external_lex_state = 13}, + [1247] = {.lex_state = 13, .external_lex_state = 14}, + [1248] = {.lex_state = 13, .external_lex_state = 14}, [1249] = {.lex_state = 13, .external_lex_state = 12}, [1250] = {.lex_state = 13, .external_lex_state = 13}, - [1251] = {.lex_state = 13, .external_lex_state = 13}, - [1252] = {.lex_state = 13, .external_lex_state = 13}, - [1253] = {.lex_state = 13, .external_lex_state = 8}, - [1254] = {.lex_state = 13, .external_lex_state = 12}, - [1255] = {.lex_state = 13, .external_lex_state = 12}, + [1251] = {.lex_state = 13, .external_lex_state = 12}, + [1252] = {.lex_state = 13, .external_lex_state = 12}, + [1253] = {.lex_state = 14, .external_lex_state = 12}, + [1254] = {.lex_state = 13, .external_lex_state = 2}, + [1255] = {.lex_state = 13, .external_lex_state = 13}, [1256] = {.lex_state = 13, .external_lex_state = 13}, [1257] = {.lex_state = 13, .external_lex_state = 13}, [1258] = {.lex_state = 13, .external_lex_state = 13}, @@ -8759,881 +8726,881 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1260] = {.lex_state = 13, .external_lex_state = 13}, [1261] = {.lex_state = 13, .external_lex_state = 13}, [1262] = {.lex_state = 13, .external_lex_state = 13}, - [1263] = {.lex_state = 13, .external_lex_state = 13}, - [1264] = {.lex_state = 13, .external_lex_state = 13}, - [1265] = {.lex_state = 13, .external_lex_state = 13}, - [1266] = {.lex_state = 13, .external_lex_state = 12}, - [1267] = {.lex_state = 13, .external_lex_state = 12}, - [1268] = {.lex_state = 13, .external_lex_state = 13}, - [1269] = {.lex_state = 13, .external_lex_state = 12}, - [1270] = {.lex_state = 13, .external_lex_state = 13}, - [1271] = {.lex_state = 13, .external_lex_state = 13}, + [1263] = {.lex_state = 14, .external_lex_state = 12}, + [1264] = {.lex_state = 14, .external_lex_state = 12}, + [1265] = {.lex_state = 13, .external_lex_state = 12}, + [1266] = {.lex_state = 13, .external_lex_state = 13}, + [1267] = {.lex_state = 13, .external_lex_state = 13}, + [1268] = {.lex_state = 13, .external_lex_state = 2}, + [1269] = {.lex_state = 13, .external_lex_state = 13}, + [1270] = {.lex_state = 13, .external_lex_state = 12}, + [1271] = {.lex_state = 13, .external_lex_state = 12}, [1272] = {.lex_state = 13, .external_lex_state = 13}, [1273] = {.lex_state = 13, .external_lex_state = 13}, - [1274] = {.lex_state = 13, .external_lex_state = 13}, + [1274] = {.lex_state = 13, .external_lex_state = 12}, [1275] = {.lex_state = 13, .external_lex_state = 13}, - [1276] = {.lex_state = 13, .external_lex_state = 14}, - [1277] = {.lex_state = 14, .external_lex_state = 14}, - [1278] = {.lex_state = 14, .external_lex_state = 14}, - [1279] = {.lex_state = 14, .external_lex_state = 14}, - [1280] = {.lex_state = 13, .external_lex_state = 8}, - [1281] = {.lex_state = 14, .external_lex_state = 13}, - [1282] = {.lex_state = 13, .external_lex_state = 14}, - [1283] = {.lex_state = 14, .external_lex_state = 15}, - [1284] = {.lex_state = 14, .external_lex_state = 15}, - [1285] = {.lex_state = 14, .external_lex_state = 15}, - [1286] = {.lex_state = 13, .external_lex_state = 2}, - [1287] = {.lex_state = 13, .external_lex_state = 13}, - [1288] = {.lex_state = 13, .external_lex_state = 13}, - [1289] = {.lex_state = 13, .external_lex_state = 8}, - [1290] = {.lex_state = 13, .external_lex_state = 13}, - [1291] = {.lex_state = 13, .external_lex_state = 13}, - [1292] = {.lex_state = 14, .external_lex_state = 13}, - [1293] = {.lex_state = 13, .external_lex_state = 13}, - [1294] = {.lex_state = 13, .external_lex_state = 13}, - [1295] = {.lex_state = 13, .external_lex_state = 13}, - [1296] = {.lex_state = 13, .external_lex_state = 13}, - [1297] = {.lex_state = 14, .external_lex_state = 15}, - [1298] = {.lex_state = 14, .external_lex_state = 15}, - [1299] = {.lex_state = 13, .external_lex_state = 13}, - [1300] = {.lex_state = 13, .external_lex_state = 14}, - [1301] = {.lex_state = 13, .external_lex_state = 12}, - [1302] = {.lex_state = 13, .external_lex_state = 14}, - [1303] = {.lex_state = 13, .external_lex_state = 13}, + [1276] = {.lex_state = 13, .external_lex_state = 13}, + [1277] = {.lex_state = 13, .external_lex_state = 12}, + [1278] = {.lex_state = 13, .external_lex_state = 12}, + [1279] = {.lex_state = 13, .external_lex_state = 13}, + [1280] = {.lex_state = 13, .external_lex_state = 12}, + [1281] = {.lex_state = 13, .external_lex_state = 12}, + [1282] = {.lex_state = 13, .external_lex_state = 13}, + [1283] = {.lex_state = 13, .external_lex_state = 12}, + [1284] = {.lex_state = 13, .external_lex_state = 12}, + [1285] = {.lex_state = 13, .external_lex_state = 15}, + [1286] = {.lex_state = 13, .external_lex_state = 14}, + [1287] = {.lex_state = 13, .external_lex_state = 14}, + [1288] = {.lex_state = 13, .external_lex_state = 14}, + [1289] = {.lex_state = 13, .external_lex_state = 14}, + [1290] = {.lex_state = 13, .external_lex_state = 14}, + [1291] = {.lex_state = 13, .external_lex_state = 14}, + [1292] = {.lex_state = 13, .external_lex_state = 14}, + [1293] = {.lex_state = 13, .external_lex_state = 14}, + [1294] = {.lex_state = 13, .external_lex_state = 14}, + [1295] = {.lex_state = 13, .external_lex_state = 15}, + [1296] = {.lex_state = 13, .external_lex_state = 14}, + [1297] = {.lex_state = 13, .external_lex_state = 14}, + [1298] = {.lex_state = 13, .external_lex_state = 15}, + [1299] = {.lex_state = 13, .external_lex_state = 15}, + [1300] = {.lex_state = 13, .external_lex_state = 15}, + [1301] = {.lex_state = 13, .external_lex_state = 14}, + [1302] = {.lex_state = 13, .external_lex_state = 15}, + [1303] = {.lex_state = 13, .external_lex_state = 15}, [1304] = {.lex_state = 13, .external_lex_state = 14}, [1305] = {.lex_state = 13, .external_lex_state = 14}, - [1306] = {.lex_state = 14, .external_lex_state = 13}, - [1307] = {.lex_state = 14, .external_lex_state = 13}, - [1308] = {.lex_state = 14, .external_lex_state = 13}, + [1306] = {.lex_state = 13, .external_lex_state = 14}, + [1307] = {.lex_state = 13, .external_lex_state = 14}, + [1308] = {.lex_state = 13, .external_lex_state = 14}, [1309] = {.lex_state = 13, .external_lex_state = 14}, [1310] = {.lex_state = 13, .external_lex_state = 14}, - [1311] = {.lex_state = 13, .external_lex_state = 15}, + [1311] = {.lex_state = 13, .external_lex_state = 14}, [1312] = {.lex_state = 13, .external_lex_state = 14}, - [1313] = {.lex_state = 13, .external_lex_state = 15}, - [1314] = {.lex_state = 13, .external_lex_state = 15}, + [1313] = {.lex_state = 13, .external_lex_state = 14}, + [1314] = {.lex_state = 13, .external_lex_state = 14}, [1315] = {.lex_state = 13, .external_lex_state = 14}, - [1316] = {.lex_state = 13, .external_lex_state = 14}, + [1316] = {.lex_state = 13, .external_lex_state = 15}, [1317] = {.lex_state = 13, .external_lex_state = 14}, [1318] = {.lex_state = 13, .external_lex_state = 14}, [1319] = {.lex_state = 13, .external_lex_state = 14}, [1320] = {.lex_state = 13, .external_lex_state = 14}, [1321] = {.lex_state = 13, .external_lex_state = 14}, - [1322] = {.lex_state = 13, .external_lex_state = 14}, - [1323] = {.lex_state = 13, .external_lex_state = 14}, - [1324] = {.lex_state = 13, .external_lex_state = 14}, - [1325] = {.lex_state = 13, .external_lex_state = 15}, - [1326] = {.lex_state = 13, .external_lex_state = 13}, - [1327] = {.lex_state = 13, .external_lex_state = 15}, - [1328] = {.lex_state = 13, .external_lex_state = 15}, - [1329] = {.lex_state = 13, .external_lex_state = 14}, - [1330] = {.lex_state = 13, .external_lex_state = 14}, + [1322] = {.lex_state = 14, .external_lex_state = 14}, + [1323] = {.lex_state = 14, .external_lex_state = 14}, + [1324] = {.lex_state = 14, .external_lex_state = 14}, + [1325] = {.lex_state = 13, .external_lex_state = 14}, + [1326] = {.lex_state = 13, .external_lex_state = 14}, + [1327] = {.lex_state = 13, .external_lex_state = 14}, + [1328] = {.lex_state = 13, .external_lex_state = 14}, + [1329] = {.lex_state = 8, .external_lex_state = 11}, + [1330] = {.lex_state = 8, .external_lex_state = 11}, [1331] = {.lex_state = 13, .external_lex_state = 14}, - [1332] = {.lex_state = 13, .external_lex_state = 14}, + [1332] = {.lex_state = 13, .external_lex_state = 15}, [1333] = {.lex_state = 13, .external_lex_state = 14}, [1334] = {.lex_state = 13, .external_lex_state = 14}, [1335] = {.lex_state = 13, .external_lex_state = 14}, - [1336] = {.lex_state = 13, .external_lex_state = 15}, + [1336] = {.lex_state = 13, .external_lex_state = 14}, [1337] = {.lex_state = 13, .external_lex_state = 14}, [1338] = {.lex_state = 13, .external_lex_state = 14}, - [1339] = {.lex_state = 13, .external_lex_state = 14}, - [1340] = {.lex_state = 8, .external_lex_state = 9}, - [1341] = {.lex_state = 8, .external_lex_state = 9}, - [1342] = {.lex_state = 13, .external_lex_state = 15}, + [1339] = {.lex_state = 13, .external_lex_state = 7}, + [1340] = {.lex_state = 13, .external_lex_state = 14}, + [1341] = {.lex_state = 13, .external_lex_state = 12}, + [1342] = {.lex_state = 13, .external_lex_state = 14}, [1343] = {.lex_state = 13, .external_lex_state = 14}, - [1344] = {.lex_state = 13, .external_lex_state = 14}, - [1345] = {.lex_state = 13, .external_lex_state = 14}, - [1346] = {.lex_state = 13, .external_lex_state = 15}, - [1347] = {.lex_state = 13, .external_lex_state = 15}, + [1344] = {.lex_state = 13, .external_lex_state = 7}, + [1345] = {.lex_state = 8, .external_lex_state = 11}, + [1346] = {.lex_state = 8, .external_lex_state = 11}, + [1347] = {.lex_state = 8, .external_lex_state = 11}, [1348] = {.lex_state = 13, .external_lex_state = 14}, - [1349] = {.lex_state = 13, .external_lex_state = 15}, - [1350] = {.lex_state = 13, .external_lex_state = 15}, + [1349] = {.lex_state = 13, .external_lex_state = 14}, + [1350] = {.lex_state = 8, .external_lex_state = 11}, [1351] = {.lex_state = 13, .external_lex_state = 15}, - [1352] = {.lex_state = 13, .external_lex_state = 15}, + [1352] = {.lex_state = 13, .external_lex_state = 12}, [1353] = {.lex_state = 13, .external_lex_state = 15}, - [1354] = {.lex_state = 13, .external_lex_state = 15}, + [1354] = {.lex_state = 13, .external_lex_state = 14}, [1355] = {.lex_state = 13, .external_lex_state = 14}, [1356] = {.lex_state = 13, .external_lex_state = 14}, [1357] = {.lex_state = 13, .external_lex_state = 14}, [1358] = {.lex_state = 13, .external_lex_state = 14}, [1359] = {.lex_state = 13, .external_lex_state = 14}, - [1360] = {.lex_state = 14, .external_lex_state = 14}, - [1361] = {.lex_state = 13, .external_lex_state = 14}, + [1360] = {.lex_state = 13, .external_lex_state = 14}, + [1361] = {.lex_state = 13, .external_lex_state = 15}, [1362] = {.lex_state = 13, .external_lex_state = 14}, [1363] = {.lex_state = 13, .external_lex_state = 14}, [1364] = {.lex_state = 13, .external_lex_state = 14}, [1365] = {.lex_state = 13, .external_lex_state = 14}, - [1366] = {.lex_state = 13, .external_lex_state = 14}, - [1367] = {.lex_state = 13, .external_lex_state = 7}, - [1368] = {.lex_state = 13, .external_lex_state = 14}, - [1369] = {.lex_state = 13, .external_lex_state = 7}, - [1370] = {.lex_state = 8, .external_lex_state = 9}, - [1371] = {.lex_state = 8, .external_lex_state = 9}, - [1372] = {.lex_state = 8, .external_lex_state = 9}, - [1373] = {.lex_state = 13, .external_lex_state = 15}, + [1366] = {.lex_state = 13, .external_lex_state = 12}, + [1367] = {.lex_state = 13, .external_lex_state = 14}, + [1368] = {.lex_state = 13, .external_lex_state = 12}, + [1369] = {.lex_state = 13, .external_lex_state = 15}, + [1370] = {.lex_state = 13, .external_lex_state = 15}, + [1371] = {.lex_state = 13, .external_lex_state = 15}, + [1372] = {.lex_state = 13, .external_lex_state = 15}, + [1373] = {.lex_state = 13, .external_lex_state = 14}, [1374] = {.lex_state = 13, .external_lex_state = 14}, - [1375] = {.lex_state = 8, .external_lex_state = 9}, - [1376] = {.lex_state = 13, .external_lex_state = 15}, + [1375] = {.lex_state = 13, .external_lex_state = 14}, + [1376] = {.lex_state = 13, .external_lex_state = 14}, [1377] = {.lex_state = 13, .external_lex_state = 15}, - [1378] = {.lex_state = 13, .external_lex_state = 14}, + [1378] = {.lex_state = 13, .external_lex_state = 15}, [1379] = {.lex_state = 13, .external_lex_state = 14}, [1380] = {.lex_state = 13, .external_lex_state = 14}, [1381] = {.lex_state = 13, .external_lex_state = 14}, - [1382] = {.lex_state = 13, .external_lex_state = 14}, + [1382] = {.lex_state = 13, .external_lex_state = 15}, [1383] = {.lex_state = 13, .external_lex_state = 15}, [1384] = {.lex_state = 13, .external_lex_state = 15}, - [1385] = {.lex_state = 13, .external_lex_state = 14}, + [1385] = {.lex_state = 13, .external_lex_state = 15}, [1386] = {.lex_state = 13, .external_lex_state = 15}, [1387] = {.lex_state = 13, .external_lex_state = 14}, - [1388] = {.lex_state = 13, .external_lex_state = 15}, - [1389] = {.lex_state = 13, .external_lex_state = 14}, - [1390] = {.lex_state = 13, .external_lex_state = 14}, - [1391] = {.lex_state = 13, .external_lex_state = 14}, + [1388] = {.lex_state = 13, .external_lex_state = 14}, + [1389] = {.lex_state = 13, .external_lex_state = 15}, + [1390] = {.lex_state = 13, .external_lex_state = 15}, + [1391] = {.lex_state = 14, .external_lex_state = 12}, [1392] = {.lex_state = 13, .external_lex_state = 15}, - [1393] = {.lex_state = 13, .external_lex_state = 14}, + [1393] = {.lex_state = 13, .external_lex_state = 15}, [1394] = {.lex_state = 13, .external_lex_state = 15}, - [1395] = {.lex_state = 13, .external_lex_state = 15}, - [1396] = {.lex_state = 13, .external_lex_state = 14}, - [1397] = {.lex_state = 13, .external_lex_state = 15}, - [1398] = {.lex_state = 13, .external_lex_state = 15}, - [1399] = {.lex_state = 13, .external_lex_state = 15}, + [1395] = {.lex_state = 14, .external_lex_state = 12}, + [1396] = {.lex_state = 13, .external_lex_state = 15}, + [1397] = {.lex_state = 14, .external_lex_state = 12}, + [1398] = {.lex_state = 13, .external_lex_state = 14}, + [1399] = {.lex_state = 13, .external_lex_state = 14}, [1400] = {.lex_state = 13, .external_lex_state = 14}, - [1401] = {.lex_state = 13, .external_lex_state = 15}, + [1401] = {.lex_state = 13, .external_lex_state = 14}, [1402] = {.lex_state = 13, .external_lex_state = 15}, [1403] = {.lex_state = 13, .external_lex_state = 15}, - [1404] = {.lex_state = 13, .external_lex_state = 14}, - [1405] = {.lex_state = 13, .external_lex_state = 14}, - [1406] = {.lex_state = 13, .external_lex_state = 14}, - [1407] = {.lex_state = 13, .external_lex_state = 14}, - [1408] = {.lex_state = 13, .external_lex_state = 14}, - [1409] = {.lex_state = 13, .external_lex_state = 14}, - [1410] = {.lex_state = 13, .external_lex_state = 15}, - [1411] = {.lex_state = 13, .external_lex_state = 15}, - [1412] = {.lex_state = 13, .external_lex_state = 14}, - [1413] = {.lex_state = 13, .external_lex_state = 14}, - [1414] = {.lex_state = 13, .external_lex_state = 14}, - [1415] = {.lex_state = 13, .external_lex_state = 15}, - [1416] = {.lex_state = 13, .external_lex_state = 13}, - [1417] = {.lex_state = 13, .external_lex_state = 15}, - [1418] = {.lex_state = 13, .external_lex_state = 14}, - [1419] = {.lex_state = 13, .external_lex_state = 9}, - [1420] = {.lex_state = 13, .external_lex_state = 14}, - [1421] = {.lex_state = 13, .external_lex_state = 14}, - [1422] = {.lex_state = 13, .external_lex_state = 14}, - [1423] = {.lex_state = 13, .external_lex_state = 13}, - [1424] = {.lex_state = 13, .external_lex_state = 14}, - [1425] = {.lex_state = 14, .external_lex_state = 14}, - [1426] = {.lex_state = 14, .external_lex_state = 14}, - [1427] = {.lex_state = 13, .external_lex_state = 14}, - [1428] = {.lex_state = 13, .external_lex_state = 13}, - [1429] = {.lex_state = 13, .external_lex_state = 13}, - [1430] = {.lex_state = 13, .external_lex_state = 13}, - [1431] = {.lex_state = 13, .external_lex_state = 13}, - [1432] = {.lex_state = 13, .external_lex_state = 13}, - [1433] = {.lex_state = 13, .external_lex_state = 13}, - [1434] = {.lex_state = 13, .external_lex_state = 13}, - [1435] = {.lex_state = 13, .external_lex_state = 13}, - [1436] = {.lex_state = 13, .external_lex_state = 13}, - [1437] = {.lex_state = 13, .external_lex_state = 13}, - [1438] = {.lex_state = 13, .external_lex_state = 15}, - [1439] = {.lex_state = 14, .external_lex_state = 14}, - [1440] = {.lex_state = 13, .external_lex_state = 13}, - [1441] = {.lex_state = 14, .external_lex_state = 14}, - [1442] = {.lex_state = 13, .external_lex_state = 13}, - [1443] = {.lex_state = 13, .external_lex_state = 13}, - [1444] = {.lex_state = 13, .external_lex_state = 13}, - [1445] = {.lex_state = 13, .external_lex_state = 13}, - [1446] = {.lex_state = 13, .external_lex_state = 13}, - [1447] = {.lex_state = 13, .external_lex_state = 13}, - [1448] = {.lex_state = 14, .external_lex_state = 12}, - [1449] = {.lex_state = 14, .external_lex_state = 12}, - [1450] = {.lex_state = 14, .external_lex_state = 12}, - [1451] = {.lex_state = 13, .external_lex_state = 13}, - [1452] = {.lex_state = 14, .external_lex_state = 14}, - [1453] = {.lex_state = 13, .external_lex_state = 13}, - [1454] = {.lex_state = 13, .external_lex_state = 13}, - [1455] = {.lex_state = 14, .external_lex_state = 13}, - [1456] = {.lex_state = 13, .external_lex_state = 13}, - [1457] = {.lex_state = 13, .external_lex_state = 13}, - [1458] = {.lex_state = 13, .external_lex_state = 13}, - [1459] = {.lex_state = 13, .external_lex_state = 13}, - [1460] = {.lex_state = 13, .external_lex_state = 13}, - [1461] = {.lex_state = 14, .external_lex_state = 13}, - [1462] = {.lex_state = 13, .external_lex_state = 13}, - [1463] = {.lex_state = 14, .external_lex_state = 13}, - [1464] = {.lex_state = 13, .external_lex_state = 13}, - [1465] = {.lex_state = 13, .external_lex_state = 13}, - [1466] = {.lex_state = 13, .external_lex_state = 13}, - [1467] = {.lex_state = 13, .external_lex_state = 13}, - [1468] = {.lex_state = 13, .external_lex_state = 13}, - [1469] = {.lex_state = 13, .external_lex_state = 13}, - [1470] = {.lex_state = 13, .external_lex_state = 13}, - [1471] = {.lex_state = 13, .external_lex_state = 13}, - [1472] = {.lex_state = 13, .external_lex_state = 13}, + [1404] = {.lex_state = 13, .external_lex_state = 15}, + [1405] = {.lex_state = 13, .external_lex_state = 15}, + [1406] = {.lex_state = 13, .external_lex_state = 15}, + [1407] = {.lex_state = 13, .external_lex_state = 15}, + [1408] = {.lex_state = 13, .external_lex_state = 15}, + [1409] = {.lex_state = 13, .external_lex_state = 11}, + [1410] = {.lex_state = 13, .external_lex_state = 14}, + [1411] = {.lex_state = 13, .external_lex_state = 12}, + [1412] = {.lex_state = 13, .external_lex_state = 12}, + [1413] = {.lex_state = 14, .external_lex_state = 13}, + [1414] = {.lex_state = 13, .external_lex_state = 12}, + [1415] = {.lex_state = 13, .external_lex_state = 12}, + [1416] = {.lex_state = 13, .external_lex_state = 12}, + [1417] = {.lex_state = 13, .external_lex_state = 12}, + [1418] = {.lex_state = 13, .external_lex_state = 12}, + [1419] = {.lex_state = 13, .external_lex_state = 12}, + [1420] = {.lex_state = 13, .external_lex_state = 12}, + [1421] = {.lex_state = 14, .external_lex_state = 14}, + [1422] = {.lex_state = 13, .external_lex_state = 12}, + [1423] = {.lex_state = 14, .external_lex_state = 12}, + [1424] = {.lex_state = 13, .external_lex_state = 12}, + [1425] = {.lex_state = 14, .external_lex_state = 12}, + [1426] = {.lex_state = 13, .external_lex_state = 12}, + [1427] = {.lex_state = 14, .external_lex_state = 12}, + [1428] = {.lex_state = 13, .external_lex_state = 12}, + [1429] = {.lex_state = 13, .external_lex_state = 12}, + [1430] = {.lex_state = 13, .external_lex_state = 12}, + [1431] = {.lex_state = 13, .external_lex_state = 12}, + [1432] = {.lex_state = 13, .external_lex_state = 12}, + [1433] = {.lex_state = 13, .external_lex_state = 12}, + [1434] = {.lex_state = 13, .external_lex_state = 12}, + [1435] = {.lex_state = 13, .external_lex_state = 12}, + [1436] = {.lex_state = 13, .external_lex_state = 12}, + [1437] = {.lex_state = 13, .external_lex_state = 12}, + [1438] = {.lex_state = 13, .external_lex_state = 12}, + [1439] = {.lex_state = 13, .external_lex_state = 12}, + [1440] = {.lex_state = 13, .external_lex_state = 12}, + [1441] = {.lex_state = 13, .external_lex_state = 12}, + [1442] = {.lex_state = 14, .external_lex_state = 14}, + [1443] = {.lex_state = 14, .external_lex_state = 14}, + [1444] = {.lex_state = 13, .external_lex_state = 12}, + [1445] = {.lex_state = 13, .external_lex_state = 12}, + [1446] = {.lex_state = 13, .external_lex_state = 15}, + [1447] = {.lex_state = 13, .external_lex_state = 12}, + [1448] = {.lex_state = 13, .external_lex_state = 12}, + [1449] = {.lex_state = 13, .external_lex_state = 12}, + [1450] = {.lex_state = 13, .external_lex_state = 12}, + [1451] = {.lex_state = 14, .external_lex_state = 13}, + [1452] = {.lex_state = 14, .external_lex_state = 13}, + [1453] = {.lex_state = 13, .external_lex_state = 12}, + [1454] = {.lex_state = 13, .external_lex_state = 12}, + [1455] = {.lex_state = 13, .external_lex_state = 12}, + [1456] = {.lex_state = 13, .external_lex_state = 12}, + [1457] = {.lex_state = 13, .external_lex_state = 12}, + [1458] = {.lex_state = 13, .external_lex_state = 12}, + [1459] = {.lex_state = 8, .external_lex_state = 15}, + [1460] = {.lex_state = 8, .external_lex_state = 15}, + [1461] = {.lex_state = 8, .external_lex_state = 15}, + [1462] = {.lex_state = 8, .external_lex_state = 15}, + [1463] = {.lex_state = 8, .external_lex_state = 15}, + [1464] = {.lex_state = 8, .external_lex_state = 15}, + [1465] = {.lex_state = 8, .external_lex_state = 15}, + [1466] = {.lex_state = 8, .external_lex_state = 15}, + [1467] = {.lex_state = 8, .external_lex_state = 15}, + [1468] = {.lex_state = 8, .external_lex_state = 15}, + [1469] = {.lex_state = 8, .external_lex_state = 15}, + [1470] = {.lex_state = 8, .external_lex_state = 15}, + [1471] = {.lex_state = 8, .external_lex_state = 15}, + [1472] = {.lex_state = 13, .external_lex_state = 14}, [1473] = {.lex_state = 13, .external_lex_state = 13}, - [1474] = {.lex_state = 13, .external_lex_state = 13}, + [1474] = {.lex_state = 8, .external_lex_state = 15}, [1475] = {.lex_state = 8, .external_lex_state = 15}, [1476] = {.lex_state = 8, .external_lex_state = 15}, - [1477] = {.lex_state = 8, .external_lex_state = 15}, - [1478] = {.lex_state = 8, .external_lex_state = 15}, - [1479] = {.lex_state = 8, .external_lex_state = 15}, - [1480] = {.lex_state = 8, .external_lex_state = 15}, - [1481] = {.lex_state = 13, .external_lex_state = 14}, - [1482] = {.lex_state = 13, .external_lex_state = 13}, - [1483] = {.lex_state = 13, .external_lex_state = 12}, - [1484] = {.lex_state = 8, .external_lex_state = 15}, - [1485] = {.lex_state = 8, .external_lex_state = 15}, - [1486] = {.lex_state = 8, .external_lex_state = 15}, - [1487] = {.lex_state = 8, .external_lex_state = 15}, - [1488] = {.lex_state = 8, .external_lex_state = 15}, - [1489] = {.lex_state = 8, .external_lex_state = 15}, - [1490] = {.lex_state = 8, .external_lex_state = 15}, - [1491] = {.lex_state = 8, .external_lex_state = 15}, - [1492] = {.lex_state = 8, .external_lex_state = 15}, - [1493] = {.lex_state = 8, .external_lex_state = 15}, - [1494] = {.lex_state = 12, .external_lex_state = 2}, - [1495] = {.lex_state = 12, .external_lex_state = 2}, + [1477] = {.lex_state = 12, .external_lex_state = 2}, + [1478] = {.lex_state = 12, .external_lex_state = 2}, + [1479] = {.lex_state = 5, .external_lex_state = 7}, + [1480] = {.lex_state = 5, .external_lex_state = 8}, + [1481] = {.lex_state = 5, .external_lex_state = 8}, + [1482] = {.lex_state = 5, .external_lex_state = 8}, + [1483] = {.lex_state = 5, .external_lex_state = 8}, + [1484] = {.lex_state = 5, .external_lex_state = 7}, + [1485] = {.lex_state = 5, .external_lex_state = 8}, + [1486] = {.lex_state = 5, .external_lex_state = 8}, + [1487] = {.lex_state = 5, .external_lex_state = 7}, + [1488] = {.lex_state = 5, .external_lex_state = 8}, + [1489] = {.lex_state = 5, .external_lex_state = 8}, + [1490] = {.lex_state = 5, .external_lex_state = 7}, + [1491] = {.lex_state = 5, .external_lex_state = 8}, + [1492] = {.lex_state = 5, .external_lex_state = 8}, + [1493] = {.lex_state = 5, .external_lex_state = 8}, + [1494] = {.lex_state = 5, .external_lex_state = 7}, + [1495] = {.lex_state = 5, .external_lex_state = 7}, [1496] = {.lex_state = 5, .external_lex_state = 8}, - [1497] = {.lex_state = 5, .external_lex_state = 8}, + [1497] = {.lex_state = 5, .external_lex_state = 7}, [1498] = {.lex_state = 5, .external_lex_state = 8}, - [1499] = {.lex_state = 5, .external_lex_state = 8}, + [1499] = {.lex_state = 5, .external_lex_state = 7}, [1500] = {.lex_state = 5, .external_lex_state = 8}, - [1501] = {.lex_state = 5, .external_lex_state = 7}, + [1501] = {.lex_state = 5, .external_lex_state = 8}, [1502] = {.lex_state = 5, .external_lex_state = 8}, - [1503] = {.lex_state = 5, .external_lex_state = 8}, - [1504] = {.lex_state = 5, .external_lex_state = 7}, - [1505] = {.lex_state = 5, .external_lex_state = 8}, - [1506] = {.lex_state = 5, .external_lex_state = 7}, + [1503] = {.lex_state = 5, .external_lex_state = 7}, + [1504] = {.lex_state = 5, .external_lex_state = 8}, + [1505] = {.lex_state = 5, .external_lex_state = 7}, + [1506] = {.lex_state = 5, .external_lex_state = 8}, [1507] = {.lex_state = 5, .external_lex_state = 8}, - [1508] = {.lex_state = 5, .external_lex_state = 8}, - [1509] = {.lex_state = 5, .external_lex_state = 7}, - [1510] = {.lex_state = 5, .external_lex_state = 8}, - [1511] = {.lex_state = 5, .external_lex_state = 7}, + [1508] = {.lex_state = 5, .external_lex_state = 7}, + [1509] = {.lex_state = 5, .external_lex_state = 8}, + [1510] = {.lex_state = 5, .external_lex_state = 7}, + [1511] = {.lex_state = 5, .external_lex_state = 8}, [1512] = {.lex_state = 5, .external_lex_state = 8}, - [1513] = {.lex_state = 5, .external_lex_state = 7}, + [1513] = {.lex_state = 5, .external_lex_state = 8}, [1514] = {.lex_state = 5, .external_lex_state = 8}, - [1515] = {.lex_state = 5, .external_lex_state = 8}, - [1516] = {.lex_state = 5, .external_lex_state = 7}, - [1517] = {.lex_state = 5, .external_lex_state = 8}, - [1518] = {.lex_state = 5, .external_lex_state = 8}, - [1519] = {.lex_state = 5, .external_lex_state = 7}, - [1520] = {.lex_state = 5, .external_lex_state = 8}, - [1521] = {.lex_state = 5, .external_lex_state = 8}, - [1522] = {.lex_state = 5, .external_lex_state = 8}, - [1523] = {.lex_state = 5, .external_lex_state = 7}, - [1524] = {.lex_state = 5, .external_lex_state = 8}, - [1525] = {.lex_state = 5, .external_lex_state = 8}, - [1526] = {.lex_state = 5, .external_lex_state = 7}, - [1527] = {.lex_state = 5, .external_lex_state = 8}, - [1528] = {.lex_state = 5, .external_lex_state = 8}, - [1529] = {.lex_state = 5, .external_lex_state = 8}, - [1530] = {.lex_state = 5, .external_lex_state = 7}, - [1531] = {.lex_state = 5, .external_lex_state = 7}, - [1532] = {.lex_state = 5, .external_lex_state = 2}, - [1533] = {.lex_state = 5, .external_lex_state = 2}, - [1534] = {.lex_state = 5, .external_lex_state = 2}, - [1535] = {.lex_state = 5, .external_lex_state = 2}, - [1536] = {.lex_state = 5, .external_lex_state = 2}, + [1515] = {.lex_state = 5, .external_lex_state = 2}, + [1516] = {.lex_state = 5, .external_lex_state = 2}, + [1517] = {.lex_state = 5, .external_lex_state = 2}, + [1518] = {.lex_state = 5, .external_lex_state = 2}, + [1519] = {.lex_state = 5, .external_lex_state = 2}, + [1520] = {.lex_state = 5, .external_lex_state = 6}, + [1521] = {.lex_state = 5, .external_lex_state = 6}, + [1522] = {.lex_state = 5, .external_lex_state = 6}, + [1523] = {.lex_state = 5, .external_lex_state = 6}, + [1524] = {.lex_state = 5, .external_lex_state = 6}, + [1525] = {.lex_state = 5, .external_lex_state = 6}, + [1526] = {.lex_state = 5, .external_lex_state = 6}, + [1527] = {.lex_state = 5, .external_lex_state = 6}, + [1528] = {.lex_state = 5, .external_lex_state = 6}, + [1529] = {.lex_state = 5, .external_lex_state = 6}, + [1530] = {.lex_state = 5, .external_lex_state = 6}, + [1531] = {.lex_state = 5, .external_lex_state = 6}, + [1532] = {.lex_state = 5, .external_lex_state = 6}, + [1533] = {.lex_state = 5, .external_lex_state = 6}, + [1534] = {.lex_state = 5, .external_lex_state = 6}, + [1535] = {.lex_state = 5, .external_lex_state = 6}, + [1536] = {.lex_state = 5, .external_lex_state = 6}, [1537] = {.lex_state = 5, .external_lex_state = 6}, [1538] = {.lex_state = 5, .external_lex_state = 6}, [1539] = {.lex_state = 5, .external_lex_state = 6}, - [1540] = {.lex_state = 5, .external_lex_state = 6}, - [1541] = {.lex_state = 5, .external_lex_state = 6}, - [1542] = {.lex_state = 5, .external_lex_state = 6}, - [1543] = {.lex_state = 5, .external_lex_state = 6}, - [1544] = {.lex_state = 5, .external_lex_state = 6}, - [1545] = {.lex_state = 5, .external_lex_state = 6}, - [1546] = {.lex_state = 5, .external_lex_state = 6}, - [1547] = {.lex_state = 5, .external_lex_state = 6}, - [1548] = {.lex_state = 5, .external_lex_state = 6}, - [1549] = {.lex_state = 5, .external_lex_state = 6}, - [1550] = {.lex_state = 5, .external_lex_state = 6}, - [1551] = {.lex_state = 5, .external_lex_state = 6}, - [1552] = {.lex_state = 5, .external_lex_state = 6}, - [1553] = {.lex_state = 5, .external_lex_state = 6}, - [1554] = {.lex_state = 5, .external_lex_state = 6}, - [1555] = {.lex_state = 5, .external_lex_state = 6}, - [1556] = {.lex_state = 5, .external_lex_state = 6}, - [1557] = {.lex_state = 5, .external_lex_state = 2}, - [1558] = {.lex_state = 5, .external_lex_state = 2}, - [1559] = {.lex_state = 5, .external_lex_state = 2}, - [1560] = {.lex_state = 5, .external_lex_state = 2}, - [1561] = {.lex_state = 5, .external_lex_state = 2}, - [1562] = {.lex_state = 5, .external_lex_state = 2}, - [1563] = {.lex_state = 5, .external_lex_state = 2}, - [1564] = {.lex_state = 8, .external_lex_state = 9}, - [1565] = {.lex_state = 5, .external_lex_state = 2}, - [1566] = {.lex_state = 5, .external_lex_state = 2}, - [1567] = {.lex_state = 8, .external_lex_state = 9}, - [1568] = {.lex_state = 8, .external_lex_state = 13}, - [1569] = {.lex_state = 8, .external_lex_state = 13}, - [1570] = {.lex_state = 8, .external_lex_state = 14}, - [1571] = {.lex_state = 8, .external_lex_state = 15}, - [1572] = {.lex_state = 8, .external_lex_state = 15}, - [1573] = {.lex_state = 8, .external_lex_state = 14}, - [1574] = {.lex_state = 52, .external_lex_state = 12}, - [1575] = {.lex_state = 52, .external_lex_state = 12}, - [1576] = {.lex_state = 52, .external_lex_state = 12}, - [1577] = {.lex_state = 52, .external_lex_state = 12}, - [1578] = {.lex_state = 8, .external_lex_state = 13}, - [1579] = {.lex_state = 8, .external_lex_state = 13}, - [1580] = {.lex_state = 52, .external_lex_state = 14}, - [1581] = {.lex_state = 52, .external_lex_state = 2}, + [1540] = {.lex_state = 5, .external_lex_state = 2}, + [1541] = {.lex_state = 5, .external_lex_state = 2}, + [1542] = {.lex_state = 5, .external_lex_state = 2}, + [1543] = {.lex_state = 5, .external_lex_state = 2}, + [1544] = {.lex_state = 5, .external_lex_state = 2}, + [1545] = {.lex_state = 8, .external_lex_state = 11}, + [1546] = {.lex_state = 5, .external_lex_state = 2}, + [1547] = {.lex_state = 5, .external_lex_state = 2}, + [1548] = {.lex_state = 5, .external_lex_state = 2}, + [1549] = {.lex_state = 5, .external_lex_state = 2}, + [1550] = {.lex_state = 8, .external_lex_state = 11}, + [1551] = {.lex_state = 8, .external_lex_state = 12}, + [1552] = {.lex_state = 8, .external_lex_state = 12}, + [1553] = {.lex_state = 8, .external_lex_state = 14}, + [1554] = {.lex_state = 8, .external_lex_state = 15}, + [1555] = {.lex_state = 8, .external_lex_state = 14}, + [1556] = {.lex_state = 8, .external_lex_state = 15}, + [1557] = {.lex_state = 52, .external_lex_state = 13}, + [1558] = {.lex_state = 52, .external_lex_state = 13}, + [1559] = {.lex_state = 8, .external_lex_state = 12}, + [1560] = {.lex_state = 52, .external_lex_state = 13}, + [1561] = {.lex_state = 52, .external_lex_state = 13}, + [1562] = {.lex_state = 8, .external_lex_state = 12}, + [1563] = {.lex_state = 13, .external_lex_state = 13}, + [1564] = {.lex_state = 52, .external_lex_state = 14}, + [1565] = {.lex_state = 13, .external_lex_state = 13}, + [1566] = {.lex_state = 52, .external_lex_state = 2}, + [1567] = {.lex_state = 13, .external_lex_state = 13}, + [1568] = {.lex_state = 52, .external_lex_state = 14}, + [1569] = {.lex_state = 13, .external_lex_state = 13}, + [1570] = {.lex_state = 52, .external_lex_state = 2}, + [1571] = {.lex_state = 13, .external_lex_state = 13}, + [1572] = {.lex_state = 13, .external_lex_state = 13}, + [1573] = {.lex_state = 13, .external_lex_state = 14}, + [1574] = {.lex_state = 11, .external_lex_state = 11}, + [1575] = {.lex_state = 13, .external_lex_state = 14}, + [1576] = {.lex_state = 11, .external_lex_state = 11}, + [1577] = {.lex_state = 13, .external_lex_state = 14}, + [1578] = {.lex_state = 13, .external_lex_state = 14}, + [1579] = {.lex_state = 13, .external_lex_state = 14}, + [1580] = {.lex_state = 13, .external_lex_state = 14}, + [1581] = {.lex_state = 13, .external_lex_state = 15}, [1582] = {.lex_state = 13, .external_lex_state = 12}, [1583] = {.lex_state = 13, .external_lex_state = 12}, - [1584] = {.lex_state = 13, .external_lex_state = 12}, + [1584] = {.lex_state = 11, .external_lex_state = 11}, [1585] = {.lex_state = 13, .external_lex_state = 12}, [1586] = {.lex_state = 13, .external_lex_state = 12}, [1587] = {.lex_state = 13, .external_lex_state = 12}, - [1588] = {.lex_state = 52, .external_lex_state = 2}, - [1589] = {.lex_state = 52, .external_lex_state = 14}, - [1590] = {.lex_state = 11, .external_lex_state = 9}, - [1591] = {.lex_state = 13, .external_lex_state = 14}, - [1592] = {.lex_state = 13, .external_lex_state = 14}, - [1593] = {.lex_state = 13, .external_lex_state = 14}, + [1588] = {.lex_state = 13, .external_lex_state = 15}, + [1589] = {.lex_state = 13, .external_lex_state = 14}, + [1590] = {.lex_state = 13, .external_lex_state = 15}, + [1591] = {.lex_state = 13, .external_lex_state = 15}, + [1592] = {.lex_state = 13, .external_lex_state = 15}, + [1593] = {.lex_state = 11, .external_lex_state = 11}, [1594] = {.lex_state = 13, .external_lex_state = 14}, - [1595] = {.lex_state = 11, .external_lex_state = 9}, + [1595] = {.lex_state = 13, .external_lex_state = 14}, [1596] = {.lex_state = 13, .external_lex_state = 14}, - [1597] = {.lex_state = 13, .external_lex_state = 14}, + [1597] = {.lex_state = 11, .external_lex_state = 11}, [1598] = {.lex_state = 13, .external_lex_state = 15}, - [1599] = {.lex_state = 13, .external_lex_state = 13}, - [1600] = {.lex_state = 13, .external_lex_state = 13}, - [1601] = {.lex_state = 13, .external_lex_state = 15}, - [1602] = {.lex_state = 13, .external_lex_state = 15}, + [1599] = {.lex_state = 13, .external_lex_state = 15}, + [1600] = {.lex_state = 13, .external_lex_state = 15}, + [1601] = {.lex_state = 13, .external_lex_state = 14}, + [1602] = {.lex_state = 11, .external_lex_state = 11}, [1603] = {.lex_state = 13, .external_lex_state = 15}, [1604] = {.lex_state = 13, .external_lex_state = 15}, [1605] = {.lex_state = 13, .external_lex_state = 15}, - [1606] = {.lex_state = 13, .external_lex_state = 14}, - [1607] = {.lex_state = 13, .external_lex_state = 14}, - [1608] = {.lex_state = 13, .external_lex_state = 14}, - [1609] = {.lex_state = 13, .external_lex_state = 14}, + [1606] = {.lex_state = 13, .external_lex_state = 15}, + [1607] = {.lex_state = 13, .external_lex_state = 15}, + [1608] = {.lex_state = 13, .external_lex_state = 15}, + [1609] = {.lex_state = 13, .external_lex_state = 15}, [1610] = {.lex_state = 13, .external_lex_state = 15}, [1611] = {.lex_state = 13, .external_lex_state = 15}, - [1612] = {.lex_state = 13, .external_lex_state = 15}, + [1612] = {.lex_state = 13, .external_lex_state = 12}, [1613] = {.lex_state = 13, .external_lex_state = 15}, - [1614] = {.lex_state = 11, .external_lex_state = 9}, - [1615] = {.lex_state = 13, .external_lex_state = 13}, + [1614] = {.lex_state = 13, .external_lex_state = 15}, + [1615] = {.lex_state = 13, .external_lex_state = 15}, [1616] = {.lex_state = 13, .external_lex_state = 15}, - [1617] = {.lex_state = 11, .external_lex_state = 9}, - [1618] = {.lex_state = 13, .external_lex_state = 14}, - [1619] = {.lex_state = 13, .external_lex_state = 14}, - [1620] = {.lex_state = 13, .external_lex_state = 15}, - [1621] = {.lex_state = 13, .external_lex_state = 13}, - [1622] = {.lex_state = 13, .external_lex_state = 15}, - [1623] = {.lex_state = 13, .external_lex_state = 15}, - [1624] = {.lex_state = 13, .external_lex_state = 15}, - [1625] = {.lex_state = 13, .external_lex_state = 15}, - [1626] = {.lex_state = 13, .external_lex_state = 15}, - [1627] = {.lex_state = 13, .external_lex_state = 15}, - [1628] = {.lex_state = 11, .external_lex_state = 9}, - [1629] = {.lex_state = 13, .external_lex_state = 15}, - [1630] = {.lex_state = 13, .external_lex_state = 15}, - [1631] = {.lex_state = 13, .external_lex_state = 15}, - [1632] = {.lex_state = 13, .external_lex_state = 15}, - [1633] = {.lex_state = 13, .external_lex_state = 13}, - [1634] = {.lex_state = 11, .external_lex_state = 9}, - [1635] = {.lex_state = 13, .external_lex_state = 13}, - [1636] = {.lex_state = 12, .external_lex_state = 15}, + [1617] = {.lex_state = 13, .external_lex_state = 14}, + [1618] = {.lex_state = 13, .external_lex_state = 15}, + [1619] = {.lex_state = 12, .external_lex_state = 15}, + [1620] = {.lex_state = 11, .external_lex_state = 15}, + [1621] = {.lex_state = 12, .external_lex_state = 15}, + [1622] = {.lex_state = 12, .external_lex_state = 15}, + [1623] = {.lex_state = 11, .external_lex_state = 15}, + [1624] = {.lex_state = 11, .external_lex_state = 15}, + [1625] = {.lex_state = 11, .external_lex_state = 15}, + [1626] = {.lex_state = 11, .external_lex_state = 15}, + [1627] = {.lex_state = 12, .external_lex_state = 15}, + [1628] = {.lex_state = 12, .external_lex_state = 15}, + [1629] = {.lex_state = 12, .external_lex_state = 15}, + [1630] = {.lex_state = 11, .external_lex_state = 15}, + [1631] = {.lex_state = 12, .external_lex_state = 15}, + [1632] = {.lex_state = 12, .external_lex_state = 15}, + [1633] = {.lex_state = 12, .external_lex_state = 15}, + [1634] = {.lex_state = 11, .external_lex_state = 11}, + [1635] = {.lex_state = 12, .external_lex_state = 15}, + [1636] = {.lex_state = 11, .external_lex_state = 15}, [1637] = {.lex_state = 12, .external_lex_state = 15}, [1638] = {.lex_state = 11, .external_lex_state = 15}, - [1639] = {.lex_state = 12, .external_lex_state = 15}, - [1640] = {.lex_state = 11, .external_lex_state = 15}, - [1641] = {.lex_state = 11, .external_lex_state = 9}, + [1639] = {.lex_state = 5, .external_lex_state = 14}, + [1640] = {.lex_state = 5, .external_lex_state = 14}, + [1641] = {.lex_state = 5, .external_lex_state = 14}, [1642] = {.lex_state = 12, .external_lex_state = 15}, - [1643] = {.lex_state = 11, .external_lex_state = 15}, - [1644] = {.lex_state = 12, .external_lex_state = 15}, - [1645] = {.lex_state = 12, .external_lex_state = 15}, - [1646] = {.lex_state = 11, .external_lex_state = 15}, - [1647] = {.lex_state = 12, .external_lex_state = 15}, - [1648] = {.lex_state = 12, .external_lex_state = 15}, - [1649] = {.lex_state = 12, .external_lex_state = 15}, - [1650] = {.lex_state = 11, .external_lex_state = 15}, - [1651] = {.lex_state = 11, .external_lex_state = 15}, - [1652] = {.lex_state = 11, .external_lex_state = 15}, - [1653] = {.lex_state = 11, .external_lex_state = 15}, - [1654] = {.lex_state = 12, .external_lex_state = 15}, - [1655] = {.lex_state = 12, .external_lex_state = 15}, - [1656] = {.lex_state = 5, .external_lex_state = 14}, - [1657] = {.lex_state = 12, .external_lex_state = 15}, - [1658] = {.lex_state = 5, .external_lex_state = 14}, - [1659] = {.lex_state = 12, .external_lex_state = 15}, - [1660] = {.lex_state = 11, .external_lex_state = 15}, - [1661] = {.lex_state = 5, .external_lex_state = 14}, - [1662] = {.lex_state = 5, .external_lex_state = 15}, - [1663] = {.lex_state = 8, .external_lex_state = 13}, - [1664] = {.lex_state = 5, .external_lex_state = 15}, - [1665] = {.lex_state = 52, .external_lex_state = 12}, - [1666] = {.lex_state = 8, .external_lex_state = 9}, - [1667] = {.lex_state = 52, .external_lex_state = 12}, - [1668] = {.lex_state = 8, .external_lex_state = 9}, - [1669] = {.lex_state = 8, .external_lex_state = 9}, - [1670] = {.lex_state = 8, .external_lex_state = 9}, - [1671] = {.lex_state = 52, .external_lex_state = 12}, - [1672] = {.lex_state = 8, .external_lex_state = 9}, - [1673] = {.lex_state = 52, .external_lex_state = 12}, - [1674] = {.lex_state = 52, .external_lex_state = 12}, - [1675] = {.lex_state = 52, .external_lex_state = 12}, - [1676] = {.lex_state = 8, .external_lex_state = 9}, - [1677] = {.lex_state = 8, .external_lex_state = 9}, - [1678] = {.lex_state = 52, .external_lex_state = 12}, - [1679] = {.lex_state = 8, .external_lex_state = 9}, - [1680] = {.lex_state = 8, .external_lex_state = 9}, - [1681] = {.lex_state = 52, .external_lex_state = 12}, - [1682] = {.lex_state = 52, .external_lex_state = 14}, - [1683] = {.lex_state = 0, .external_lex_state = 16}, - [1684] = {.lex_state = 0, .external_lex_state = 16}, - [1685] = {.lex_state = 52, .external_lex_state = 14}, - [1686] = {.lex_state = 52, .external_lex_state = 14}, - [1687] = {.lex_state = 0, .external_lex_state = 16}, - [1688] = {.lex_state = 0, .external_lex_state = 16}, - [1689] = {.lex_state = 8, .external_lex_state = 9}, - [1690] = {.lex_state = 0, .external_lex_state = 16}, + [1643] = {.lex_state = 12, .external_lex_state = 15}, + [1644] = {.lex_state = 11, .external_lex_state = 15}, + [1645] = {.lex_state = 8, .external_lex_state = 12}, + [1646] = {.lex_state = 5, .external_lex_state = 15}, + [1647] = {.lex_state = 5, .external_lex_state = 15}, + [1648] = {.lex_state = 8, .external_lex_state = 11}, + [1649] = {.lex_state = 8, .external_lex_state = 11}, + [1650] = {.lex_state = 52, .external_lex_state = 13}, + [1651] = {.lex_state = 8, .external_lex_state = 11}, + [1652] = {.lex_state = 8, .external_lex_state = 11}, + [1653] = {.lex_state = 8, .external_lex_state = 11}, + [1654] = {.lex_state = 8, .external_lex_state = 11}, + [1655] = {.lex_state = 52, .external_lex_state = 13}, + [1656] = {.lex_state = 52, .external_lex_state = 13}, + [1657] = {.lex_state = 52, .external_lex_state = 13}, + [1658] = {.lex_state = 8, .external_lex_state = 11}, + [1659] = {.lex_state = 52, .external_lex_state = 13}, + [1660] = {.lex_state = 52, .external_lex_state = 13}, + [1661] = {.lex_state = 52, .external_lex_state = 13}, + [1662] = {.lex_state = 52, .external_lex_state = 13}, + [1663] = {.lex_state = 8, .external_lex_state = 11}, + [1664] = {.lex_state = 8, .external_lex_state = 11}, + [1665] = {.lex_state = 52, .external_lex_state = 14}, + [1666] = {.lex_state = 0, .external_lex_state = 16}, + [1667] = {.lex_state = 0, .external_lex_state = 16}, + [1668] = {.lex_state = 52, .external_lex_state = 14}, + [1669] = {.lex_state = 0, .external_lex_state = 16}, + [1670] = {.lex_state = 8, .external_lex_state = 12}, + [1671] = {.lex_state = 8, .external_lex_state = 12}, + [1672] = {.lex_state = 0, .external_lex_state = 16}, + [1673] = {.lex_state = 8, .external_lex_state = 12}, + [1674] = {.lex_state = 8, .external_lex_state = 12}, + [1675] = {.lex_state = 0, .external_lex_state = 16}, + [1676] = {.lex_state = 52, .external_lex_state = 14}, + [1677] = {.lex_state = 52, .external_lex_state = 14}, + [1678] = {.lex_state = 52, .external_lex_state = 14}, + [1679] = {.lex_state = 0, .external_lex_state = 16}, + [1680] = {.lex_state = 8, .external_lex_state = 12}, + [1681] = {.lex_state = 0, .external_lex_state = 16}, + [1682] = {.lex_state = 0, .external_lex_state = 16}, + [1683] = {.lex_state = 52, .external_lex_state = 14}, + [1684] = {.lex_state = 52, .external_lex_state = 14}, + [1685] = {.lex_state = 8, .external_lex_state = 11}, + [1686] = {.lex_state = 0, .external_lex_state = 16}, + [1687] = {.lex_state = 52, .external_lex_state = 14}, + [1688] = {.lex_state = 52, .external_lex_state = 14}, + [1689] = {.lex_state = 0, .external_lex_state = 16}, + [1690] = {.lex_state = 52, .external_lex_state = 14}, [1691] = {.lex_state = 0, .external_lex_state = 16}, - [1692] = {.lex_state = 52, .external_lex_state = 14}, + [1692] = {.lex_state = 0, .external_lex_state = 16}, [1693] = {.lex_state = 52, .external_lex_state = 14}, - [1694] = {.lex_state = 52, .external_lex_state = 14}, - [1695] = {.lex_state = 8, .external_lex_state = 13}, + [1694] = {.lex_state = 8, .external_lex_state = 12}, + [1695] = {.lex_state = 52, .external_lex_state = 14}, [1696] = {.lex_state = 0, .external_lex_state = 16}, [1697] = {.lex_state = 0, .external_lex_state = 16}, - [1698] = {.lex_state = 52, .external_lex_state = 14}, + [1698] = {.lex_state = 0, .external_lex_state = 16}, [1699] = {.lex_state = 52, .external_lex_state = 14}, [1700] = {.lex_state = 52, .external_lex_state = 14}, - [1701] = {.lex_state = 0, .external_lex_state = 16}, + [1701] = {.lex_state = 52, .external_lex_state = 14}, [1702] = {.lex_state = 0, .external_lex_state = 16}, - [1703] = {.lex_state = 52, .external_lex_state = 14}, - [1704] = {.lex_state = 52, .external_lex_state = 14}, - [1705] = {.lex_state = 8, .external_lex_state = 13}, - [1706] = {.lex_state = 8, .external_lex_state = 13}, - [1707] = {.lex_state = 0, .external_lex_state = 16}, - [1708] = {.lex_state = 52, .external_lex_state = 14}, - [1709] = {.lex_state = 0, .external_lex_state = 16}, - [1710] = {.lex_state = 52, .external_lex_state = 14}, - [1711] = {.lex_state = 0, .external_lex_state = 16}, - [1712] = {.lex_state = 0, .external_lex_state = 16}, - [1713] = {.lex_state = 52, .external_lex_state = 14}, - [1714] = {.lex_state = 52, .external_lex_state = 14}, - [1715] = {.lex_state = 0, .external_lex_state = 16}, - [1716] = {.lex_state = 0, .external_lex_state = 16}, + [1703] = {.lex_state = 0, .external_lex_state = 16}, + [1704] = {.lex_state = 8, .external_lex_state = 12}, + [1705] = {.lex_state = 52, .external_lex_state = 12}, + [1706] = {.lex_state = 0, .external_lex_state = 16}, + [1707] = {.lex_state = 52, .external_lex_state = 12}, + [1708] = {.lex_state = 0, .external_lex_state = 16}, + [1709] = {.lex_state = 52, .external_lex_state = 12}, + [1710] = {.lex_state = 8, .external_lex_state = 12}, + [1711] = {.lex_state = 8, .external_lex_state = 12}, + [1712] = {.lex_state = 52, .external_lex_state = 12}, + [1713] = {.lex_state = 52, .external_lex_state = 12}, + [1714] = {.lex_state = 52, .external_lex_state = 12}, + [1715] = {.lex_state = 52, .external_lex_state = 12}, + [1716] = {.lex_state = 52, .external_lex_state = 12}, [1717] = {.lex_state = 52, .external_lex_state = 14}, [1718] = {.lex_state = 52, .external_lex_state = 14}, - [1719] = {.lex_state = 0, .external_lex_state = 16}, - [1720] = {.lex_state = 0, .external_lex_state = 16}, - [1721] = {.lex_state = 52, .external_lex_state = 13}, - [1722] = {.lex_state = 8, .external_lex_state = 13}, - [1723] = {.lex_state = 52, .external_lex_state = 13}, - [1724] = {.lex_state = 8, .external_lex_state = 13}, - [1725] = {.lex_state = 52, .external_lex_state = 13}, - [1726] = {.lex_state = 8, .external_lex_state = 13}, - [1727] = {.lex_state = 52, .external_lex_state = 13}, - [1728] = {.lex_state = 52, .external_lex_state = 13}, - [1729] = {.lex_state = 8, .external_lex_state = 13}, - [1730] = {.lex_state = 52, .external_lex_state = 13}, - [1731] = {.lex_state = 52, .external_lex_state = 13}, - [1732] = {.lex_state = 52, .external_lex_state = 13}, - [1733] = {.lex_state = 8, .external_lex_state = 13}, - [1734] = {.lex_state = 8, .external_lex_state = 13}, - [1735] = {.lex_state = 0, .external_lex_state = 16}, + [1719] = {.lex_state = 8, .external_lex_state = 14}, + [1720] = {.lex_state = 52, .external_lex_state = 13}, + [1721] = {.lex_state = 8, .external_lex_state = 14}, + [1722] = {.lex_state = 8, .external_lex_state = 14}, + [1723] = {.lex_state = 8, .external_lex_state = 15}, + [1724] = {.lex_state = 8, .external_lex_state = 11}, + [1725] = {.lex_state = 8, .external_lex_state = 15}, + [1726] = {.lex_state = 8, .external_lex_state = 15}, + [1727] = {.lex_state = 8, .external_lex_state = 14}, + [1728] = {.lex_state = 8, .external_lex_state = 15}, + [1729] = {.lex_state = 8, .external_lex_state = 15}, + [1730] = {.lex_state = 8, .external_lex_state = 15}, + [1731] = {.lex_state = 8, .external_lex_state = 15}, + [1732] = {.lex_state = 8, .external_lex_state = 14}, + [1733] = {.lex_state = 8, .external_lex_state = 14}, + [1734] = {.lex_state = 52, .external_lex_state = 13}, + [1735] = {.lex_state = 8, .external_lex_state = 15}, [1736] = {.lex_state = 8, .external_lex_state = 14}, - [1737] = {.lex_state = 52, .external_lex_state = 12}, - [1738] = {.lex_state = 8, .external_lex_state = 15}, - [1739] = {.lex_state = 8, .external_lex_state = 14}, - [1740] = {.lex_state = 8, .external_lex_state = 9}, - [1741] = {.lex_state = 8, .external_lex_state = 15}, - [1742] = {.lex_state = 8, .external_lex_state = 15}, - [1743] = {.lex_state = 8, .external_lex_state = 15}, - [1744] = {.lex_state = 8, .external_lex_state = 15}, - [1745] = {.lex_state = 8, .external_lex_state = 14}, - [1746] = {.lex_state = 8, .external_lex_state = 14}, + [1737] = {.lex_state = 8, .external_lex_state = 14}, + [1738] = {.lex_state = 8, .external_lex_state = 14}, + [1739] = {.lex_state = 8, .external_lex_state = 15}, + [1740] = {.lex_state = 8, .external_lex_state = 14}, + [1741] = {.lex_state = 52, .external_lex_state = 13}, + [1742] = {.lex_state = 52, .external_lex_state = 13}, + [1743] = {.lex_state = 52, .external_lex_state = 13}, + [1744] = {.lex_state = 8, .external_lex_state = 12}, + [1745] = {.lex_state = 8, .external_lex_state = 12}, + [1746] = {.lex_state = 8, .external_lex_state = 15}, [1747] = {.lex_state = 8, .external_lex_state = 15}, - [1748] = {.lex_state = 8, .external_lex_state = 14}, - [1749] = {.lex_state = 8, .external_lex_state = 14}, - [1750] = {.lex_state = 8, .external_lex_state = 14}, - [1751] = {.lex_state = 8, .external_lex_state = 15}, - [1752] = {.lex_state = 8, .external_lex_state = 15}, - [1753] = {.lex_state = 8, .external_lex_state = 15}, - [1754] = {.lex_state = 8, .external_lex_state = 14}, - [1755] = {.lex_state = 8, .external_lex_state = 14}, - [1756] = {.lex_state = 52, .external_lex_state = 12}, - [1757] = {.lex_state = 8, .external_lex_state = 14}, - [1758] = {.lex_state = 8, .external_lex_state = 15}, - [1759] = {.lex_state = 8, .external_lex_state = 13}, - [1760] = {.lex_state = 52, .external_lex_state = 12}, - [1761] = {.lex_state = 52, .external_lex_state = 12}, + [1748] = {.lex_state = 8, .external_lex_state = 12}, + [1749] = {.lex_state = 52, .external_lex_state = 13}, + [1750] = {.lex_state = 8, .external_lex_state = 12}, + [1751] = {.lex_state = 8, .external_lex_state = 12}, + [1752] = {.lex_state = 52, .external_lex_state = 13}, + [1753] = {.lex_state = 8, .external_lex_state = 12}, + [1754] = {.lex_state = 52, .external_lex_state = 13}, + [1755] = {.lex_state = 52, .external_lex_state = 13}, + [1756] = {.lex_state = 8, .external_lex_state = 12}, + [1757] = {.lex_state = 52, .external_lex_state = 13}, + [1758] = {.lex_state = 52, .external_lex_state = 13}, + [1759] = {.lex_state = 52, .external_lex_state = 13}, + [1760] = {.lex_state = 52, .external_lex_state = 13}, + [1761] = {.lex_state = 52, .external_lex_state = 13}, [1762] = {.lex_state = 8, .external_lex_state = 15}, - [1763] = {.lex_state = 8, .external_lex_state = 13}, - [1764] = {.lex_state = 8, .external_lex_state = 13}, - [1765] = {.lex_state = 52, .external_lex_state = 12}, - [1766] = {.lex_state = 8, .external_lex_state = 13}, - [1767] = {.lex_state = 8, .external_lex_state = 13}, - [1768] = {.lex_state = 8, .external_lex_state = 13}, - [1769] = {.lex_state = 52, .external_lex_state = 12}, - [1770] = {.lex_state = 52, .external_lex_state = 9}, - [1771] = {.lex_state = 8, .external_lex_state = 13}, - [1772] = {.lex_state = 52, .external_lex_state = 12}, - [1773] = {.lex_state = 8, .external_lex_state = 13}, - [1774] = {.lex_state = 8, .external_lex_state = 15}, - [1775] = {.lex_state = 52, .external_lex_state = 12}, - [1776] = {.lex_state = 52, .external_lex_state = 12}, - [1777] = {.lex_state = 8, .external_lex_state = 13}, - [1778] = {.lex_state = 52, .external_lex_state = 12}, - [1779] = {.lex_state = 52, .external_lex_state = 12}, - [1780] = {.lex_state = 8, .external_lex_state = 13}, - [1781] = {.lex_state = 8, .external_lex_state = 15}, + [1763] = {.lex_state = 52, .external_lex_state = 13}, + [1764] = {.lex_state = 52, .external_lex_state = 13}, + [1765] = {.lex_state = 52, .external_lex_state = 13}, + [1766] = {.lex_state = 52, .external_lex_state = 13}, + [1767] = {.lex_state = 8, .external_lex_state = 15}, + [1768] = {.lex_state = 52, .external_lex_state = 13}, + [1769] = {.lex_state = 52, .external_lex_state = 13}, + [1770] = {.lex_state = 52, .external_lex_state = 13}, + [1771] = {.lex_state = 8, .external_lex_state = 12}, + [1772] = {.lex_state = 8, .external_lex_state = 15}, + [1773] = {.lex_state = 52, .external_lex_state = 13}, + [1774] = {.lex_state = 8, .external_lex_state = 12}, + [1775] = {.lex_state = 52, .external_lex_state = 11}, + [1776] = {.lex_state = 8, .external_lex_state = 12}, + [1777] = {.lex_state = 52, .external_lex_state = 12}, + [1778] = {.lex_state = 52, .external_lex_state = 11}, + [1779] = {.lex_state = 52, .external_lex_state = 14}, + [1780] = {.lex_state = 52, .external_lex_state = 12}, + [1781] = {.lex_state = 52, .external_lex_state = 11}, [1782] = {.lex_state = 52, .external_lex_state = 12}, - [1783] = {.lex_state = 52, .external_lex_state = 12}, + [1783] = {.lex_state = 0, .external_lex_state = 16}, [1784] = {.lex_state = 52, .external_lex_state = 12}, - [1785] = {.lex_state = 52, .external_lex_state = 12}, + [1785] = {.lex_state = 52, .external_lex_state = 11}, [1786] = {.lex_state = 52, .external_lex_state = 12}, - [1787] = {.lex_state = 52, .external_lex_state = 12}, - [1788] = {.lex_state = 52, .external_lex_state = 12}, - [1789] = {.lex_state = 8, .external_lex_state = 15}, - [1790] = {.lex_state = 52, .external_lex_state = 12}, - [1791] = {.lex_state = 52, .external_lex_state = 12}, + [1787] = {.lex_state = 7, .external_lex_state = 13}, + [1788] = {.lex_state = 52, .external_lex_state = 14}, + [1789] = {.lex_state = 52, .external_lex_state = 13}, + [1790] = {.lex_state = 52, .external_lex_state = 14}, + [1791] = {.lex_state = 52, .external_lex_state = 2}, [1792] = {.lex_state = 52, .external_lex_state = 12}, - [1793] = {.lex_state = 52, .external_lex_state = 12}, - [1794] = {.lex_state = 7, .external_lex_state = 13}, - [1795] = {.lex_state = 52, .external_lex_state = 13}, + [1793] = {.lex_state = 52, .external_lex_state = 11}, + [1794] = {.lex_state = 52, .external_lex_state = 14}, + [1795] = {.lex_state = 52, .external_lex_state = 14}, [1796] = {.lex_state = 52, .external_lex_state = 14}, - [1797] = {.lex_state = 0, .external_lex_state = 16}, - [1798] = {.lex_state = 52, .external_lex_state = 15}, - [1799] = {.lex_state = 52, .external_lex_state = 9}, - [1800] = {.lex_state = 0, .external_lex_state = 16}, - [1801] = {.lex_state = 52, .external_lex_state = 13}, - [1802] = {.lex_state = 8, .external_lex_state = 15}, + [1797] = {.lex_state = 52, .external_lex_state = 14}, + [1798] = {.lex_state = 52, .external_lex_state = 13}, + [1799] = {.lex_state = 52, .external_lex_state = 11}, + [1800] = {.lex_state = 52, .external_lex_state = 12}, + [1801] = {.lex_state = 52, .external_lex_state = 11}, + [1802] = {.lex_state = 52, .external_lex_state = 14}, [1803] = {.lex_state = 52, .external_lex_state = 12}, - [1804] = {.lex_state = 52, .external_lex_state = 14}, - [1805] = {.lex_state = 52, .external_lex_state = 9}, - [1806] = {.lex_state = 52, .external_lex_state = 14}, - [1807] = {.lex_state = 9, .external_lex_state = 17}, - [1808] = {.lex_state = 52, .external_lex_state = 12}, - [1809] = {.lex_state = 52, .external_lex_state = 13}, + [1804] = {.lex_state = 0, .external_lex_state = 16}, + [1805] = {.lex_state = 52, .external_lex_state = 11}, + [1806] = {.lex_state = 7, .external_lex_state = 12}, + [1807] = {.lex_state = 52, .external_lex_state = 14}, + [1808] = {.lex_state = 52, .external_lex_state = 14}, + [1809] = {.lex_state = 52, .external_lex_state = 12}, [1810] = {.lex_state = 52, .external_lex_state = 14}, - [1811] = {.lex_state = 52, .external_lex_state = 13}, - [1812] = {.lex_state = 52, .external_lex_state = 9}, - [1813] = {.lex_state = 52, .external_lex_state = 13}, - [1814] = {.lex_state = 52, .external_lex_state = 13}, + [1811] = {.lex_state = 52, .external_lex_state = 12}, + [1812] = {.lex_state = 52, .external_lex_state = 12}, + [1813] = {.lex_state = 52, .external_lex_state = 12}, + [1814] = {.lex_state = 52, .external_lex_state = 12}, [1815] = {.lex_state = 7, .external_lex_state = 14}, - [1816] = {.lex_state = 52, .external_lex_state = 13}, - [1817] = {.lex_state = 52, .external_lex_state = 13}, - [1818] = {.lex_state = 52, .external_lex_state = 14}, - [1819] = {.lex_state = 52, .external_lex_state = 13}, - [1820] = {.lex_state = 52, .external_lex_state = 2}, - [1821] = {.lex_state = 9, .external_lex_state = 17}, - [1822] = {.lex_state = 52, .external_lex_state = 12}, - [1823] = {.lex_state = 9, .external_lex_state = 17}, - [1824] = {.lex_state = 52, .external_lex_state = 9}, - [1825] = {.lex_state = 52, .external_lex_state = 14}, - [1826] = {.lex_state = 52, .external_lex_state = 9}, - [1827] = {.lex_state = 52, .external_lex_state = 9}, - [1828] = {.lex_state = 52, .external_lex_state = 9}, - [1829] = {.lex_state = 9, .external_lex_state = 17}, - [1830] = {.lex_state = 52, .external_lex_state = 13}, - [1831] = {.lex_state = 52, .external_lex_state = 13}, - [1832] = {.lex_state = 52, .external_lex_state = 12}, + [1816] = {.lex_state = 52, .external_lex_state = 11}, + [1817] = {.lex_state = 52, .external_lex_state = 15}, + [1818] = {.lex_state = 8, .external_lex_state = 15}, + [1819] = {.lex_state = 52, .external_lex_state = 15}, + [1820] = {.lex_state = 52, .external_lex_state = 13}, + [1821] = {.lex_state = 52, .external_lex_state = 13}, + [1822] = {.lex_state = 52, .external_lex_state = 14}, + [1823] = {.lex_state = 52, .external_lex_state = 11}, + [1824] = {.lex_state = 52, .external_lex_state = 12}, + [1825] = {.lex_state = 52, .external_lex_state = 11}, + [1826] = {.lex_state = 52, .external_lex_state = 15}, + [1827] = {.lex_state = 52, .external_lex_state = 14}, + [1828] = {.lex_state = 7, .external_lex_state = 13}, + [1829] = {.lex_state = 52, .external_lex_state = 13}, + [1830] = {.lex_state = 7, .external_lex_state = 14}, + [1831] = {.lex_state = 52, .external_lex_state = 15}, + [1832] = {.lex_state = 52, .external_lex_state = 15}, [1833] = {.lex_state = 52, .external_lex_state = 13}, - [1834] = {.lex_state = 52, .external_lex_state = 9}, - [1835] = {.lex_state = 52, .external_lex_state = 14}, - [1836] = {.lex_state = 52, .external_lex_state = 15}, - [1837] = {.lex_state = 52, .external_lex_state = 14}, - [1838] = {.lex_state = 7, .external_lex_state = 12}, - [1839] = {.lex_state = 52, .external_lex_state = 14}, - [1840] = {.lex_state = 52, .external_lex_state = 14}, - [1841] = {.lex_state = 52, .external_lex_state = 14}, - [1842] = {.lex_state = 52, .external_lex_state = 14}, - [1843] = {.lex_state = 52, .external_lex_state = 9}, - [1844] = {.lex_state = 52, .external_lex_state = 13}, - [1845] = {.lex_state = 52, .external_lex_state = 14}, - [1846] = {.lex_state = 52, .external_lex_state = 13}, - [1847] = {.lex_state = 52, .external_lex_state = 13}, - [1848] = {.lex_state = 52, .external_lex_state = 15}, + [1834] = {.lex_state = 7, .external_lex_state = 14}, + [1835] = {.lex_state = 7, .external_lex_state = 13}, + [1836] = {.lex_state = 52, .external_lex_state = 13}, + [1837] = {.lex_state = 52, .external_lex_state = 7}, + [1838] = {.lex_state = 52, .external_lex_state = 13}, + [1839] = {.lex_state = 52, .external_lex_state = 15}, + [1840] = {.lex_state = 52, .external_lex_state = 12}, + [1841] = {.lex_state = 7, .external_lex_state = 15}, + [1842] = {.lex_state = 52, .external_lex_state = 15}, + [1843] = {.lex_state = 52, .external_lex_state = 14}, + [1844] = {.lex_state = 7, .external_lex_state = 13}, + [1845] = {.lex_state = 52, .external_lex_state = 12}, + [1846] = {.lex_state = 52, .external_lex_state = 15}, + [1847] = {.lex_state = 52, .external_lex_state = 11}, + [1848] = {.lex_state = 52, .external_lex_state = 14}, [1849] = {.lex_state = 52, .external_lex_state = 15}, [1850] = {.lex_state = 52, .external_lex_state = 15}, [1851] = {.lex_state = 52, .external_lex_state = 12}, - [1852] = {.lex_state = 52, .external_lex_state = 12}, - [1853] = {.lex_state = 7, .external_lex_state = 14}, - [1854] = {.lex_state = 52, .external_lex_state = 12}, + [1852] = {.lex_state = 52, .external_lex_state = 14}, + [1853] = {.lex_state = 52, .external_lex_state = 8}, + [1854] = {.lex_state = 52, .external_lex_state = 15}, [1855] = {.lex_state = 52, .external_lex_state = 13}, - [1856] = {.lex_state = 7, .external_lex_state = 15}, - [1857] = {.lex_state = 52, .external_lex_state = 12}, - [1858] = {.lex_state = 52, .external_lex_state = 8}, - [1859] = {.lex_state = 7, .external_lex_state = 13}, - [1860] = {.lex_state = 52, .external_lex_state = 12}, - [1861] = {.lex_state = 52, .external_lex_state = 13}, - [1862] = {.lex_state = 52, .external_lex_state = 9}, - [1863] = {.lex_state = 52, .external_lex_state = 14}, - [1864] = {.lex_state = 52, .external_lex_state = 15}, - [1865] = {.lex_state = 52, .external_lex_state = 14}, - [1866] = {.lex_state = 7, .external_lex_state = 14}, + [1856] = {.lex_state = 52, .external_lex_state = 13}, + [1857] = {.lex_state = 52, .external_lex_state = 14}, + [1858] = {.lex_state = 52, .external_lex_state = 12}, + [1859] = {.lex_state = 52, .external_lex_state = 14}, + [1860] = {.lex_state = 52, .external_lex_state = 13}, + [1861] = {.lex_state = 7, .external_lex_state = 12}, + [1862] = {.lex_state = 52, .external_lex_state = 12}, + [1863] = {.lex_state = 7, .external_lex_state = 12}, + [1864] = {.lex_state = 7, .external_lex_state = 14}, + [1865] = {.lex_state = 52, .external_lex_state = 12}, + [1866] = {.lex_state = 52, .external_lex_state = 12}, [1867] = {.lex_state = 52, .external_lex_state = 13}, - [1868] = {.lex_state = 7, .external_lex_state = 14}, - [1869] = {.lex_state = 52, .external_lex_state = 15}, - [1870] = {.lex_state = 52, .external_lex_state = 12}, - [1871] = {.lex_state = 52, .external_lex_state = 12}, - [1872] = {.lex_state = 52, .external_lex_state = 15}, - [1873] = {.lex_state = 52, .external_lex_state = 13}, - [1874] = {.lex_state = 52, .external_lex_state = 15}, - [1875] = {.lex_state = 7, .external_lex_state = 13}, - [1876] = {.lex_state = 52, .external_lex_state = 12}, - [1877] = {.lex_state = 52, .external_lex_state = 7}, - [1878] = {.lex_state = 52, .external_lex_state = 13}, - [1879] = {.lex_state = 52, .external_lex_state = 12}, - [1880] = {.lex_state = 52, .external_lex_state = 13}, - [1881] = {.lex_state = 52, .external_lex_state = 14}, - [1882] = {.lex_state = 52, .external_lex_state = 12}, - [1883] = {.lex_state = 7, .external_lex_state = 12}, - [1884] = {.lex_state = 7, .external_lex_state = 12}, - [1885] = {.lex_state = 7, .external_lex_state = 13}, - [1886] = {.lex_state = 52, .external_lex_state = 9}, - [1887] = {.lex_state = 52, .external_lex_state = 14}, - [1888] = {.lex_state = 52, .external_lex_state = 15}, - [1889] = {.lex_state = 52, .external_lex_state = 12}, - [1890] = {.lex_state = 52, .external_lex_state = 12}, - [1891] = {.lex_state = 52, .external_lex_state = 15}, - [1892] = {.lex_state = 7, .external_lex_state = 12}, - [1893] = {.lex_state = 52, .external_lex_state = 14}, - [1894] = {.lex_state = 52, .external_lex_state = 6}, - [1895] = {.lex_state = 52, .external_lex_state = 15}, - [1896] = {.lex_state = 52, .external_lex_state = 15}, - [1897] = {.lex_state = 0, .external_lex_state = 16}, - [1898] = {.lex_state = 52, .external_lex_state = 15}, - [1899] = {.lex_state = 52, .external_lex_state = 15}, - [1900] = {.lex_state = 52, .external_lex_state = 14}, - [1901] = {.lex_state = 7, .external_lex_state = 9}, - [1902] = {.lex_state = 8, .external_lex_state = 9}, - [1903] = {.lex_state = 52, .external_lex_state = 12}, - [1904] = {.lex_state = 52, .external_lex_state = 12}, - [1905] = {.lex_state = 52, .external_lex_state = 13}, - [1906] = {.lex_state = 52, .external_lex_state = 13}, + [1868] = {.lex_state = 52, .external_lex_state = 13}, + [1869] = {.lex_state = 52, .external_lex_state = 13}, + [1870] = {.lex_state = 7, .external_lex_state = 12}, + [1871] = {.lex_state = 52, .external_lex_state = 13}, + [1872] = {.lex_state = 52, .external_lex_state = 13}, + [1873] = {.lex_state = 52, .external_lex_state = 6}, + [1874] = {.lex_state = 7, .external_lex_state = 11}, + [1875] = {.lex_state = 52, .external_lex_state = 13}, + [1876] = {.lex_state = 8, .external_lex_state = 11}, + [1877] = {.lex_state = 52, .external_lex_state = 12}, + [1878] = {.lex_state = 52, .external_lex_state = 12}, + [1879] = {.lex_state = 8, .external_lex_state = 14}, + [1880] = {.lex_state = 52, .external_lex_state = 15}, + [1881] = {.lex_state = 8, .external_lex_state = 14}, + [1882] = {.lex_state = 52, .external_lex_state = 14}, + [1883] = {.lex_state = 8, .external_lex_state = 11}, + [1884] = {.lex_state = 52, .external_lex_state = 14}, + [1885] = {.lex_state = 8, .external_lex_state = 11}, + [1886] = {.lex_state = 52, .external_lex_state = 15}, + [1887] = {.lex_state = 52, .external_lex_state = 15}, + [1888] = {.lex_state = 52, .external_lex_state = 12}, + [1889] = {.lex_state = 52, .external_lex_state = 13}, + [1890] = {.lex_state = 52, .external_lex_state = 13}, + [1891] = {.lex_state = 0, .external_lex_state = 16}, + [1892] = {.lex_state = 52, .external_lex_state = 12}, + [1893] = {.lex_state = 0, .external_lex_state = 16}, + [1894] = {.lex_state = 52, .external_lex_state = 14}, + [1895] = {.lex_state = 8, .external_lex_state = 12}, + [1896] = {.lex_state = 52, .external_lex_state = 13}, + [1897] = {.lex_state = 52, .external_lex_state = 15}, + [1898] = {.lex_state = 52, .external_lex_state = 11}, + [1899] = {.lex_state = 52, .external_lex_state = 11}, + [1900] = {.lex_state = 52, .external_lex_state = 12}, + [1901] = {.lex_state = 8, .external_lex_state = 11}, + [1902] = {.lex_state = 52, .external_lex_state = 15}, + [1903] = {.lex_state = 52, .external_lex_state = 14}, + [1904] = {.lex_state = 52, .external_lex_state = 15}, + [1905] = {.lex_state = 52, .external_lex_state = 12}, + [1906] = {.lex_state = 52, .external_lex_state = 12}, [1907] = {.lex_state = 52, .external_lex_state = 14}, - [1908] = {.lex_state = 52, .external_lex_state = 14}, - [1909] = {.lex_state = 8, .external_lex_state = 15}, - [1910] = {.lex_state = 7, .external_lex_state = 12}, - [1911] = {.lex_state = 8, .external_lex_state = 13}, - [1912] = {.lex_state = 52, .external_lex_state = 15}, - [1913] = {.lex_state = 52, .external_lex_state = 15}, - [1914] = {.lex_state = 52, .external_lex_state = 15}, - [1915] = {.lex_state = 52, .external_lex_state = 14}, - [1916] = {.lex_state = 52, .external_lex_state = 12}, - [1917] = {.lex_state = 8, .external_lex_state = 9}, - [1918] = {.lex_state = 7, .external_lex_state = 13}, - [1919] = {.lex_state = 8, .external_lex_state = 14}, - [1920] = {.lex_state = 8, .external_lex_state = 9}, - [1921] = {.lex_state = 0, .external_lex_state = 16}, - [1922] = {.lex_state = 8, .external_lex_state = 9}, - [1923] = {.lex_state = 8, .external_lex_state = 14}, - [1924] = {.lex_state = 52, .external_lex_state = 9}, - [1925] = {.lex_state = 52, .external_lex_state = 13}, - [1926] = {.lex_state = 52, .external_lex_state = 12}, - [1927] = {.lex_state = 52, .external_lex_state = 13}, - [1928] = {.lex_state = 52, .external_lex_state = 9}, + [1908] = {.lex_state = 52, .external_lex_state = 13}, + [1909] = {.lex_state = 8, .external_lex_state = 11}, + [1910] = {.lex_state = 52, .external_lex_state = 13}, + [1911] = {.lex_state = 52, .external_lex_state = 13}, + [1912] = {.lex_state = 52, .external_lex_state = 13}, + [1913] = {.lex_state = 52, .external_lex_state = 12}, + [1914] = {.lex_state = 8, .external_lex_state = 12}, + [1915] = {.lex_state = 0, .external_lex_state = 16}, + [1916] = {.lex_state = 52, .external_lex_state = 14}, + [1917] = {.lex_state = 52, .external_lex_state = 14}, + [1918] = {.lex_state = 52, .external_lex_state = 15}, + [1919] = {.lex_state = 52, .external_lex_state = 14}, + [1920] = {.lex_state = 52, .external_lex_state = 13}, + [1921] = {.lex_state = 8, .external_lex_state = 14}, + [1922] = {.lex_state = 8, .external_lex_state = 14}, + [1923] = {.lex_state = 52, .external_lex_state = 15}, + [1924] = {.lex_state = 8, .external_lex_state = 14}, + [1925] = {.lex_state = 7, .external_lex_state = 11}, + [1926] = {.lex_state = 8, .external_lex_state = 11}, + [1927] = {.lex_state = 52, .external_lex_state = 14}, + [1928] = {.lex_state = 52, .external_lex_state = 14}, [1929] = {.lex_state = 52, .external_lex_state = 12}, - [1930] = {.lex_state = 7, .external_lex_state = 14}, - [1931] = {.lex_state = 52, .external_lex_state = 12}, - [1932] = {.lex_state = 52, .external_lex_state = 14}, - [1933] = {.lex_state = 52, .external_lex_state = 15}, + [1930] = {.lex_state = 8, .external_lex_state = 14}, + [1931] = {.lex_state = 8, .external_lex_state = 12}, + [1932] = {.lex_state = 52, .external_lex_state = 12}, + [1933] = {.lex_state = 8, .external_lex_state = 15}, [1934] = {.lex_state = 52, .external_lex_state = 15}, - [1935] = {.lex_state = 8, .external_lex_state = 15}, + [1935] = {.lex_state = 52, .external_lex_state = 15}, [1936] = {.lex_state = 52, .external_lex_state = 15}, - [1937] = {.lex_state = 52, .external_lex_state = 12}, - [1938] = {.lex_state = 8, .external_lex_state = 9}, - [1939] = {.lex_state = 52, .external_lex_state = 13}, - [1940] = {.lex_state = 7, .external_lex_state = 9}, - [1941] = {.lex_state = 52, .external_lex_state = 13}, - [1942] = {.lex_state = 0, .external_lex_state = 16}, - [1943] = {.lex_state = 8, .external_lex_state = 13}, - [1944] = {.lex_state = 52, .external_lex_state = 12}, - [1945] = {.lex_state = 52, .external_lex_state = 15}, - [1946] = {.lex_state = 52, .external_lex_state = 13}, - [1947] = {.lex_state = 8, .external_lex_state = 15}, - [1948] = {.lex_state = 52, .external_lex_state = 14}, - [1949] = {.lex_state = 52, .external_lex_state = 12}, - [1950] = {.lex_state = 8, .external_lex_state = 13}, - [1951] = {.lex_state = 52, .external_lex_state = 13}, - [1952] = {.lex_state = 8, .external_lex_state = 9}, + [1937] = {.lex_state = 52, .external_lex_state = 14}, + [1938] = {.lex_state = 52, .external_lex_state = 14}, + [1939] = {.lex_state = 8, .external_lex_state = 15}, + [1940] = {.lex_state = 8, .external_lex_state = 11}, + [1941] = {.lex_state = 52, .external_lex_state = 14}, + [1942] = {.lex_state = 52, .external_lex_state = 14}, + [1943] = {.lex_state = 52, .external_lex_state = 13}, + [1944] = {.lex_state = 52, .external_lex_state = 15}, + [1945] = {.lex_state = 8, .external_lex_state = 12}, + [1946] = {.lex_state = 52, .external_lex_state = 11}, + [1947] = {.lex_state = 7, .external_lex_state = 13}, + [1948] = {.lex_state = 0, .external_lex_state = 16}, + [1949] = {.lex_state = 7, .external_lex_state = 12}, + [1950] = {.lex_state = 52, .external_lex_state = 14}, + [1951] = {.lex_state = 0, .external_lex_state = 16}, + [1952] = {.lex_state = 52, .external_lex_state = 14}, [1953] = {.lex_state = 52, .external_lex_state = 13}, - [1954] = {.lex_state = 52, .external_lex_state = 14}, - [1955] = {.lex_state = 52, .external_lex_state = 13}, - [1956] = {.lex_state = 8, .external_lex_state = 9}, - [1957] = {.lex_state = 52, .external_lex_state = 14}, - [1958] = {.lex_state = 8, .external_lex_state = 14}, - [1959] = {.lex_state = 8, .external_lex_state = 14}, + [1954] = {.lex_state = 52, .external_lex_state = 12}, + [1955] = {.lex_state = 52, .external_lex_state = 14}, + [1956] = {.lex_state = 8, .external_lex_state = 11}, + [1957] = {.lex_state = 52, .external_lex_state = 13}, + [1958] = {.lex_state = 52, .external_lex_state = 14}, + [1959] = {.lex_state = 0, .external_lex_state = 16}, [1960] = {.lex_state = 0, .external_lex_state = 16}, - [1961] = {.lex_state = 0, .external_lex_state = 16}, - [1962] = {.lex_state = 52, .external_lex_state = 14}, + [1961] = {.lex_state = 8, .external_lex_state = 11}, + [1962] = {.lex_state = 8, .external_lex_state = 15}, [1963] = {.lex_state = 52, .external_lex_state = 12}, - [1964] = {.lex_state = 52, .external_lex_state = 14}, - [1965] = {.lex_state = 7, .external_lex_state = 9}, - [1966] = {.lex_state = 52, .external_lex_state = 12}, + [1964] = {.lex_state = 52, .external_lex_state = 15}, + [1965] = {.lex_state = 7, .external_lex_state = 14}, + [1966] = {.lex_state = 8, .external_lex_state = 14}, [1967] = {.lex_state = 8, .external_lex_state = 14}, - [1968] = {.lex_state = 8, .external_lex_state = 14}, - [1969] = {.lex_state = 52, .external_lex_state = 12}, - [1970] = {.lex_state = 8, .external_lex_state = 14}, - [1971] = {.lex_state = 52, .external_lex_state = 13}, - [1972] = {.lex_state = 52, .external_lex_state = 15}, - [1973] = {.lex_state = 0, .external_lex_state = 16}, - [1974] = {.lex_state = 52, .external_lex_state = 14}, + [1968] = {.lex_state = 52, .external_lex_state = 13}, + [1969] = {.lex_state = 52, .external_lex_state = 15}, + [1970] = {.lex_state = 52, .external_lex_state = 13}, + [1971] = {.lex_state = 8, .external_lex_state = 14}, + [1972] = {.lex_state = 52, .external_lex_state = 12}, + [1973] = {.lex_state = 8, .external_lex_state = 11}, + [1974] = {.lex_state = 8, .external_lex_state = 11}, [1975] = {.lex_state = 52, .external_lex_state = 15}, - [1976] = {.lex_state = 52, .external_lex_state = 14}, - [1977] = {.lex_state = 52, .external_lex_state = 15}, - [1978] = {.lex_state = 52, .external_lex_state = 13}, - [1979] = {.lex_state = 52, .external_lex_state = 12}, - [1980] = {.lex_state = 52, .external_lex_state = 15}, - [1981] = {.lex_state = 52, .external_lex_state = 9}, - [1982] = {.lex_state = 52, .external_lex_state = 14}, - [1983] = {.lex_state = 8, .external_lex_state = 9}, - [1984] = {.lex_state = 8, .external_lex_state = 9}, - [1985] = {.lex_state = 52, .external_lex_state = 14}, - [1986] = {.lex_state = 8, .external_lex_state = 9}, - [1987] = {.lex_state = 52, .external_lex_state = 14}, - [1988] = {.lex_state = 8, .external_lex_state = 9}, - [1989] = {.lex_state = 8, .external_lex_state = 14}, - [1990] = {.lex_state = 8, .external_lex_state = 14}, - [1991] = {.lex_state = 52, .external_lex_state = 15}, - [1992] = {.lex_state = 52, .external_lex_state = 14}, - [1993] = {.lex_state = 52, .external_lex_state = 13}, - [1994] = {.lex_state = 52, .external_lex_state = 12}, - [1995] = {.lex_state = 0, .external_lex_state = 16}, - [1996] = {.lex_state = 52, .external_lex_state = 14}, - [1997] = {.lex_state = 8, .external_lex_state = 14}, - [1998] = {.lex_state = 8, .external_lex_state = 13}, + [1976] = {.lex_state = 52, .external_lex_state = 13}, + [1977] = {.lex_state = 8, .external_lex_state = 14}, + [1978] = {.lex_state = 52, .external_lex_state = 15}, + [1979] = {.lex_state = 0, .external_lex_state = 16}, + [1980] = {.lex_state = 7, .external_lex_state = 11}, + [1981] = {.lex_state = 8, .external_lex_state = 14}, + [1982] = {.lex_state = 52, .external_lex_state = 12}, + [1983] = {.lex_state = 52, .external_lex_state = 15}, + [1984] = {.lex_state = 52, .external_lex_state = 14}, + [1985] = {.lex_state = 52, .external_lex_state = 15}, + [1986] = {.lex_state = 52, .external_lex_state = 15}, + [1987] = {.lex_state = 8, .external_lex_state = 15}, + [1988] = {.lex_state = 52, .external_lex_state = 11}, + [1989] = {.lex_state = 52, .external_lex_state = 15}, + [1990] = {.lex_state = 52, .external_lex_state = 15}, + [1991] = {.lex_state = 8, .external_lex_state = 11}, + [1992] = {.lex_state = 52, .external_lex_state = 15}, + [1993] = {.lex_state = 52, .external_lex_state = 15}, + [1994] = {.lex_state = 52, .external_lex_state = 15}, + [1995] = {.lex_state = 52, .external_lex_state = 15}, + [1996] = {.lex_state = 8, .external_lex_state = 15}, + [1997] = {.lex_state = 52, .external_lex_state = 15}, + [1998] = {.lex_state = 52, .external_lex_state = 13}, [1999] = {.lex_state = 52, .external_lex_state = 13}, - [2000] = {.lex_state = 52, .external_lex_state = 14}, - [2001] = {.lex_state = 0, .external_lex_state = 16}, - [2002] = {.lex_state = 52, .external_lex_state = 12}, - [2003] = {.lex_state = 8, .external_lex_state = 14}, - [2004] = {.lex_state = 52, .external_lex_state = 15}, - [2005] = {.lex_state = 52, .external_lex_state = 15}, + [2000] = {.lex_state = 52, .external_lex_state = 12}, + [2001] = {.lex_state = 52, .external_lex_state = 15}, + [2002] = {.lex_state = 52, .external_lex_state = 15}, + [2003] = {.lex_state = 52, .external_lex_state = 11}, + [2004] = {.lex_state = 52, .external_lex_state = 12}, + [2005] = {.lex_state = 52, .external_lex_state = 13}, [2006] = {.lex_state = 52, .external_lex_state = 15}, - [2007] = {.lex_state = 52, .external_lex_state = 12}, - [2008] = {.lex_state = 52, .external_lex_state = 12}, - [2009] = {.lex_state = 52, .external_lex_state = 14}, - [2010] = {.lex_state = 52, .external_lex_state = 14}, - [2011] = {.lex_state = 8, .external_lex_state = 13}, + [2007] = {.lex_state = 52, .external_lex_state = 15}, + [2008] = {.lex_state = 52, .external_lex_state = 15}, + [2009] = {.lex_state = 8, .external_lex_state = 12}, + [2010] = {.lex_state = 8, .external_lex_state = 12}, + [2011] = {.lex_state = 8, .external_lex_state = 12}, [2012] = {.lex_state = 52, .external_lex_state = 15}, - [2013] = {.lex_state = 3, .external_lex_state = 12}, - [2014] = {.lex_state = 52, .external_lex_state = 15}, - [2015] = {.lex_state = 52, .external_lex_state = 14}, - [2016] = {.lex_state = 52, .external_lex_state = 12}, - [2017] = {.lex_state = 52, .external_lex_state = 9}, + [2013] = {.lex_state = 52, .external_lex_state = 15}, + [2014] = {.lex_state = 52, .external_lex_state = 12}, + [2015] = {.lex_state = 52, .external_lex_state = 15}, + [2016] = {.lex_state = 52, .external_lex_state = 15}, + [2017] = {.lex_state = 52, .external_lex_state = 15}, [2018] = {.lex_state = 52, .external_lex_state = 15}, - [2019] = {.lex_state = 52, .external_lex_state = 15}, + [2019] = {.lex_state = 8, .external_lex_state = 12}, [2020] = {.lex_state = 52, .external_lex_state = 15}, - [2021] = {.lex_state = 52, .external_lex_state = 12}, + [2021] = {.lex_state = 52, .external_lex_state = 13}, [2022] = {.lex_state = 52, .external_lex_state = 15}, - [2023] = {.lex_state = 52, .external_lex_state = 13}, - [2024] = {.lex_state = 8, .external_lex_state = 15}, - [2025] = {.lex_state = 7, .external_lex_state = 9}, - [2026] = {.lex_state = 52, .external_lex_state = 15}, + [2023] = {.lex_state = 52, .external_lex_state = 15}, + [2024] = {.lex_state = 7, .external_lex_state = 11}, + [2025] = {.lex_state = 52, .external_lex_state = 14}, + [2026] = {.lex_state = 8, .external_lex_state = 15}, [2027] = {.lex_state = 52, .external_lex_state = 15}, - [2028] = {.lex_state = 52, .external_lex_state = 15}, + [2028] = {.lex_state = 52, .external_lex_state = 11}, [2029] = {.lex_state = 52, .external_lex_state = 15}, - [2030] = {.lex_state = 8, .external_lex_state = 13}, - [2031] = {.lex_state = 8, .external_lex_state = 13}, - [2032] = {.lex_state = 52, .external_lex_state = 9}, + [2030] = {.lex_state = 52, .external_lex_state = 15}, + [2031] = {.lex_state = 52, .external_lex_state = 13}, + [2032] = {.lex_state = 52, .external_lex_state = 13}, [2033] = {.lex_state = 52, .external_lex_state = 15}, - [2034] = {.lex_state = 52, .external_lex_state = 12}, + [2034] = {.lex_state = 52, .external_lex_state = 15}, [2035] = {.lex_state = 52, .external_lex_state = 15}, - [2036] = {.lex_state = 52, .external_lex_state = 9}, - [2037] = {.lex_state = 52, .external_lex_state = 9}, - [2038] = {.lex_state = 52, .external_lex_state = 12}, - [2039] = {.lex_state = 3, .external_lex_state = 12}, - [2040] = {.lex_state = 52, .external_lex_state = 15}, - [2041] = {.lex_state = 52, .external_lex_state = 12}, - [2042] = {.lex_state = 52, .external_lex_state = 12}, + [2036] = {.lex_state = 52, .external_lex_state = 15}, + [2037] = {.lex_state = 52, .external_lex_state = 15}, + [2038] = {.lex_state = 52, .external_lex_state = 11}, + [2039] = {.lex_state = 52, .external_lex_state = 15}, + [2040] = {.lex_state = 8, .external_lex_state = 12}, + [2041] = {.lex_state = 3, .external_lex_state = 13}, + [2042] = {.lex_state = 52, .external_lex_state = 13}, [2043] = {.lex_state = 52, .external_lex_state = 15}, - [2044] = {.lex_state = 52, .external_lex_state = 12}, - [2045] = {.lex_state = 52, .external_lex_state = 15}, - [2046] = {.lex_state = 52, .external_lex_state = 15}, - [2047] = {.lex_state = 52, .external_lex_state = 15}, - [2048] = {.lex_state = 52, .external_lex_state = 12}, - [2049] = {.lex_state = 52, .external_lex_state = 12}, - [2050] = {.lex_state = 52, .external_lex_state = 15}, - [2051] = {.lex_state = 52, .external_lex_state = 15}, - [2052] = {.lex_state = 52, .external_lex_state = 9}, - [2053] = {.lex_state = 52, .external_lex_state = 15}, - [2054] = {.lex_state = 52, .external_lex_state = 15}, - [2055] = {.lex_state = 52, .external_lex_state = 15}, - [2056] = {.lex_state = 52, .external_lex_state = 9}, - [2057] = {.lex_state = 52, .external_lex_state = 15}, + [2044] = {.lex_state = 52, .external_lex_state = 15}, + [2045] = {.lex_state = 52, .external_lex_state = 11}, + [2046] = {.lex_state = 8, .external_lex_state = 12}, + [2047] = {.lex_state = 52, .external_lex_state = 14}, + [2048] = {.lex_state = 52, .external_lex_state = 13}, + [2049] = {.lex_state = 52, .external_lex_state = 14}, + [2050] = {.lex_state = 52, .external_lex_state = 13}, + [2051] = {.lex_state = 52, .external_lex_state = 13}, + [2052] = {.lex_state = 52, .external_lex_state = 12}, + [2053] = {.lex_state = 52, .external_lex_state = 13}, + [2054] = {.lex_state = 52, .external_lex_state = 13}, + [2055] = {.lex_state = 52, .external_lex_state = 14}, + [2056] = {.lex_state = 52, .external_lex_state = 13}, + [2057] = {.lex_state = 52, .external_lex_state = 13}, [2058] = {.lex_state = 52, .external_lex_state = 13}, - [2059] = {.lex_state = 52, .external_lex_state = 13}, - [2060] = {.lex_state = 52, .external_lex_state = 13}, - [2061] = {.lex_state = 8, .external_lex_state = 15}, - [2062] = {.lex_state = 8, .external_lex_state = 15}, + [2059] = {.lex_state = 52, .external_lex_state = 15}, + [2060] = {.lex_state = 52, .external_lex_state = 15}, + [2061] = {.lex_state = 52, .external_lex_state = 13}, + [2062] = {.lex_state = 52, .external_lex_state = 15}, [2063] = {.lex_state = 52, .external_lex_state = 12}, - [2064] = {.lex_state = 8, .external_lex_state = 13}, - [2065] = {.lex_state = 52, .external_lex_state = 15}, - [2066] = {.lex_state = 52, .external_lex_state = 12}, - [2067] = {.lex_state = 52, .external_lex_state = 15}, - [2068] = {.lex_state = 52, .external_lex_state = 15}, - [2069] = {.lex_state = 52, .external_lex_state = 14}, - [2070] = {.lex_state = 52, .external_lex_state = 12}, + [2064] = {.lex_state = 52, .external_lex_state = 13}, + [2065] = {.lex_state = 52, .external_lex_state = 14}, + [2066] = {.lex_state = 52, .external_lex_state = 13}, + [2067] = {.lex_state = 52, .external_lex_state = 12}, + [2068] = {.lex_state = 52, .external_lex_state = 13}, + [2069] = {.lex_state = 52, .external_lex_state = 15}, + [2070] = {.lex_state = 52, .external_lex_state = 15}, [2071] = {.lex_state = 52, .external_lex_state = 15}, [2072] = {.lex_state = 52, .external_lex_state = 12}, - [2073] = {.lex_state = 52, .external_lex_state = 12}, - [2074] = {.lex_state = 52, .external_lex_state = 13}, - [2075] = {.lex_state = 52, .external_lex_state = 15}, - [2076] = {.lex_state = 8, .external_lex_state = 13}, - [2077] = {.lex_state = 8, .external_lex_state = 15}, - [2078] = {.lex_state = 8, .external_lex_state = 15}, - [2079] = {.lex_state = 8, .external_lex_state = 13}, - [2080] = {.lex_state = 52, .external_lex_state = 15}, - [2081] = {.lex_state = 52, .external_lex_state = 13}, - [2082] = {.lex_state = 52, .external_lex_state = 12}, - [2083] = {.lex_state = 8, .external_lex_state = 15}, - [2084] = {.lex_state = 8, .external_lex_state = 13}, - [2085] = {.lex_state = 52, .external_lex_state = 13}, - [2086] = {.lex_state = 52, .external_lex_state = 13}, - [2087] = {.lex_state = 52, .external_lex_state = 13}, - [2088] = {.lex_state = 52, .external_lex_state = 12}, + [2073] = {.lex_state = 8, .external_lex_state = 12}, + [2074] = {.lex_state = 8, .external_lex_state = 15}, + [2075] = {.lex_state = 52, .external_lex_state = 14}, + [2076] = {.lex_state = 52, .external_lex_state = 11}, + [2077] = {.lex_state = 52, .external_lex_state = 15}, + [2078] = {.lex_state = 52, .external_lex_state = 12}, + [2079] = {.lex_state = 52, .external_lex_state = 15}, + [2080] = {.lex_state = 8, .external_lex_state = 15}, + [2081] = {.lex_state = 8, .external_lex_state = 15}, + [2082] = {.lex_state = 8, .external_lex_state = 15}, + [2083] = {.lex_state = 8, .external_lex_state = 12}, + [2084] = {.lex_state = 8, .external_lex_state = 12}, + [2085] = {.lex_state = 8, .external_lex_state = 12}, + [2086] = {.lex_state = 52, .external_lex_state = 15}, + [2087] = {.lex_state = 52, .external_lex_state = 14}, + [2088] = {.lex_state = 52, .external_lex_state = 13}, [2089] = {.lex_state = 52, .external_lex_state = 15}, - [2090] = {.lex_state = 8, .external_lex_state = 13}, - [2091] = {.lex_state = 52, .external_lex_state = 15}, - [2092] = {.lex_state = 8, .external_lex_state = 13}, - [2093] = {.lex_state = 52, .external_lex_state = 12}, - [2094] = {.lex_state = 52, .external_lex_state = 15}, - [2095] = {.lex_state = 52, .external_lex_state = 14}, + [2090] = {.lex_state = 52, .external_lex_state = 12}, + [2091] = {.lex_state = 52, .external_lex_state = 11}, + [2092] = {.lex_state = 3, .external_lex_state = 13}, + [2093] = {.lex_state = 52, .external_lex_state = 15}, + [2094] = {.lex_state = 52, .external_lex_state = 13}, + [2095] = {.lex_state = 8, .external_lex_state = 15}, [2096] = {.lex_state = 52, .external_lex_state = 15}, - [2097] = {.lex_state = 8, .external_lex_state = 13}, - [2098] = {.lex_state = 8, .external_lex_state = 15}, - [2099] = {.lex_state = 52, .external_lex_state = 15}, - [2100] = {.lex_state = 8, .external_lex_state = 9}, - [2101] = {.lex_state = 8, .external_lex_state = 13}, + [2097] = {.lex_state = 52, .external_lex_state = 15}, + [2098] = {.lex_state = 3, .external_lex_state = 13}, + [2099] = {.lex_state = 8, .external_lex_state = 12}, + [2100] = {.lex_state = 8, .external_lex_state = 14}, + [2101] = {.lex_state = 52, .external_lex_state = 14}, [2102] = {.lex_state = 52, .external_lex_state = 15}, - [2103] = {.lex_state = 52, .external_lex_state = 15}, - [2104] = {.lex_state = 8, .external_lex_state = 14}, - [2105] = {.lex_state = 52, .external_lex_state = 14}, - [2106] = {.lex_state = 52, .external_lex_state = 14}, + [2103] = {.lex_state = 52, .external_lex_state = 13}, + [2104] = {.lex_state = 52, .external_lex_state = 13}, + [2105] = {.lex_state = 52, .external_lex_state = 17}, + [2106] = {.lex_state = 52, .external_lex_state = 15}, [2107] = {.lex_state = 52, .external_lex_state = 15}, - [2108] = {.lex_state = 52, .external_lex_state = 12}, - [2109] = {.lex_state = 8, .external_lex_state = 15}, - [2110] = {.lex_state = 52, .external_lex_state = 15}, - [2111] = {.lex_state = 52, .external_lex_state = 14}, - [2112] = {.lex_state = 52, .external_lex_state = 15}, - [2113] = {.lex_state = 52, .external_lex_state = 15}, - [2114] = {.lex_state = 52, .external_lex_state = 9}, - [2115] = {.lex_state = 52, .external_lex_state = 15}, - [2116] = {.lex_state = 52, .external_lex_state = 15}, - [2117] = {.lex_state = 3, .external_lex_state = 12}, - [2118] = {.lex_state = 52, .external_lex_state = 15}, - [2119] = {.lex_state = 52, .external_lex_state = 15}, - [2120] = {.lex_state = 52, .external_lex_state = 15}, - [2121] = {.lex_state = 52, .external_lex_state = 14}, + [2108] = {.lex_state = 52, .external_lex_state = 11}, + [2109] = {.lex_state = 52, .external_lex_state = 11}, + [2110] = {.lex_state = 52, .external_lex_state = 17}, + [2111] = {.lex_state = 52, .external_lex_state = 11}, + [2112] = {.lex_state = 52, .external_lex_state = 11}, + [2113] = {.lex_state = 52, .external_lex_state = 11}, + [2114] = {.lex_state = 52, .external_lex_state = 17}, + [2115] = {.lex_state = 52, .external_lex_state = 11}, + [2116] = {.lex_state = 52, .external_lex_state = 13}, + [2117] = {.lex_state = 52, .external_lex_state = 11}, + [2118] = {.lex_state = 52, .external_lex_state = 14}, + [2119] = {.lex_state = 52, .external_lex_state = 12}, + [2120] = {.lex_state = 52, .external_lex_state = 12}, + [2121] = {.lex_state = 52, .external_lex_state = 12}, [2122] = {.lex_state = 52, .external_lex_state = 12}, - [2123] = {.lex_state = 52, .external_lex_state = 15}, - [2124] = {.lex_state = 52, .external_lex_state = 14}, - [2125] = {.lex_state = 52, .external_lex_state = 12}, + [2123] = {.lex_state = 52, .external_lex_state = 12}, + [2124] = {.lex_state = 8, .external_lex_state = 15}, + [2125] = {.lex_state = 52, .external_lex_state = 14}, [2126] = {.lex_state = 52, .external_lex_state = 12}, - [2127] = {.lex_state = 52, .external_lex_state = 13}, - [2128] = {.lex_state = 52, .external_lex_state = 15}, + [2127] = {.lex_state = 52, .external_lex_state = 12}, + [2128] = {.lex_state = 52, .external_lex_state = 12}, [2129] = {.lex_state = 52, .external_lex_state = 12}, [2130] = {.lex_state = 52, .external_lex_state = 12}, - [2131] = {.lex_state = 52, .external_lex_state = 18}, - [2132] = {.lex_state = 52, .external_lex_state = 12}, + [2131] = {.lex_state = 52, .external_lex_state = 12}, + [2132] = {.lex_state = 7, .external_lex_state = 15}, [2133] = {.lex_state = 52, .external_lex_state = 12}, [2134] = {.lex_state = 52, .external_lex_state = 12}, - [2135] = {.lex_state = 52, .external_lex_state = 13}, + [2135] = {.lex_state = 52, .external_lex_state = 12}, [2136] = {.lex_state = 52, .external_lex_state = 12}, - [2137] = {.lex_state = 52, .external_lex_state = 13}, + [2137] = {.lex_state = 52, .external_lex_state = 12}, [2138] = {.lex_state = 52, .external_lex_state = 12}, [2139] = {.lex_state = 52, .external_lex_state = 12}, [2140] = {.lex_state = 52, .external_lex_state = 12}, @@ -9643,672 +9610,640 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2144] = {.lex_state = 52, .external_lex_state = 12}, [2145] = {.lex_state = 52, .external_lex_state = 12}, [2146] = {.lex_state = 52, .external_lex_state = 12}, - [2147] = {.lex_state = 52, .external_lex_state = 12}, - [2148] = {.lex_state = 52, .external_lex_state = 12}, + [2147] = {.lex_state = 52, .external_lex_state = 11}, + [2148] = {.lex_state = 52, .external_lex_state = 14}, [2149] = {.lex_state = 52, .external_lex_state = 12}, - [2150] = {.lex_state = 52, .external_lex_state = 12}, - [2151] = {.lex_state = 52, .external_lex_state = 12}, - [2152] = {.lex_state = 52, .external_lex_state = 13}, + [2150] = {.lex_state = 52, .external_lex_state = 15}, + [2151] = {.lex_state = 52, .external_lex_state = 15}, + [2152] = {.lex_state = 52, .external_lex_state = 17}, [2153] = {.lex_state = 52, .external_lex_state = 14}, - [2154] = {.lex_state = 52, .external_lex_state = 13}, - [2155] = {.lex_state = 52, .external_lex_state = 9}, - [2156] = {.lex_state = 52, .external_lex_state = 9}, - [2157] = {.lex_state = 52, .external_lex_state = 9}, + [2154] = {.lex_state = 52, .external_lex_state = 11}, + [2155] = {.lex_state = 52, .external_lex_state = 14}, + [2156] = {.lex_state = 52, .external_lex_state = 14}, + [2157] = {.lex_state = 52, .external_lex_state = 14}, [2158] = {.lex_state = 52, .external_lex_state = 14}, - [2159] = {.lex_state = 52, .external_lex_state = 9}, - [2160] = {.lex_state = 52, .external_lex_state = 14}, - [2161] = {.lex_state = 52, .external_lex_state = 15}, - [2162] = {.lex_state = 52, .external_lex_state = 15}, + [2159] = {.lex_state = 52, .external_lex_state = 14}, + [2160] = {.lex_state = 52, .external_lex_state = 15}, + [2161] = {.lex_state = 52, .external_lex_state = 11}, + [2162] = {.lex_state = 52, .external_lex_state = 11}, [2163] = {.lex_state = 52, .external_lex_state = 14}, - [2164] = {.lex_state = 52, .external_lex_state = 15}, + [2164] = {.lex_state = 52, .external_lex_state = 12}, [2165] = {.lex_state = 52, .external_lex_state = 14}, - [2166] = {.lex_state = 52, .external_lex_state = 13}, - [2167] = {.lex_state = 52, .external_lex_state = 13}, - [2168] = {.lex_state = 52, .external_lex_state = 13}, - [2169] = {.lex_state = 52, .external_lex_state = 13}, - [2170] = {.lex_state = 52, .external_lex_state = 13}, + [2166] = {.lex_state = 52, .external_lex_state = 14}, + [2167] = {.lex_state = 52, .external_lex_state = 14}, + [2168] = {.lex_state = 52, .external_lex_state = 14}, + [2169] = {.lex_state = 52, .external_lex_state = 14}, + [2170] = {.lex_state = 52, .external_lex_state = 14}, [2171] = {.lex_state = 52, .external_lex_state = 14}, - [2172] = {.lex_state = 52, .external_lex_state = 13}, + [2172] = {.lex_state = 8, .external_lex_state = 15}, [2173] = {.lex_state = 7, .external_lex_state = 15}, [2174] = {.lex_state = 52, .external_lex_state = 14}, - [2175] = {.lex_state = 52, .external_lex_state = 9}, + [2175] = {.lex_state = 52, .external_lex_state = 15}, [2176] = {.lex_state = 52, .external_lex_state = 14}, - [2177] = {.lex_state = 52, .external_lex_state = 13}, - [2178] = {.lex_state = 52, .external_lex_state = 13}, - [2179] = {.lex_state = 52, .external_lex_state = 13}, - [2180] = {.lex_state = 52, .external_lex_state = 13}, - [2181] = {.lex_state = 52, .external_lex_state = 13}, - [2182] = {.lex_state = 52, .external_lex_state = 13}, - [2183] = {.lex_state = 52, .external_lex_state = 13}, - [2184] = {.lex_state = 52, .external_lex_state = 12}, - [2185] = {.lex_state = 52, .external_lex_state = 13}, - [2186] = {.lex_state = 52, .external_lex_state = 13}, - [2187] = {.lex_state = 52, .external_lex_state = 13}, - [2188] = {.lex_state = 52, .external_lex_state = 13}, - [2189] = {.lex_state = 52, .external_lex_state = 13}, - [2190] = {.lex_state = 52, .external_lex_state = 14}, + [2177] = {.lex_state = 52, .external_lex_state = 14}, + [2178] = {.lex_state = 52, .external_lex_state = 14}, + [2179] = {.lex_state = 52, .external_lex_state = 14}, + [2180] = {.lex_state = 52, .external_lex_state = 14}, + [2181] = {.lex_state = 52, .external_lex_state = 14}, + [2182] = {.lex_state = 52, .external_lex_state = 14}, + [2183] = {.lex_state = 52, .external_lex_state = 14}, + [2184] = {.lex_state = 52, .external_lex_state = 14}, + [2185] = {.lex_state = 52, .external_lex_state = 14}, + [2186] = {.lex_state = 52, .external_lex_state = 14}, + [2187] = {.lex_state = 52, .external_lex_state = 14}, + [2188] = {.lex_state = 52, .external_lex_state = 14}, + [2189] = {.lex_state = 52, .external_lex_state = 14}, + [2190] = {.lex_state = 52, .external_lex_state = 12}, [2191] = {.lex_state = 52, .external_lex_state = 13}, [2192] = {.lex_state = 52, .external_lex_state = 13}, [2193] = {.lex_state = 52, .external_lex_state = 13}, [2194] = {.lex_state = 52, .external_lex_state = 14}, - [2195] = {.lex_state = 52, .external_lex_state = 15}, - [2196] = {.lex_state = 52, .external_lex_state = 12}, - [2197] = {.lex_state = 52, .external_lex_state = 9}, - [2198] = {.lex_state = 52, .external_lex_state = 14}, - [2199] = {.lex_state = 52, .external_lex_state = 9}, - [2200] = {.lex_state = 52, .external_lex_state = 9}, - [2201] = {.lex_state = 52, .external_lex_state = 15}, - [2202] = {.lex_state = 52, .external_lex_state = 14}, + [2195] = {.lex_state = 52, .external_lex_state = 13}, + [2196] = {.lex_state = 52, .external_lex_state = 13}, + [2197] = {.lex_state = 52, .external_lex_state = 13}, + [2198] = {.lex_state = 52, .external_lex_state = 13}, + [2199] = {.lex_state = 52, .external_lex_state = 13}, + [2200] = {.lex_state = 52, .external_lex_state = 13}, + [2201] = {.lex_state = 52, .external_lex_state = 13}, + [2202] = {.lex_state = 52, .external_lex_state = 13}, [2203] = {.lex_state = 52, .external_lex_state = 13}, - [2204] = {.lex_state = 52, .external_lex_state = 14}, - [2205] = {.lex_state = 8, .external_lex_state = 15}, - [2206] = {.lex_state = 52, .external_lex_state = 14}, - [2207] = {.lex_state = 52, .external_lex_state = 18}, - [2208] = {.lex_state = 52, .external_lex_state = 14}, - [2209] = {.lex_state = 52, .external_lex_state = 9}, - [2210] = {.lex_state = 52, .external_lex_state = 14}, - [2211] = {.lex_state = 52, .external_lex_state = 14}, - [2212] = {.lex_state = 52, .external_lex_state = 14}, - [2213] = {.lex_state = 52, .external_lex_state = 14}, - [2214] = {.lex_state = 52, .external_lex_state = 14}, - [2215] = {.lex_state = 52, .external_lex_state = 18}, - [2216] = {.lex_state = 52, .external_lex_state = 9}, - [2217] = {.lex_state = 52, .external_lex_state = 9}, - [2218] = {.lex_state = 52, .external_lex_state = 9}, - [2219] = {.lex_state = 52, .external_lex_state = 14}, - [2220] = {.lex_state = 52, .external_lex_state = 14}, - [2221] = {.lex_state = 52, .external_lex_state = 14}, - [2222] = {.lex_state = 52, .external_lex_state = 14}, - [2223] = {.lex_state = 52, .external_lex_state = 14}, - [2224] = {.lex_state = 52, .external_lex_state = 12}, - [2225] = {.lex_state = 52, .external_lex_state = 15}, + [2204] = {.lex_state = 52, .external_lex_state = 13}, + [2205] = {.lex_state = 52, .external_lex_state = 13}, + [2206] = {.lex_state = 52, .external_lex_state = 13}, + [2207] = {.lex_state = 52, .external_lex_state = 13}, + [2208] = {.lex_state = 52, .external_lex_state = 13}, + [2209] = {.lex_state = 52, .external_lex_state = 13}, + [2210] = {.lex_state = 52, .external_lex_state = 13}, + [2211] = {.lex_state = 52, .external_lex_state = 13}, + [2212] = {.lex_state = 52, .external_lex_state = 13}, + [2213] = {.lex_state = 52, .external_lex_state = 13}, + [2214] = {.lex_state = 52, .external_lex_state = 11}, + [2215] = {.lex_state = 52, .external_lex_state = 17}, + [2216] = {.lex_state = 52, .external_lex_state = 11}, + [2217] = {.lex_state = 52, .external_lex_state = 11}, + [2218] = {.lex_state = 52, .external_lex_state = 15}, + [2219] = {.lex_state = 52, .external_lex_state = 13}, + [2220] = {.lex_state = 52, .external_lex_state = 11}, + [2221] = {.lex_state = 52, .external_lex_state = 11}, + [2222] = {.lex_state = 52, .external_lex_state = 11}, + [2223] = {.lex_state = 52, .external_lex_state = 15}, + [2224] = {.lex_state = 52, .external_lex_state = 15}, + [2225] = {.lex_state = 52, .external_lex_state = 14}, [2226] = {.lex_state = 52, .external_lex_state = 14}, - [2227] = {.lex_state = 52, .external_lex_state = 14}, - [2228] = {.lex_state = 52, .external_lex_state = 14}, - [2229] = {.lex_state = 52, .external_lex_state = 9}, - [2230] = {.lex_state = 52, .external_lex_state = 9}, - [2231] = {.lex_state = 52, .external_lex_state = 15}, - [2232] = {.lex_state = 52, .external_lex_state = 15}, - [2233] = {.lex_state = 52, .external_lex_state = 14}, - [2234] = {.lex_state = 52, .external_lex_state = 18}, - [2235] = {.lex_state = 52, .external_lex_state = 14}, - [2236] = {.lex_state = 52, .external_lex_state = 14}, - [2237] = {.lex_state = 52, .external_lex_state = 14}, - [2238] = {.lex_state = 52, .external_lex_state = 9}, - [2239] = {.lex_state = 52, .external_lex_state = 9}, - [2240] = {.lex_state = 52, .external_lex_state = 14}, + [2227] = {.lex_state = 52, .external_lex_state = 15}, + [2228] = {.lex_state = 52, .external_lex_state = 15}, + [2229] = {.lex_state = 52, .external_lex_state = 14}, + [2230] = {.lex_state = 52, .external_lex_state = 15}, + [2231] = {.lex_state = 52, .external_lex_state = 14}, + [2232] = {.lex_state = 52, .external_lex_state = 14}, + [2233] = {.lex_state = 52, .external_lex_state = 12}, + [2234] = {.lex_state = 52, .external_lex_state = 13}, + [2235] = {.lex_state = 8, .external_lex_state = 15}, + [2236] = {.lex_state = 52, .external_lex_state = 12}, + [2237] = {.lex_state = 52, .external_lex_state = 11}, + [2238] = {.lex_state = 52, .external_lex_state = 14}, + [2239] = {.lex_state = 52, .external_lex_state = 14}, + [2240] = {.lex_state = 52, .external_lex_state = 13}, [2241] = {.lex_state = 52, .external_lex_state = 14}, [2242] = {.lex_state = 52, .external_lex_state = 14}, - [2243] = {.lex_state = 52, .external_lex_state = 14}, - [2244] = {.lex_state = 52, .external_lex_state = 13}, - [2245] = {.lex_state = 52, .external_lex_state = 9}, - [2246] = {.lex_state = 52, .external_lex_state = 15}, - [2247] = {.lex_state = 52, .external_lex_state = 15}, - [2248] = {.lex_state = 8, .external_lex_state = 15}, - [2249] = {.lex_state = 52, .external_lex_state = 12}, - [2250] = {.lex_state = 52, .external_lex_state = 15}, - [2251] = {.lex_state = 52, .external_lex_state = 18}, - [2252] = {.lex_state = 7, .external_lex_state = 15}, - [2253] = {.lex_state = 8, .external_lex_state = 15}, - [2254] = {.lex_state = 52, .external_lex_state = 12}, + [2243] = {.lex_state = 3, .external_lex_state = 13}, + [2244] = {.lex_state = 3, .external_lex_state = 13}, + [2245] = {.lex_state = 52, .external_lex_state = 12}, + [2246] = {.lex_state = 3, .external_lex_state = 13}, + [2247] = {.lex_state = 52, .external_lex_state = 11}, + [2248] = {.lex_state = 52, .external_lex_state = 14}, + [2249] = {.lex_state = 52, .external_lex_state = 15}, + [2250] = {.lex_state = 52, .external_lex_state = 14}, + [2251] = {.lex_state = 52, .external_lex_state = 12}, + [2252] = {.lex_state = 52, .external_lex_state = 12}, + [2253] = {.lex_state = 52, .external_lex_state = 12}, + [2254] = {.lex_state = 52, .external_lex_state = 14}, [2255] = {.lex_state = 52, .external_lex_state = 14}, [2256] = {.lex_state = 52, .external_lex_state = 15}, - [2257] = {.lex_state = 52, .external_lex_state = 9}, - [2258] = {.lex_state = 52, .external_lex_state = 14}, - [2259] = {.lex_state = 52, .external_lex_state = 14}, + [2257] = {.lex_state = 52, .external_lex_state = 14}, + [2258] = {.lex_state = 52, .external_lex_state = 13}, + [2259] = {.lex_state = 52, .external_lex_state = 15}, [2260] = {.lex_state = 52, .external_lex_state = 14}, [2261] = {.lex_state = 52, .external_lex_state = 12}, - [2262] = {.lex_state = 52, .external_lex_state = 15}, - [2263] = {.lex_state = 52, .external_lex_state = 12}, + [2262] = {.lex_state = 52, .external_lex_state = 13}, + [2263] = {.lex_state = 52, .external_lex_state = 13}, [2264] = {.lex_state = 52, .external_lex_state = 14}, - [2265] = {.lex_state = 52, .external_lex_state = 14}, - [2266] = {.lex_state = 52, .external_lex_state = 13}, - [2267] = {.lex_state = 52, .external_lex_state = 13}, - [2268] = {.lex_state = 52, .external_lex_state = 15}, + [2265] = {.lex_state = 8, .external_lex_state = 15}, + [2266] = {.lex_state = 52, .external_lex_state = 11}, + [2267] = {.lex_state = 3, .external_lex_state = 13}, + [2268] = {.lex_state = 52, .external_lex_state = 13}, [2269] = {.lex_state = 52, .external_lex_state = 14}, - [2270] = {.lex_state = 8, .external_lex_state = 15}, - [2271] = {.lex_state = 52, .external_lex_state = 14}, - [2272] = {.lex_state = 52, .external_lex_state = 12}, + [2270] = {.lex_state = 52, .external_lex_state = 11}, + [2271] = {.lex_state = 52, .external_lex_state = 18}, + [2272] = {.lex_state = 3, .external_lex_state = 13}, [2273] = {.lex_state = 52, .external_lex_state = 14}, [2274] = {.lex_state = 52, .external_lex_state = 14}, - [2275] = {.lex_state = 52, .external_lex_state = 14}, + [2275] = {.lex_state = 52, .external_lex_state = 15}, [2276] = {.lex_state = 52, .external_lex_state = 13}, - [2277] = {.lex_state = 52, .external_lex_state = 13}, - [2278] = {.lex_state = 52, .external_lex_state = 12}, - [2279] = {.lex_state = 52, .external_lex_state = 15}, - [2280] = {.lex_state = 52, .external_lex_state = 13}, - [2281] = {.lex_state = 52, .external_lex_state = 12}, - [2282] = {.lex_state = 52, .external_lex_state = 12}, - [2283] = {.lex_state = 52, .external_lex_state = 13}, + [2277] = {.lex_state = 3, .external_lex_state = 13}, + [2278] = {.lex_state = 52, .external_lex_state = 11}, + [2279] = {.lex_state = 52, .external_lex_state = 11}, + [2280] = {.lex_state = 52, .external_lex_state = 12}, + [2281] = {.lex_state = 52, .external_lex_state = 11}, + [2282] = {.lex_state = 52, .external_lex_state = 13}, + [2283] = {.lex_state = 52, .external_lex_state = 12}, [2284] = {.lex_state = 52, .external_lex_state = 13}, [2285] = {.lex_state = 52, .external_lex_state = 14}, - [2286] = {.lex_state = 52, .external_lex_state = 12}, - [2287] = {.lex_state = 52, .external_lex_state = 12}, - [2288] = {.lex_state = 52, .external_lex_state = 14}, + [2286] = {.lex_state = 52, .external_lex_state = 14}, + [2287] = {.lex_state = 52, .external_lex_state = 14}, + [2288] = {.lex_state = 52, .external_lex_state = 12}, [2289] = {.lex_state = 52, .external_lex_state = 14}, - [2290] = {.lex_state = 52, .external_lex_state = 13}, + [2290] = {.lex_state = 52, .external_lex_state = 14}, [2291] = {.lex_state = 52, .external_lex_state = 12}, - [2292] = {.lex_state = 52, .external_lex_state = 12}, - [2293] = {.lex_state = 52, .external_lex_state = 15}, - [2294] = {.lex_state = 52, .external_lex_state = 14}, - [2295] = {.lex_state = 52, .external_lex_state = 9}, - [2296] = {.lex_state = 52, .external_lex_state = 14}, - [2297] = {.lex_state = 52, .external_lex_state = 15}, - [2298] = {.lex_state = 52, .external_lex_state = 15}, - [2299] = {.lex_state = 52, .external_lex_state = 15}, - [2300] = {.lex_state = 52, .external_lex_state = 9}, - [2301] = {.lex_state = 52, .external_lex_state = 12}, - [2302] = {.lex_state = 52, .external_lex_state = 12}, - [2303] = {.lex_state = 52, .external_lex_state = 14}, + [2292] = {.lex_state = 52, .external_lex_state = 14}, + [2293] = {.lex_state = 52, .external_lex_state = 13}, + [2294] = {.lex_state = 52, .external_lex_state = 12}, + [2295] = {.lex_state = 52, .external_lex_state = 12}, + [2296] = {.lex_state = 52, .external_lex_state = 15}, + [2297] = {.lex_state = 52, .external_lex_state = 12}, + [2298] = {.lex_state = 52, .external_lex_state = 12}, + [2299] = {.lex_state = 3, .external_lex_state = 13}, + [2300] = {.lex_state = 52, .external_lex_state = 11}, + [2301] = {.lex_state = 8, .external_lex_state = 15}, + [2302] = {.lex_state = 52, .external_lex_state = 15}, + [2303] = {.lex_state = 52, .external_lex_state = 13}, [2304] = {.lex_state = 52, .external_lex_state = 14}, - [2305] = {.lex_state = 52, .external_lex_state = 9}, + [2305] = {.lex_state = 52, .external_lex_state = 12}, [2306] = {.lex_state = 52, .external_lex_state = 12}, - [2307] = {.lex_state = 52, .external_lex_state = 9}, - [2308] = {.lex_state = 3, .external_lex_state = 12}, - [2309] = {.lex_state = 52, .external_lex_state = 14}, - [2310] = {.lex_state = 52, .external_lex_state = 12}, - [2311] = {.lex_state = 52, .external_lex_state = 19}, + [2307] = {.lex_state = 52, .external_lex_state = 13}, + [2308] = {.lex_state = 52, .external_lex_state = 13}, + [2309] = {.lex_state = 52, .external_lex_state = 13}, + [2310] = {.lex_state = 52, .external_lex_state = 15}, + [2311] = {.lex_state = 52, .external_lex_state = 14}, [2312] = {.lex_state = 52, .external_lex_state = 14}, [2313] = {.lex_state = 52, .external_lex_state = 14}, - [2314] = {.lex_state = 52, .external_lex_state = 13}, - [2315] = {.lex_state = 52, .external_lex_state = 14}, - [2316] = {.lex_state = 52, .external_lex_state = 13}, - [2317] = {.lex_state = 52, .external_lex_state = 14}, + [2314] = {.lex_state = 52, .external_lex_state = 14}, + [2315] = {.lex_state = 52, .external_lex_state = 12}, + [2316] = {.lex_state = 52, .external_lex_state = 14}, + [2317] = {.lex_state = 52, .external_lex_state = 18}, [2318] = {.lex_state = 52, .external_lex_state = 14}, - [2319] = {.lex_state = 52, .external_lex_state = 14}, - [2320] = {.lex_state = 8, .external_lex_state = 15}, - [2321] = {.lex_state = 52, .external_lex_state = 13}, - [2322] = {.lex_state = 52, .external_lex_state = 13}, - [2323] = {.lex_state = 52, .external_lex_state = 15}, + [2319] = {.lex_state = 52, .external_lex_state = 11}, + [2320] = {.lex_state = 52, .external_lex_state = 14}, + [2321] = {.lex_state = 52, .external_lex_state = 14}, + [2322] = {.lex_state = 52, .external_lex_state = 14}, + [2323] = {.lex_state = 52, .external_lex_state = 14}, [2324] = {.lex_state = 52, .external_lex_state = 13}, - [2325] = {.lex_state = 52, .external_lex_state = 9}, - [2326] = {.lex_state = 52, .external_lex_state = 14}, - [2327] = {.lex_state = 9, .external_lex_state = 17}, - [2328] = {.lex_state = 52, .external_lex_state = 12}, - [2329] = {.lex_state = 52, .external_lex_state = 19}, - [2330] = {.lex_state = 52, .external_lex_state = 15}, - [2331] = {.lex_state = 52, .external_lex_state = 14}, - [2332] = {.lex_state = 52, .external_lex_state = 19}, - [2333] = {.lex_state = 52, .external_lex_state = 13}, - [2334] = {.lex_state = 52, .external_lex_state = 12}, + [2325] = {.lex_state = 52, .external_lex_state = 14}, + [2326] = {.lex_state = 52, .external_lex_state = 13}, + [2327] = {.lex_state = 52, .external_lex_state = 11}, + [2328] = {.lex_state = 52, .external_lex_state = 18}, + [2329] = {.lex_state = 52, .external_lex_state = 13}, + [2330] = {.lex_state = 52, .external_lex_state = 13}, + [2331] = {.lex_state = 52, .external_lex_state = 13}, + [2332] = {.lex_state = 52, .external_lex_state = 14}, + [2333] = {.lex_state = 52, .external_lex_state = 14}, + [2334] = {.lex_state = 52, .external_lex_state = 13}, [2335] = {.lex_state = 52, .external_lex_state = 12}, - [2336] = {.lex_state = 3, .external_lex_state = 12}, - [2337] = {.lex_state = 3, .external_lex_state = 12}, - [2338] = {.lex_state = 52, .external_lex_state = 12}, - [2339] = {.lex_state = 9, .external_lex_state = 17}, - [2340] = {.lex_state = 52, .external_lex_state = 14}, - [2341] = {.lex_state = 52, .external_lex_state = 14}, - [2342] = {.lex_state = 3, .external_lex_state = 12}, - [2343] = {.lex_state = 52, .external_lex_state = 15}, - [2344] = {.lex_state = 52, .external_lex_state = 9}, - [2345] = {.lex_state = 52, .external_lex_state = 15}, - [2346] = {.lex_state = 52, .external_lex_state = 9}, - [2347] = {.lex_state = 52, .external_lex_state = 12}, - [2348] = {.lex_state = 52, .external_lex_state = 14}, - [2349] = {.lex_state = 52, .external_lex_state = 12}, - [2350] = {.lex_state = 52, .external_lex_state = 13}, - [2351] = {.lex_state = 52, .external_lex_state = 13}, - [2352] = {.lex_state = 52, .external_lex_state = 9}, - [2353] = {.lex_state = 52, .external_lex_state = 13}, + [2336] = {.lex_state = 52, .external_lex_state = 14}, + [2337] = {.lex_state = 52, .external_lex_state = 14}, + [2338] = {.lex_state = 52, .external_lex_state = 14}, + [2339] = {.lex_state = 52, .external_lex_state = 15}, + [2340] = {.lex_state = 52, .external_lex_state = 12}, + [2341] = {.lex_state = 52, .external_lex_state = 12}, + [2342] = {.lex_state = 52, .external_lex_state = 14}, + [2343] = {.lex_state = 52, .external_lex_state = 18}, + [2344] = {.lex_state = 52, .external_lex_state = 15}, + [2345] = {.lex_state = 52, .external_lex_state = 14}, + [2346] = {.lex_state = 52, .external_lex_state = 14}, + [2347] = {.lex_state = 52, .external_lex_state = 15}, + [2348] = {.lex_state = 52, .external_lex_state = 12}, + [2349] = {.lex_state = 52, .external_lex_state = 15}, + [2350] = {.lex_state = 52, .external_lex_state = 15}, + [2351] = {.lex_state = 52, .external_lex_state = 12}, + [2352] = {.lex_state = 52, .external_lex_state = 14}, + [2353] = {.lex_state = 52, .external_lex_state = 14}, [2354] = {.lex_state = 52, .external_lex_state = 12}, - [2355] = {.lex_state = 52, .external_lex_state = 14}, - [2356] = {.lex_state = 8, .external_lex_state = 15}, - [2357] = {.lex_state = 52, .external_lex_state = 14}, - [2358] = {.lex_state = 52, .external_lex_state = 14}, + [2355] = {.lex_state = 52, .external_lex_state = 13}, + [2356] = {.lex_state = 52, .external_lex_state = 13}, + [2357] = {.lex_state = 3, .external_lex_state = 13}, + [2358] = {.lex_state = 52, .external_lex_state = 15}, [2359] = {.lex_state = 52, .external_lex_state = 13}, - [2360] = {.lex_state = 52, .external_lex_state = 12}, - [2361] = {.lex_state = 52, .external_lex_state = 12}, + [2360] = {.lex_state = 52, .external_lex_state = 13}, + [2361] = {.lex_state = 52, .external_lex_state = 14}, [2362] = {.lex_state = 52, .external_lex_state = 14}, - [2363] = {.lex_state = 52, .external_lex_state = 19}, + [2363] = {.lex_state = 52, .external_lex_state = 12}, [2364] = {.lex_state = 52, .external_lex_state = 14}, - [2365] = {.lex_state = 52, .external_lex_state = 13}, - [2366] = {.lex_state = 52, .external_lex_state = 13}, - [2367] = {.lex_state = 52, .external_lex_state = 9}, + [2365] = {.lex_state = 52, .external_lex_state = 14}, + [2366] = {.lex_state = 52, .external_lex_state = 14}, + [2367] = {.lex_state = 52, .external_lex_state = 13}, [2368] = {.lex_state = 52, .external_lex_state = 14}, - [2369] = {.lex_state = 52, .external_lex_state = 15}, - [2370] = {.lex_state = 52, .external_lex_state = 14}, + [2369] = {.lex_state = 52, .external_lex_state = 12}, + [2370] = {.lex_state = 52, .external_lex_state = 12}, [2371] = {.lex_state = 52, .external_lex_state = 14}, - [2372] = {.lex_state = 52, .external_lex_state = 14}, - [2373] = {.lex_state = 52, .external_lex_state = 14}, - [2374] = {.lex_state = 52, .external_lex_state = 9}, - [2375] = {.lex_state = 52, .external_lex_state = 13}, + [2372] = {.lex_state = 52, .external_lex_state = 13}, + [2373] = {.lex_state = 52, .external_lex_state = 13}, + [2374] = {.lex_state = 52, .external_lex_state = 13}, + [2375] = {.lex_state = 52, .external_lex_state = 14}, [2376] = {.lex_state = 52, .external_lex_state = 14}, [2377] = {.lex_state = 52, .external_lex_state = 13}, - [2378] = {.lex_state = 52, .external_lex_state = 13}, - [2379] = {.lex_state = 52, .external_lex_state = 12}, - [2380] = {.lex_state = 52, .external_lex_state = 13}, - [2381] = {.lex_state = 52, .external_lex_state = 9}, + [2378] = {.lex_state = 52, .external_lex_state = 14}, + [2379] = {.lex_state = 52, .external_lex_state = 13}, + [2380] = {.lex_state = 52, .external_lex_state = 14}, + [2381] = {.lex_state = 52, .external_lex_state = 13}, [2382] = {.lex_state = 52, .external_lex_state = 14}, [2383] = {.lex_state = 52, .external_lex_state = 14}, - [2384] = {.lex_state = 52, .external_lex_state = 12}, - [2385] = {.lex_state = 52, .external_lex_state = 14}, - [2386] = {.lex_state = 52, .external_lex_state = 14}, - [2387] = {.lex_state = 52, .external_lex_state = 15}, - [2388] = {.lex_state = 52, .external_lex_state = 13}, - [2389] = {.lex_state = 52, .external_lex_state = 14}, - [2390] = {.lex_state = 52, .external_lex_state = 13}, + [2384] = {.lex_state = 52, .external_lex_state = 14}, + [2385] = {.lex_state = 52, .external_lex_state = 12}, + [2386] = {.lex_state = 52, .external_lex_state = 12}, + [2387] = {.lex_state = 52, .external_lex_state = 12}, + [2388] = {.lex_state = 52, .external_lex_state = 14}, + [2389] = {.lex_state = 52, .external_lex_state = 13}, + [2390] = {.lex_state = 52, .external_lex_state = 14}, [2391] = {.lex_state = 52, .external_lex_state = 14}, - [2392] = {.lex_state = 3, .external_lex_state = 12}, - [2393] = {.lex_state = 52, .external_lex_state = 14}, - [2394] = {.lex_state = 52, .external_lex_state = 13}, - [2395] = {.lex_state = 52, .external_lex_state = 13}, - [2396] = {.lex_state = 52, .external_lex_state = 14}, - [2397] = {.lex_state = 8, .external_lex_state = 15}, - [2398] = {.lex_state = 3, .external_lex_state = 12}, - [2399] = {.lex_state = 3, .external_lex_state = 12}, + [2392] = {.lex_state = 52, .external_lex_state = 12}, + [2393] = {.lex_state = 52, .external_lex_state = 12}, + [2394] = {.lex_state = 52, .external_lex_state = 12}, + [2395] = {.lex_state = 52, .external_lex_state = 12}, + [2396] = {.lex_state = 52, .external_lex_state = 15}, + [2397] = {.lex_state = 52, .external_lex_state = 12}, + [2398] = {.lex_state = 52, .external_lex_state = 14}, + [2399] = {.lex_state = 52, .external_lex_state = 12}, [2400] = {.lex_state = 52, .external_lex_state = 15}, [2401] = {.lex_state = 52, .external_lex_state = 14}, - [2402] = {.lex_state = 9, .external_lex_state = 17}, - [2403] = {.lex_state = 52, .external_lex_state = 9}, + [2402] = {.lex_state = 8, .external_lex_state = 15}, + [2403] = {.lex_state = 52, .external_lex_state = 13}, [2404] = {.lex_state = 52, .external_lex_state = 14}, - [2405] = {.lex_state = 52, .external_lex_state = 13}, - [2406] = {.lex_state = 52, .external_lex_state = 12}, + [2405] = {.lex_state = 52, .external_lex_state = 14}, + [2406] = {.lex_state = 52, .external_lex_state = 11}, [2407] = {.lex_state = 52, .external_lex_state = 13}, - [2408] = {.lex_state = 52, .external_lex_state = 9}, - [2409] = {.lex_state = 52, .external_lex_state = 12}, - [2410] = {.lex_state = 52, .external_lex_state = 14}, + [2408] = {.lex_state = 52, .external_lex_state = 14}, + [2409] = {.lex_state = 52, .external_lex_state = 14}, + [2410] = {.lex_state = 52, .external_lex_state = 15}, [2411] = {.lex_state = 52, .external_lex_state = 12}, [2412] = {.lex_state = 52, .external_lex_state = 14}, [2413] = {.lex_state = 52, .external_lex_state = 14}, - [2414] = {.lex_state = 52, .external_lex_state = 13}, - [2415] = {.lex_state = 52, .external_lex_state = 15}, - [2416] = {.lex_state = 52, .external_lex_state = 14}, - [2417] = {.lex_state = 52, .external_lex_state = 14}, - [2418] = {.lex_state = 52, .external_lex_state = 14}, + [2414] = {.lex_state = 52, .external_lex_state = 12}, + [2415] = {.lex_state = 52, .external_lex_state = 12}, + [2416] = {.lex_state = 52, .external_lex_state = 12}, + [2417] = {.lex_state = 52, .external_lex_state = 12}, + [2418] = {.lex_state = 52, .external_lex_state = 11}, [2419] = {.lex_state = 52, .external_lex_state = 14}, - [2420] = {.lex_state = 52, .external_lex_state = 13}, - [2421] = {.lex_state = 52, .external_lex_state = 13}, - [2422] = {.lex_state = 52, .external_lex_state = 14}, + [2420] = {.lex_state = 52, .external_lex_state = 18}, + [2421] = {.lex_state = 52, .external_lex_state = 12}, + [2422] = {.lex_state = 52, .external_lex_state = 12}, [2423] = {.lex_state = 52, .external_lex_state = 12}, - [2424] = {.lex_state = 52, .external_lex_state = 14}, - [2425] = {.lex_state = 52, .external_lex_state = 12}, - [2426] = {.lex_state = 52, .external_lex_state = 14}, - [2427] = {.lex_state = 9, .external_lex_state = 17}, - [2428] = {.lex_state = 52, .external_lex_state = 14}, - [2429] = {.lex_state = 52, .external_lex_state = 9}, - [2430] = {.lex_state = 52, .external_lex_state = 14}, - [2431] = {.lex_state = 52, .external_lex_state = 9}, - [2432] = {.lex_state = 52, .external_lex_state = 9}, - [2433] = {.lex_state = 52, .external_lex_state = 12}, - [2434] = {.lex_state = 52, .external_lex_state = 9}, - [2435] = {.lex_state = 52, .external_lex_state = 12}, - [2436] = {.lex_state = 52, .external_lex_state = 9}, - [2437] = {.lex_state = 52, .external_lex_state = 14}, - [2438] = {.lex_state = 52, .external_lex_state = 14}, - [2439] = {.lex_state = 52, .external_lex_state = 14}, - [2440] = {.lex_state = 52, .external_lex_state = 13}, + [2424] = {.lex_state = 52, .external_lex_state = 15}, + [2425] = {.lex_state = 52, .external_lex_state = 14}, + [2426] = {.lex_state = 52, .external_lex_state = 12}, + [2427] = {.lex_state = 52, .external_lex_state = 12}, + [2428] = {.lex_state = 52, .external_lex_state = 12}, + [2429] = {.lex_state = 52, .external_lex_state = 14}, + [2430] = {.lex_state = 52, .external_lex_state = 13}, + [2431] = {.lex_state = 52, .external_lex_state = 18}, + [2432] = {.lex_state = 52, .external_lex_state = 15}, + [2433] = {.lex_state = 52, .external_lex_state = 11}, + [2434] = {.lex_state = 52, .external_lex_state = 13}, + [2435] = {.lex_state = 52, .external_lex_state = 11}, + [2436] = {.lex_state = 52, .external_lex_state = 15}, + [2437] = {.lex_state = 52, .external_lex_state = 15}, + [2438] = {.lex_state = 52, .external_lex_state = 15}, + [2439] = {.lex_state = 52, .external_lex_state = 15}, + [2440] = {.lex_state = 52, .external_lex_state = 11}, [2441] = {.lex_state = 52, .external_lex_state = 15}, - [2442] = {.lex_state = 52, .external_lex_state = 15}, - [2443] = {.lex_state = 52, .external_lex_state = 14}, + [2442] = {.lex_state = 52, .external_lex_state = 14}, + [2443] = {.lex_state = 52, .external_lex_state = 18}, [2444] = {.lex_state = 52, .external_lex_state = 14}, - [2445] = {.lex_state = 52, .external_lex_state = 13}, - [2446] = {.lex_state = 52, .external_lex_state = 13}, - [2447] = {.lex_state = 52, .external_lex_state = 13}, - [2448] = {.lex_state = 52, .external_lex_state = 9}, - [2449] = {.lex_state = 52, .external_lex_state = 19}, - [2450] = {.lex_state = 52, .external_lex_state = 13}, - [2451] = {.lex_state = 52, .external_lex_state = 13}, + [2445] = {.lex_state = 8, .external_lex_state = 15}, + [2446] = {.lex_state = 52, .external_lex_state = 12}, + [2447] = {.lex_state = 8, .external_lex_state = 15}, + [2448] = {.lex_state = 8, .external_lex_state = 15}, + [2449] = {.lex_state = 8, .external_lex_state = 15}, + [2450] = {.lex_state = 52, .external_lex_state = 15}, + [2451] = {.lex_state = 52, .external_lex_state = 11}, [2452] = {.lex_state = 52, .external_lex_state = 13}, - [2453] = {.lex_state = 52, .external_lex_state = 14}, - [2454] = {.lex_state = 52, .external_lex_state = 14}, - [2455] = {.lex_state = 52, .external_lex_state = 13}, - [2456] = {.lex_state = 52, .external_lex_state = 13}, - [2457] = {.lex_state = 52, .external_lex_state = 9}, - [2458] = {.lex_state = 52, .external_lex_state = 13}, - [2459] = {.lex_state = 52, .external_lex_state = 13}, - [2460] = {.lex_state = 52, .external_lex_state = 13}, + [2453] = {.lex_state = 52, .external_lex_state = 15}, + [2454] = {.lex_state = 52, .external_lex_state = 15}, + [2455] = {.lex_state = 3, .external_lex_state = 13}, + [2456] = {.lex_state = 52, .external_lex_state = 14}, + [2457] = {.lex_state = 52, .external_lex_state = 13}, + [2458] = {.lex_state = 52, .external_lex_state = 14}, + [2459] = {.lex_state = 52, .external_lex_state = 11}, + [2460] = {.lex_state = 52, .external_lex_state = 14}, [2461] = {.lex_state = 52, .external_lex_state = 13}, - [2462] = {.lex_state = 52, .external_lex_state = 13}, - [2463] = {.lex_state = 52, .external_lex_state = 9}, - [2464] = {.lex_state = 52, .external_lex_state = 14}, - [2465] = {.lex_state = 3, .external_lex_state = 12}, - [2466] = {.lex_state = 52, .external_lex_state = 15}, - [2467] = {.lex_state = 52, .external_lex_state = 13}, - [2468] = {.lex_state = 52, .external_lex_state = 15}, - [2469] = {.lex_state = 52, .external_lex_state = 15}, - [2470] = {.lex_state = 52, .external_lex_state = 14}, - [2471] = {.lex_state = 52, .external_lex_state = 15}, - [2472] = {.lex_state = 52, .external_lex_state = 9}, - [2473] = {.lex_state = 52, .external_lex_state = 15}, - [2474] = {.lex_state = 8, .external_lex_state = 15}, - [2475] = {.lex_state = 52, .external_lex_state = 12}, - [2476] = {.lex_state = 8, .external_lex_state = 15}, - [2477] = {.lex_state = 8, .external_lex_state = 15}, - [2478] = {.lex_state = 52, .external_lex_state = 12}, - [2479] = {.lex_state = 52, .external_lex_state = 12}, + [2462] = {.lex_state = 52, .external_lex_state = 15}, + [2463] = {.lex_state = 52, .external_lex_state = 12}, + [2464] = {.lex_state = 52, .external_lex_state = 11}, + [2465] = {.lex_state = 52, .external_lex_state = 15}, + [2466] = {.lex_state = 52, .external_lex_state = 14}, + [2467] = {.lex_state = 52, .external_lex_state = 14}, + [2468] = {.lex_state = 52, .external_lex_state = 14}, + [2469] = {.lex_state = 52, .external_lex_state = 18}, + [2470] = {.lex_state = 52, .external_lex_state = 15}, + [2471] = {.lex_state = 52, .external_lex_state = 12}, + [2472] = {.lex_state = 52, .external_lex_state = 12}, + [2473] = {.lex_state = 52, .external_lex_state = 13}, + [2474] = {.lex_state = 52, .external_lex_state = 14}, + [2475] = {.lex_state = 52, .external_lex_state = 15}, + [2476] = {.lex_state = 52, .external_lex_state = 14}, + [2477] = {.lex_state = 52, .external_lex_state = 15}, + [2478] = {.lex_state = 52, .external_lex_state = 15}, + [2479] = {.lex_state = 52, .external_lex_state = 14}, [2480] = {.lex_state = 52, .external_lex_state = 12}, - [2481] = {.lex_state = 52, .external_lex_state = 13}, + [2481] = {.lex_state = 52, .external_lex_state = 11}, [2482] = {.lex_state = 52, .external_lex_state = 14}, - [2483] = {.lex_state = 52, .external_lex_state = 15}, + [2483] = {.lex_state = 52, .external_lex_state = 14}, [2484] = {.lex_state = 52, .external_lex_state = 15}, - [2485] = {.lex_state = 52, .external_lex_state = 9}, + [2485] = {.lex_state = 52, .external_lex_state = 11}, [2486] = {.lex_state = 52, .external_lex_state = 15}, - [2487] = {.lex_state = 3, .external_lex_state = 12}, - [2488] = {.lex_state = 52, .external_lex_state = 14}, - [2489] = {.lex_state = 52, .external_lex_state = 14}, - [2490] = {.lex_state = 52, .external_lex_state = 19}, - [2491] = {.lex_state = 52, .external_lex_state = 15}, - [2492] = {.lex_state = 52, .external_lex_state = 12}, - [2493] = {.lex_state = 52, .external_lex_state = 12}, - [2494] = {.lex_state = 52, .external_lex_state = 19}, - [2495] = {.lex_state = 52, .external_lex_state = 14}, - [2496] = {.lex_state = 52, .external_lex_state = 13}, + [2487] = {.lex_state = 52, .external_lex_state = 12}, + [2488] = {.lex_state = 52, .external_lex_state = 17}, + [2489] = {.lex_state = 52, .external_lex_state = 15}, + [2490] = {.lex_state = 52, .external_lex_state = 11}, + [2491] = {.lex_state = 52, .external_lex_state = 17}, + [2492] = {.lex_state = 52, .external_lex_state = 17}, + [2493] = {.lex_state = 52, .external_lex_state = 17}, + [2494] = {.lex_state = 9, .external_lex_state = 15}, + [2495] = {.lex_state = 52, .external_lex_state = 17}, + [2496] = {.lex_state = 52, .external_lex_state = 15}, [2497] = {.lex_state = 52, .external_lex_state = 15}, - [2498] = {.lex_state = 52, .external_lex_state = 15}, - [2499] = {.lex_state = 52, .external_lex_state = 14}, - [2500] = {.lex_state = 52, .external_lex_state = 14}, - [2501] = {.lex_state = 52, .external_lex_state = 14}, - [2502] = {.lex_state = 52, .external_lex_state = 14}, - [2503] = {.lex_state = 52, .external_lex_state = 13}, - [2504] = {.lex_state = 9, .external_lex_state = 17}, - [2505] = {.lex_state = 52, .external_lex_state = 13}, - [2506] = {.lex_state = 52, .external_lex_state = 14}, - [2507] = {.lex_state = 52, .external_lex_state = 15}, - [2508] = {.lex_state = 52, .external_lex_state = 12}, - [2509] = {.lex_state = 52, .external_lex_state = 19}, + [2498] = {.lex_state = 52, .external_lex_state = 13}, + [2499] = {.lex_state = 52, .external_lex_state = 17}, + [2500] = {.lex_state = 52, .external_lex_state = 15}, + [2501] = {.lex_state = 52, .external_lex_state = 17}, + [2502] = {.lex_state = 52, .external_lex_state = 15}, + [2503] = {.lex_state = 52, .external_lex_state = 15}, + [2504] = {.lex_state = 52, .external_lex_state = 17}, + [2505] = {.lex_state = 52, .external_lex_state = 11}, + [2506] = {.lex_state = 52, .external_lex_state = 15}, + [2507] = {.lex_state = 52, .external_lex_state = 14}, + [2508] = {.lex_state = 52, .external_lex_state = 15}, + [2509] = {.lex_state = 52, .external_lex_state = 11}, [2510] = {.lex_state = 52, .external_lex_state = 15}, [2511] = {.lex_state = 52, .external_lex_state = 15}, [2512] = {.lex_state = 52, .external_lex_state = 14}, - [2513] = {.lex_state = 52, .external_lex_state = 14}, + [2513] = {.lex_state = 52, .external_lex_state = 15}, [2514] = {.lex_state = 52, .external_lex_state = 15}, [2515] = {.lex_state = 52, .external_lex_state = 15}, [2516] = {.lex_state = 52, .external_lex_state = 14}, - [2517] = {.lex_state = 52, .external_lex_state = 9}, + [2517] = {.lex_state = 52, .external_lex_state = 15}, [2518] = {.lex_state = 52, .external_lex_state = 15}, - [2519] = {.lex_state = 52, .external_lex_state = 9}, - [2520] = {.lex_state = 9, .external_lex_state = 15}, - [2521] = {.lex_state = 52, .external_lex_state = 18}, - [2522] = {.lex_state = 52, .external_lex_state = 9}, - [2523] = {.lex_state = 52, .external_lex_state = 14}, - [2524] = {.lex_state = 52, .external_lex_state = 15}, + [2519] = {.lex_state = 52, .external_lex_state = 17}, + [2520] = {.lex_state = 52, .external_lex_state = 17}, + [2521] = {.lex_state = 52, .external_lex_state = 15}, + [2522] = {.lex_state = 52, .external_lex_state = 15}, + [2523] = {.lex_state = 52, .external_lex_state = 11}, + [2524] = {.lex_state = 52, .external_lex_state = 17}, [2525] = {.lex_state = 52, .external_lex_state = 13}, - [2526] = {.lex_state = 52, .external_lex_state = 12}, - [2527] = {.lex_state = 9, .external_lex_state = 15}, - [2528] = {.lex_state = 52, .external_lex_state = 18}, - [2529] = {.lex_state = 52, .external_lex_state = 18}, - [2530] = {.lex_state = 52, .external_lex_state = 18}, - [2531] = {.lex_state = 52, .external_lex_state = 15}, - [2532] = {.lex_state = 52, .external_lex_state = 18}, - [2533] = {.lex_state = 52, .external_lex_state = 15}, - [2534] = {.lex_state = 52, .external_lex_state = 15}, - [2535] = {.lex_state = 52, .external_lex_state = 13}, - [2536] = {.lex_state = 52, .external_lex_state = 15}, - [2537] = {.lex_state = 52, .external_lex_state = 12}, - [2538] = {.lex_state = 52, .external_lex_state = 12}, - [2539] = {.lex_state = 52, .external_lex_state = 18}, - [2540] = {.lex_state = 52, .external_lex_state = 18}, - [2541] = {.lex_state = 52, .external_lex_state = 15}, - [2542] = {.lex_state = 52, .external_lex_state = 12}, - [2543] = {.lex_state = 52, .external_lex_state = 15}, - [2544] = {.lex_state = 52, .external_lex_state = 12}, - [2545] = {.lex_state = 52, .external_lex_state = 14}, - [2546] = {.lex_state = 52, .external_lex_state = 15}, - [2547] = {.lex_state = 52, .external_lex_state = 14}, - [2548] = {.lex_state = 52, .external_lex_state = 13}, + [2526] = {.lex_state = 52, .external_lex_state = 13}, + [2527] = {.lex_state = 52, .external_lex_state = 12}, + [2528] = {.lex_state = 52, .external_lex_state = 17}, + [2529] = {.lex_state = 52, .external_lex_state = 13}, + [2530] = {.lex_state = 9, .external_lex_state = 15}, + [2531] = {.lex_state = 52, .external_lex_state = 14}, + [2532] = {.lex_state = 52, .external_lex_state = 17}, + [2533] = {.lex_state = 52, .external_lex_state = 17}, + [2534] = {.lex_state = 52, .external_lex_state = 11}, + [2535] = {.lex_state = 52, .external_lex_state = 11}, + [2536] = {.lex_state = 52, .external_lex_state = 11}, + [2537] = {.lex_state = 52, .external_lex_state = 17}, + [2538] = {.lex_state = 52, .external_lex_state = 11}, + [2539] = {.lex_state = 52, .external_lex_state = 12}, + [2540] = {.lex_state = 9, .external_lex_state = 15}, + [2541] = {.lex_state = 52, .external_lex_state = 11}, + [2542] = {.lex_state = 52, .external_lex_state = 14}, + [2543] = {.lex_state = 9, .external_lex_state = 15}, + [2544] = {.lex_state = 52, .external_lex_state = 14}, + [2545] = {.lex_state = 52, .external_lex_state = 12}, + [2546] = {.lex_state = 52, .external_lex_state = 14}, + [2547] = {.lex_state = 52, .external_lex_state = 11}, + [2548] = {.lex_state = 9, .external_lex_state = 15}, [2549] = {.lex_state = 52, .external_lex_state = 14}, - [2550] = {.lex_state = 52, .external_lex_state = 14}, - [2551] = {.lex_state = 52, .external_lex_state = 14}, - [2552] = {.lex_state = 52, .external_lex_state = 18}, - [2553] = {.lex_state = 52, .external_lex_state = 15}, - [2554] = {.lex_state = 52, .external_lex_state = 18}, - [2555] = {.lex_state = 52, .external_lex_state = 13}, + [2550] = {.lex_state = 9, .external_lex_state = 15}, + [2551] = {.lex_state = 9, .external_lex_state = 15}, + [2552] = {.lex_state = 9, .external_lex_state = 15}, + [2553] = {.lex_state = 9, .external_lex_state = 15}, + [2554] = {.lex_state = 52, .external_lex_state = 14}, + [2555] = {.lex_state = 52, .external_lex_state = 11}, [2556] = {.lex_state = 52, .external_lex_state = 15}, - [2557] = {.lex_state = 52, .external_lex_state = 9}, - [2558] = {.lex_state = 52, .external_lex_state = 9}, - [2559] = {.lex_state = 52, .external_lex_state = 15}, - [2560] = {.lex_state = 52, .external_lex_state = 15}, - [2561] = {.lex_state = 52, .external_lex_state = 13}, - [2562] = {.lex_state = 52, .external_lex_state = 9}, - [2563] = {.lex_state = 52, .external_lex_state = 15}, - [2564] = {.lex_state = 9, .external_lex_state = 15}, - [2565] = {.lex_state = 52, .external_lex_state = 15}, - [2566] = {.lex_state = 52, .external_lex_state = 9}, - [2567] = {.lex_state = 52, .external_lex_state = 18}, - [2568] = {.lex_state = 52, .external_lex_state = 9}, - [2569] = {.lex_state = 52, .external_lex_state = 18}, - [2570] = {.lex_state = 52, .external_lex_state = 9}, - [2571] = {.lex_state = 52, .external_lex_state = 14}, - [2572] = {.lex_state = 9, .external_lex_state = 15}, - [2573] = {.lex_state = 52, .external_lex_state = 18}, - [2574] = {.lex_state = 52, .external_lex_state = 18}, - [2575] = {.lex_state = 52, .external_lex_state = 15}, - [2576] = {.lex_state = 52, .external_lex_state = 18}, - [2577] = {.lex_state = 52, .external_lex_state = 9}, - [2578] = {.lex_state = 52, .external_lex_state = 9}, - [2579] = {.lex_state = 52, .external_lex_state = 14}, - [2580] = {.lex_state = 52, .external_lex_state = 14}, - [2581] = {.lex_state = 52, .external_lex_state = 15}, - [2582] = {.lex_state = 52, .external_lex_state = 18}, - [2583] = {.lex_state = 52, .external_lex_state = 9}, - [2584] = {.lex_state = 52, .external_lex_state = 13}, - [2585] = {.lex_state = 9, .external_lex_state = 15}, - [2586] = {.lex_state = 9, .external_lex_state = 15}, - [2587] = {.lex_state = 9, .external_lex_state = 15}, - [2588] = {.lex_state = 9, .external_lex_state = 15}, - [2589] = {.lex_state = 9, .external_lex_state = 15}, - [2590] = {.lex_state = 52, .external_lex_state = 15}, - [2591] = {.lex_state = 52, .external_lex_state = 9}, - [2592] = {.lex_state = 52, .external_lex_state = 15}, - [2593] = {.lex_state = 52, .external_lex_state = 18}, + [2557] = {.lex_state = 52, .external_lex_state = 11}, + [2558] = {.lex_state = 52, .external_lex_state = 12}, + [2559] = {.lex_state = 52, .external_lex_state = 11}, + [2560] = {.lex_state = 52, .external_lex_state = 17}, + [2561] = {.lex_state = 9, .external_lex_state = 15}, + [2562] = {.lex_state = 52, .external_lex_state = 17}, + [2563] = {.lex_state = 52, .external_lex_state = 11}, + [2564] = {.lex_state = 52, .external_lex_state = 14}, + [2565] = {.lex_state = 52, .external_lex_state = 12}, + [2566] = {.lex_state = 52, .external_lex_state = 11}, + [2567] = {.lex_state = 52, .external_lex_state = 15}, + [2568] = {.lex_state = 52, .external_lex_state = 14}, + [2569] = {.lex_state = 52, .external_lex_state = 12}, + [2570] = {.lex_state = 52, .external_lex_state = 12}, + [2571] = {.lex_state = 52, .external_lex_state = 13}, + [2572] = {.lex_state = 52, .external_lex_state = 15}, + [2573] = {.lex_state = 52, .external_lex_state = 11}, + [2574] = {.lex_state = 52, .external_lex_state = 12}, + [2575] = {.lex_state = 52, .external_lex_state = 17}, + [2576] = {.lex_state = 52, .external_lex_state = 15}, + [2577] = {.lex_state = 52, .external_lex_state = 14}, + [2578] = {.lex_state = 52, .external_lex_state = 15}, + [2579] = {.lex_state = 52, .external_lex_state = 15}, + [2580] = {.lex_state = 52, .external_lex_state = 15}, + [2581] = {.lex_state = 52, .external_lex_state = 14}, + [2582] = {.lex_state = 52, .external_lex_state = 13}, + [2583] = {.lex_state = 52, .external_lex_state = 14}, + [2584] = {.lex_state = 52, .external_lex_state = 14}, + [2585] = {.lex_state = 4, .external_lex_state = 15}, + [2586] = {.lex_state = 52, .external_lex_state = 15}, + [2587] = {.lex_state = 52, .external_lex_state = 15}, + [2588] = {.lex_state = 52, .external_lex_state = 15}, + [2589] = {.lex_state = 52, .external_lex_state = 14}, + [2590] = {.lex_state = 52, .external_lex_state = 14}, + [2591] = {.lex_state = 52, .external_lex_state = 12}, + [2592] = {.lex_state = 52, .external_lex_state = 12}, + [2593] = {.lex_state = 52, .external_lex_state = 13}, [2594] = {.lex_state = 52, .external_lex_state = 15}, - [2595] = {.lex_state = 52, .external_lex_state = 9}, + [2595] = {.lex_state = 52, .external_lex_state = 14}, [2596] = {.lex_state = 52, .external_lex_state = 13}, - [2597] = {.lex_state = 52, .external_lex_state = 14}, - [2598] = {.lex_state = 52, .external_lex_state = 9}, - [2599] = {.lex_state = 52, .external_lex_state = 13}, - [2600] = {.lex_state = 9, .external_lex_state = 15}, - [2601] = {.lex_state = 52, .external_lex_state = 14}, - [2602] = {.lex_state = 52, .external_lex_state = 15}, - [2603] = {.lex_state = 52, .external_lex_state = 18}, - [2604] = {.lex_state = 52, .external_lex_state = 9}, - [2605] = {.lex_state = 52, .external_lex_state = 18}, - [2606] = {.lex_state = 52, .external_lex_state = 14}, - [2607] = {.lex_state = 52, .external_lex_state = 15}, - [2608] = {.lex_state = 52, .external_lex_state = 9}, - [2609] = {.lex_state = 52, .external_lex_state = 15}, + [2597] = {.lex_state = 52, .external_lex_state = 15}, + [2598] = {.lex_state = 52, .external_lex_state = 15}, + [2599] = {.lex_state = 52, .external_lex_state = 14}, + [2600] = {.lex_state = 52, .external_lex_state = 14}, + [2601] = {.lex_state = 52, .external_lex_state = 12}, + [2602] = {.lex_state = 52, .external_lex_state = 14}, + [2603] = {.lex_state = 52, .external_lex_state = 15}, + [2604] = {.lex_state = 52, .external_lex_state = 13}, + [2605] = {.lex_state = 52, .external_lex_state = 13}, + [2606] = {.lex_state = 52, .external_lex_state = 15}, + [2607] = {.lex_state = 52, .external_lex_state = 14}, + [2608] = {.lex_state = 52, .external_lex_state = 15}, + [2609] = {.lex_state = 52, .external_lex_state = 13}, [2610] = {.lex_state = 52, .external_lex_state = 15}, - [2611] = {.lex_state = 52, .external_lex_state = 14}, + [2611] = {.lex_state = 52, .external_lex_state = 15}, [2612] = {.lex_state = 52, .external_lex_state = 13}, - [2613] = {.lex_state = 52, .external_lex_state = 9}, - [2614] = {.lex_state = 52, .external_lex_state = 15}, + [2613] = {.lex_state = 52, .external_lex_state = 15}, + [2614] = {.lex_state = 52, .external_lex_state = 12}, [2615] = {.lex_state = 52, .external_lex_state = 14}, - [2616] = {.lex_state = 52, .external_lex_state = 12}, - [2617] = {.lex_state = 52, .external_lex_state = 12}, - [2618] = {.lex_state = 52, .external_lex_state = 13}, - [2619] = {.lex_state = 52, .external_lex_state = 12}, + [2616] = {.lex_state = 4, .external_lex_state = 15}, + [2617] = {.lex_state = 52, .external_lex_state = 15}, + [2618] = {.lex_state = 52, .external_lex_state = 15}, + [2619] = {.lex_state = 52, .external_lex_state = 15}, [2620] = {.lex_state = 52, .external_lex_state = 15}, - [2621] = {.lex_state = 52, .external_lex_state = 14}, - [2622] = {.lex_state = 52, .external_lex_state = 12}, + [2621] = {.lex_state = 52, .external_lex_state = 13}, + [2622] = {.lex_state = 52, .external_lex_state = 14}, [2623] = {.lex_state = 52, .external_lex_state = 15}, [2624] = {.lex_state = 52, .external_lex_state = 15}, [2625] = {.lex_state = 52, .external_lex_state = 15}, - [2626] = {.lex_state = 52, .external_lex_state = 15}, + [2626] = {.lex_state = 52, .external_lex_state = 14}, [2627] = {.lex_state = 52, .external_lex_state = 15}, - [2628] = {.lex_state = 52, .external_lex_state = 14}, + [2628] = {.lex_state = 52, .external_lex_state = 13}, [2629] = {.lex_state = 52, .external_lex_state = 13}, - [2630] = {.lex_state = 4, .external_lex_state = 15}, + [2630] = {.lex_state = 52, .external_lex_state = 15}, [2631] = {.lex_state = 52, .external_lex_state = 15}, - [2632] = {.lex_state = 52, .external_lex_state = 12}, - [2633] = {.lex_state = 52, .external_lex_state = 12}, + [2632] = {.lex_state = 52, .external_lex_state = 13}, + [2633] = {.lex_state = 52, .external_lex_state = 15}, [2634] = {.lex_state = 52, .external_lex_state = 15}, - [2635] = {.lex_state = 52, .external_lex_state = 14}, - [2636] = {.lex_state = 52, .external_lex_state = 14}, + [2635] = {.lex_state = 52, .external_lex_state = 15}, + [2636] = {.lex_state = 52, .external_lex_state = 15}, [2637] = {.lex_state = 52, .external_lex_state = 15}, - [2638] = {.lex_state = 52, .external_lex_state = 15}, + [2638] = {.lex_state = 4, .external_lex_state = 15}, [2639] = {.lex_state = 52, .external_lex_state = 15}, [2640] = {.lex_state = 52, .external_lex_state = 15}, - [2641] = {.lex_state = 52, .external_lex_state = 12}, - [2642] = {.lex_state = 52, .external_lex_state = 14}, - [2643] = {.lex_state = 52, .external_lex_state = 14}, - [2644] = {.lex_state = 52, .external_lex_state = 14}, + [2641] = {.lex_state = 52, .external_lex_state = 14}, + [2642] = {.lex_state = 52, .external_lex_state = 15}, + [2643] = {.lex_state = 52, .external_lex_state = 15}, + [2644] = {.lex_state = 52, .external_lex_state = 13}, [2645] = {.lex_state = 4, .external_lex_state = 15}, - [2646] = {.lex_state = 52, .external_lex_state = 12}, - [2647] = {.lex_state = 52, .external_lex_state = 13}, + [2646] = {.lex_state = 52, .external_lex_state = 15}, + [2647] = {.lex_state = 52, .external_lex_state = 14}, [2648] = {.lex_state = 52, .external_lex_state = 12}, - [2649] = {.lex_state = 4, .external_lex_state = 15}, - [2650] = {.lex_state = 52, .external_lex_state = 14}, - [2651] = {.lex_state = 52, .external_lex_state = 15}, - [2652] = {.lex_state = 52, .external_lex_state = 13}, - [2653] = {.lex_state = 52, .external_lex_state = 15}, - [2654] = {.lex_state = 52, .external_lex_state = 12}, - [2655] = {.lex_state = 52, .external_lex_state = 15}, - [2656] = {.lex_state = 52, .external_lex_state = 12}, - [2657] = {.lex_state = 52, .external_lex_state = 15}, - [2658] = {.lex_state = 52, .external_lex_state = 14}, + [2649] = {.lex_state = 52, .external_lex_state = 15}, + [2650] = {.lex_state = 4, .external_lex_state = 15}, + [2651] = {.lex_state = 52, .external_lex_state = 13}, + [2652] = {.lex_state = 52, .external_lex_state = 15}, + [2653] = {.lex_state = 52, .external_lex_state = 14}, + [2654] = {.lex_state = 52, .external_lex_state = 13}, + [2655] = {.lex_state = 52, .external_lex_state = 14}, + [2656] = {.lex_state = 52, .external_lex_state = 15}, + [2657] = {.lex_state = 52, .external_lex_state = 12}, + [2658] = {.lex_state = 52, .external_lex_state = 15}, [2659] = {.lex_state = 52, .external_lex_state = 14}, - [2660] = {.lex_state = 52, .external_lex_state = 15}, - [2661] = {.lex_state = 52, .external_lex_state = 15}, + [2660] = {.lex_state = 52, .external_lex_state = 13}, + [2661] = {.lex_state = 52, .external_lex_state = 12}, [2662] = {.lex_state = 52, .external_lex_state = 15}, - [2663] = {.lex_state = 52, .external_lex_state = 12}, - [2664] = {.lex_state = 52, .external_lex_state = 14}, + [2663] = {.lex_state = 52, .external_lex_state = 15}, + [2664] = {.lex_state = 52, .external_lex_state = 12}, [2665] = {.lex_state = 52, .external_lex_state = 13}, - [2666] = {.lex_state = 52, .external_lex_state = 13}, - [2667] = {.lex_state = 52, .external_lex_state = 13}, - [2668] = {.lex_state = 52, .external_lex_state = 14}, + [2666] = {.lex_state = 52, .external_lex_state = 12}, + [2667] = {.lex_state = 52, .external_lex_state = 15}, + [2668] = {.lex_state = 52, .external_lex_state = 15}, [2669] = {.lex_state = 52, .external_lex_state = 15}, [2670] = {.lex_state = 52, .external_lex_state = 15}, - [2671] = {.lex_state = 52, .external_lex_state = 12}, - [2672] = {.lex_state = 4, .external_lex_state = 15}, - [2673] = {.lex_state = 52, .external_lex_state = 14}, - [2674] = {.lex_state = 52, .external_lex_state = 12}, + [2671] = {.lex_state = 52, .external_lex_state = 15}, + [2672] = {.lex_state = 52, .external_lex_state = 13}, + [2673] = {.lex_state = 52, .external_lex_state = 15}, + [2674] = {.lex_state = 52, .external_lex_state = 15}, [2675] = {.lex_state = 52, .external_lex_state = 15}, - [2676] = {.lex_state = 52, .external_lex_state = 12}, - [2677] = {.lex_state = 52, .external_lex_state = 12}, - [2678] = {.lex_state = 4, .external_lex_state = 15}, + [2676] = {.lex_state = 52, .external_lex_state = 13}, + [2677] = {.lex_state = 52, .external_lex_state = 15}, + [2678] = {.lex_state = 52, .external_lex_state = 12}, [2679] = {.lex_state = 52, .external_lex_state = 15}, [2680] = {.lex_state = 52, .external_lex_state = 15}, - [2681] = {.lex_state = 52, .external_lex_state = 15}, - [2682] = {.lex_state = 52, .external_lex_state = 15}, - [2683] = {.lex_state = 52, .external_lex_state = 14}, - [2684] = {.lex_state = 4, .external_lex_state = 15}, - [2685] = {.lex_state = 52, .external_lex_state = 13}, - [2686] = {.lex_state = 52, .external_lex_state = 15}, - [2687] = {.lex_state = 52, .external_lex_state = 14}, + [2681] = {.lex_state = 52, .external_lex_state = 14}, + [2682] = {.lex_state = 52, .external_lex_state = 12}, + [2683] = {.lex_state = 52, .external_lex_state = 13}, + [2684] = {.lex_state = 52, .external_lex_state = 15}, + [2685] = {.lex_state = 52, .external_lex_state = 12}, + [2686] = {.lex_state = 52, .external_lex_state = 12}, + [2687] = {.lex_state = 52, .external_lex_state = 13}, [2688] = {.lex_state = 52, .external_lex_state = 15}, - [2689] = {.lex_state = 52, .external_lex_state = 13}, - [2690] = {.lex_state = 52, .external_lex_state = 12}, - [2691] = {.lex_state = 52, .external_lex_state = 14}, - [2692] = {.lex_state = 52, .external_lex_state = 14}, - [2693] = {.lex_state = 52, .external_lex_state = 15}, - [2694] = {.lex_state = 52, .external_lex_state = 14}, - [2695] = {.lex_state = 52, .external_lex_state = 13}, - [2696] = {.lex_state = 52, .external_lex_state = 15}, - [2697] = {.lex_state = 52, .external_lex_state = 15}, - [2698] = {.lex_state = 52, .external_lex_state = 15}, - [2699] = {.lex_state = 52, .external_lex_state = 12}, - [2700] = {.lex_state = 52, .external_lex_state = 15}, - [2701] = {.lex_state = 52, .external_lex_state = 15}, - [2702] = {.lex_state = 52, .external_lex_state = 15}, - [2703] = {.lex_state = 52, .external_lex_state = 12}, - [2704] = {.lex_state = 52, .external_lex_state = 14}, + [2689] = {.lex_state = 52, .external_lex_state = 12}, + [2690] = {.lex_state = 52, .external_lex_state = 15}, + [2691] = {.lex_state = 52, .external_lex_state = 15}, + [2692] = {.lex_state = 52, .external_lex_state = 13}, + [2693] = {.lex_state = 52, .external_lex_state = 14}, + [2694] = {.lex_state = 52, .external_lex_state = 15}, + [2695] = {.lex_state = 52, .external_lex_state = 15}, + [2696] = {.lex_state = 52, .external_lex_state = 13}, + [2697] = {.lex_state = 52, .external_lex_state = 12}, + [2698] = {.lex_state = 4, .external_lex_state = 15}, + [2699] = {.lex_state = 52, .external_lex_state = 13}, + [2700] = {.lex_state = 52, .external_lex_state = 12}, + [2701] = {.lex_state = 52, .external_lex_state = 14}, + [2702] = {.lex_state = 52, .external_lex_state = 13}, + [2703] = {.lex_state = 52, .external_lex_state = 15}, + [2704] = {.lex_state = 52, .external_lex_state = 13}, [2705] = {.lex_state = 52, .external_lex_state = 15}, - [2706] = {.lex_state = 52, .external_lex_state = 14}, + [2706] = {.lex_state = 52, .external_lex_state = 13}, [2707] = {.lex_state = 52, .external_lex_state = 15}, - [2708] = {.lex_state = 52, .external_lex_state = 14}, - [2709] = {.lex_state = 52, .external_lex_state = 15}, - [2710] = {.lex_state = 52, .external_lex_state = 15}, + [2708] = {.lex_state = 52, .external_lex_state = 13}, + [2709] = {.lex_state = 52, .external_lex_state = 14}, + [2710] = {.lex_state = 52, .external_lex_state = 13}, [2711] = {.lex_state = 52, .external_lex_state = 15}, - [2712] = {.lex_state = 52, .external_lex_state = 15}, + [2712] = {.lex_state = 52, .external_lex_state = 14}, [2713] = {.lex_state = 52, .external_lex_state = 13}, [2714] = {.lex_state = 52, .external_lex_state = 15}, [2715] = {.lex_state = 52, .external_lex_state = 14}, - [2716] = {.lex_state = 52, .external_lex_state = 15}, + [2716] = {.lex_state = 4, .external_lex_state = 15}, [2717] = {.lex_state = 52, .external_lex_state = 15}, - [2718] = {.lex_state = 52, .external_lex_state = 13}, - [2719] = {.lex_state = 52, .external_lex_state = 13}, - [2720] = {.lex_state = 52, .external_lex_state = 12}, - [2721] = {.lex_state = 52, .external_lex_state = 15}, - [2722] = {.lex_state = 52, .external_lex_state = 13}, + [2718] = {.lex_state = 52, .external_lex_state = 12}, + [2719] = {.lex_state = 52, .external_lex_state = 12}, + [2720] = {.lex_state = 52, .external_lex_state = 15}, + [2721] = {.lex_state = 52, .external_lex_state = 13}, + [2722] = {.lex_state = 52, .external_lex_state = 15}, [2723] = {.lex_state = 52, .external_lex_state = 13}, [2724] = {.lex_state = 52, .external_lex_state = 13}, - [2725] = {.lex_state = 52, .external_lex_state = 12}, - [2726] = {.lex_state = 52, .external_lex_state = 15}, + [2725] = {.lex_state = 52, .external_lex_state = 13}, + [2726] = {.lex_state = 52, .external_lex_state = 14}, [2727] = {.lex_state = 52, .external_lex_state = 15}, [2728] = {.lex_state = 52, .external_lex_state = 15}, - [2729] = {.lex_state = 52, .external_lex_state = 12}, - [2730] = {.lex_state = 52, .external_lex_state = 14}, - [2731] = {.lex_state = 52, .external_lex_state = 12}, + [2729] = {.lex_state = 4, .external_lex_state = 15}, + [2730] = {.lex_state = 52, .external_lex_state = 13}, + [2731] = {.lex_state = 52, .external_lex_state = 15}, [2732] = {.lex_state = 52, .external_lex_state = 15}, - [2733] = {.lex_state = 52, .external_lex_state = 15}, - [2734] = {.lex_state = 52, .external_lex_state = 15}, + [2733] = {.lex_state = 52, .external_lex_state = 14}, + [2734] = {.lex_state = 52, .external_lex_state = 13}, [2735] = {.lex_state = 52, .external_lex_state = 15}, [2736] = {.lex_state = 52, .external_lex_state = 15}, - [2737] = {.lex_state = 52, .external_lex_state = 15}, + [2737] = {.lex_state = 52, .external_lex_state = 14}, [2738] = {.lex_state = 52, .external_lex_state = 15}, - [2739] = {.lex_state = 52, .external_lex_state = 12}, - [2740] = {.lex_state = 52, .external_lex_state = 12}, + [2739] = {.lex_state = 52, .external_lex_state = 14}, + [2740] = {.lex_state = 52, .external_lex_state = 13}, [2741] = {.lex_state = 52, .external_lex_state = 15}, [2742] = {.lex_state = 52, .external_lex_state = 15}, - [2743] = {.lex_state = 52, .external_lex_state = 15}, - [2744] = {.lex_state = 52, .external_lex_state = 12}, + [2743] = {.lex_state = 52, .external_lex_state = 14}, + [2744] = {.lex_state = 52, .external_lex_state = 13}, [2745] = {.lex_state = 52, .external_lex_state = 15}, [2746] = {.lex_state = 52, .external_lex_state = 15}, [2747] = {.lex_state = 52, .external_lex_state = 15}, - [2748] = {.lex_state = 52, .external_lex_state = 12}, - [2749] = {.lex_state = 52, .external_lex_state = 14}, + [2748] = {.lex_state = 52, .external_lex_state = 13}, + [2749] = {.lex_state = 52, .external_lex_state = 15}, [2750] = {.lex_state = 52, .external_lex_state = 15}, [2751] = {.lex_state = 52, .external_lex_state = 15}, - [2752] = {.lex_state = 52, .external_lex_state = 12}, + [2752] = {.lex_state = 52, .external_lex_state = 14}, [2753] = {.lex_state = 52, .external_lex_state = 12}, [2754] = {.lex_state = 52, .external_lex_state = 15}, [2755] = {.lex_state = 52, .external_lex_state = 15}, - [2756] = {.lex_state = 52, .external_lex_state = 15}, - [2757] = {.lex_state = 52, .external_lex_state = 15}, - [2758] = {.lex_state = 52, .external_lex_state = 12}, - [2759] = {.lex_state = 52, .external_lex_state = 13}, + [2756] = {.lex_state = 52, .external_lex_state = 14}, + [2757] = {.lex_state = 52, .external_lex_state = 13}, + [2758] = {.lex_state = 52, .external_lex_state = 13}, + [2759] = {.lex_state = 52, .external_lex_state = 14}, [2760] = {.lex_state = 52, .external_lex_state = 15}, - [2761] = {.lex_state = 52, .external_lex_state = 13}, - [2762] = {.lex_state = 52, .external_lex_state = 13}, - [2763] = {.lex_state = 52, .external_lex_state = 12}, - [2764] = {.lex_state = 52, .external_lex_state = 12}, + [2761] = {.lex_state = 52, .external_lex_state = 15}, + [2762] = {.lex_state = 52, .external_lex_state = 15}, + [2763] = {.lex_state = 52, .external_lex_state = 14}, + [2764] = {.lex_state = 52, .external_lex_state = 15}, [2765] = {.lex_state = 52, .external_lex_state = 15}, - [2766] = {.lex_state = 52, .external_lex_state = 14}, + [2766] = {.lex_state = 52, .external_lex_state = 15}, [2767] = {.lex_state = 52, .external_lex_state = 15}, [2768] = {.lex_state = 52, .external_lex_state = 15}, - [2769] = {.lex_state = 52, .external_lex_state = 12}, - [2770] = {.lex_state = 52, .external_lex_state = 14}, + [2769] = {.lex_state = 52, .external_lex_state = 15}, + [2770] = {.lex_state = 52, .external_lex_state = 15}, [2771] = {.lex_state = 52, .external_lex_state = 15}, [2772] = {.lex_state = 52, .external_lex_state = 15}, - [2773] = {.lex_state = 52, .external_lex_state = 14}, - [2774] = {.lex_state = 52, .external_lex_state = 15}, - [2775] = {.lex_state = 52, .external_lex_state = 15}, - [2776] = {.lex_state = 52, .external_lex_state = 13}, - [2777] = {.lex_state = 52, .external_lex_state = 15}, - [2778] = {.lex_state = 52, .external_lex_state = 14}, - [2779] = {.lex_state = 52, .external_lex_state = 12}, - [2780] = {.lex_state = 52, .external_lex_state = 14}, - [2781] = {.lex_state = 4, .external_lex_state = 15}, - [2782] = {.lex_state = 52, .external_lex_state = 14}, - [2783] = {.lex_state = 52, .external_lex_state = 15}, - [2784] = {.lex_state = 52, .external_lex_state = 15}, - [2785] = {.lex_state = 52, .external_lex_state = 12}, - [2786] = {.lex_state = 4, .external_lex_state = 15}, - [2787] = {.lex_state = 52, .external_lex_state = 15}, - [2788] = {.lex_state = 52, .external_lex_state = 12}, - [2789] = {.lex_state = 52, .external_lex_state = 12}, - [2790] = {.lex_state = 52, .external_lex_state = 14}, - [2791] = {.lex_state = 52, .external_lex_state = 12}, - [2792] = {.lex_state = 52, .external_lex_state = 12}, - [2793] = {.lex_state = 52, .external_lex_state = 15}, - [2794] = {.lex_state = 52, .external_lex_state = 15}, - [2795] = {.lex_state = 52, .external_lex_state = 15}, - [2796] = {.lex_state = 52, .external_lex_state = 15}, - [2797] = {.lex_state = 52, .external_lex_state = 15}, - [2798] = {.lex_state = 52, .external_lex_state = 15}, - [2799] = {.lex_state = 52, .external_lex_state = 13}, - [2800] = {.lex_state = 52, .external_lex_state = 15}, - [2801] = {.lex_state = 52, .external_lex_state = 15}, - [2802] = {.lex_state = 52, .external_lex_state = 15}, - [2803] = {.lex_state = 52, .external_lex_state = 15}, - [2804] = {.lex_state = 52, .external_lex_state = 15}, - [2805] = {.lex_state = 52, .external_lex_state = 15}, - [2806] = {.lex_state = 52, .external_lex_state = 15}, - [2807] = {.lex_state = 52, .external_lex_state = 12}, - [2808] = {.lex_state = 52, .external_lex_state = 15}, + [2773] = {.lex_state = 52, .external_lex_state = 15}, + [2774] = {.lex_state = 52, .external_lex_state = 12}, + [2775] = {.lex_state = 52, .external_lex_state = 12}, + [2776] = {.lex_state = 52, .external_lex_state = 15}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { + [STATE(0)] = { [ts_builtin_sym_end] = ACTIONS(1), [sym_identifier] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(1), @@ -10417,73 +10352,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_escape_interpolation] = ACTIONS(1), [sym_string_end] = ACTIONS(1), }, - [1] = { - [sym_module] = STATE(2732), - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_if_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1798), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [STATE(1)] = { + [sym_module] = STATE(2755), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(2406), + [sym_future_import_statement] = STATE(2406), + [sym_import_from_statement] = STATE(2406), + [sym_print_statement] = STATE(2406), + [sym_assert_statement] = STATE(2406), + [sym_expression_statement] = STATE(2406), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2406), + [sym_delete_statement] = STATE(2406), + [sym_raise_statement] = STATE(2406), + [sym_pass_statement] = STATE(2406), + [sym_break_statement] = STATE(2406), + [sym_continue_statement] = STATE(2406), + [sym_if_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_global_statement] = STATE(2406), + [sym_nonlocal_statement] = STATE(2406), + [sym_exec_statement] = STATE(2406), + [sym_type_alias_statement] = STATE(2406), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1817), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1817), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -10531,73 +10466,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(81), }, - [2] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(726), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(2)] = { + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(2495), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -10645,73 +10580,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [3] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(706), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(3)] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(696), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -10759,73 +10694,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [4] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(802), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(4)] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(819), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -10873,73 +10808,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [5] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(819), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(5)] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(725), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -10987,73 +10922,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [6] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(813), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(6)] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(740), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11101,73 +11036,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [7] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(827), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(7)] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(724), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11215,73 +11150,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [8] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(731), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(8)] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(729), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11329,73 +11264,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [9] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(733), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(9)] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(731), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11443,73 +11378,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [10] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(740), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(10)] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(736), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11557,73 +11492,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [11] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(712), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(11)] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(697), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11671,73 +11606,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [12] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(62), - [sym_match_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_try_statement] = STATE(62), - [sym_with_statement] = STATE(62), - [sym_function_definition] = STATE(62), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(671), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(12)] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(710), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11782,76 +11717,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [13] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(747), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(13)] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(634), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11896,76 +11831,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, - [14] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(750), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(14)] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(744), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12013,73 +11948,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [15] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(752), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(15)] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(750), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12127,73 +12062,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [16] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(729), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(16)] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(751), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12241,73 +12176,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [17] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(715), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(17)] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(683), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12355,73 +12290,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [18] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(768), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(18)] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(756), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12469,23 +12404,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [19] = { + [STATE(19)] = { [sym__statement] = STATE(62), [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), [sym_if_statement] = STATE(62), [sym_match_statement] = STATE(62), [sym_for_statement] = STATE(62), @@ -12493,49 +12428,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(62), [sym_with_statement] = STATE(62), [sym_function_definition] = STATE(62), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), [sym_class_definition] = STATE(62), [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(673), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(641), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12583,73 +12518,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, - [20] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(680), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(20)] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(668), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12694,76 +12629,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, - [21] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(772), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(21)] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(758), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12811,73 +12746,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [22] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(716), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(22)] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(689), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12925,73 +12860,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [23] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(70), - [sym_match_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_with_statement] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(2552), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(23)] = { + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(2499), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13036,76 +12971,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [24] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(778), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(24)] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(763), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13153,73 +13088,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [25] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(785), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(25)] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(766), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13267,73 +13202,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [26] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(70), - [sym_match_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_with_statement] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(2528), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(26)] = { + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(2492), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13378,76 +13313,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [27] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(70), - [sym_match_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_with_statement] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(2532), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(27)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(768), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13492,76 +13427,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, - [28] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(788), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(28)] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(767), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13609,23 +13544,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [29] = { + [STATE(29)] = { [sym__statement] = STATE(62), [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), [sym_if_statement] = STATE(62), [sym_match_statement] = STATE(62), [sym_for_statement] = STATE(62), @@ -13633,49 +13568,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(62), [sym_with_statement] = STATE(62), [sym_function_definition] = STATE(62), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), [sym_class_definition] = STATE(62), [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(678), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(648), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13723,73 +13658,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, - [30] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(1821), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(30)] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(426), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13834,418 +13769,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, - [31] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(70), - [sym_match_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_with_statement] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(2573), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1836), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), - [anon_sym_assert] = ACTIONS(21), - [anon_sym_return] = ACTIONS(23), - [anon_sym_del] = ACTIONS(25), - [anon_sym_raise] = ACTIONS(27), - [anon_sym_pass] = ACTIONS(29), - [anon_sym_break] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(83), - [anon_sym_match] = ACTIONS(85), - [anon_sym_async] = ACTIONS(87), - [anon_sym_for] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [anon_sym_with] = ACTIONS(95), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(99), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_AT] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), - [sym_string_start] = ACTIONS(81), - }, - [32] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(70), - [sym_match_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_with_statement] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(2574), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1836), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), - [anon_sym_assert] = ACTIONS(21), - [anon_sym_return] = ACTIONS(23), - [anon_sym_del] = ACTIONS(25), - [anon_sym_raise] = ACTIONS(27), - [anon_sym_pass] = ACTIONS(29), - [anon_sym_break] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(83), - [anon_sym_match] = ACTIONS(85), - [anon_sym_async] = ACTIONS(87), - [anon_sym_for] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [anon_sym_with] = ACTIONS(95), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(99), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_AT] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), - [sym_string_start] = ACTIONS(81), - }, - [33] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(70), - [sym_match_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_with_statement] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(2582), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1836), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), - [anon_sym_assert] = ACTIONS(21), - [anon_sym_return] = ACTIONS(23), - [anon_sym_del] = ACTIONS(25), - [anon_sym_raise] = ACTIONS(27), - [anon_sym_pass] = ACTIONS(29), - [anon_sym_break] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(83), - [anon_sym_match] = ACTIONS(85), - [anon_sym_async] = ACTIONS(87), - [anon_sym_for] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [anon_sym_with] = ACTIONS(95), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(99), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_AT] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), - [sym_string_start] = ACTIONS(81), - }, - [34] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(620), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(31)] = { + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(2520), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14293,73 +13886,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [35] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(714), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(32)] = { + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(2524), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14407,73 +14000,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [36] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(780), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(33)] = { + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(2532), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14521,23 +14114,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [37] = { + [STATE(34)] = { [sym__statement] = STATE(68), [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), [sym_if_statement] = STATE(68), [sym_match_statement] = STATE(68), [sym_for_statement] = STATE(68), @@ -14545,49 +14138,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(68), [sym_with_statement] = STATE(68), [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), [sym_class_definition] = STATE(68), [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(793), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(666), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14632,26 +14225,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [38] = { + [STATE(35)] = { [sym__statement] = STATE(68), [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), [sym_if_statement] = STATE(68), [sym_match_statement] = STATE(68), [sym_for_statement] = STATE(68), @@ -14659,49 +14252,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(68), [sym_with_statement] = STATE(68), [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), [sym_class_definition] = STATE(68), [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(803), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(620), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14746,26 +14339,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [39] = { + [STATE(36)] = { [sym__statement] = STATE(68), [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), [sym_if_statement] = STATE(68), [sym_match_statement] = STATE(68), [sym_for_statement] = STATE(68), @@ -14773,49 +14366,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(68), [sym_with_statement] = STATE(68), [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), [sym_class_definition] = STATE(68), [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(762), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(622), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14860,26 +14453,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [40] = { + [STATE(37)] = { [sym__statement] = STATE(68), [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), [sym_if_statement] = STATE(68), [sym_match_statement] = STATE(68), [sym_for_statement] = STATE(68), @@ -14887,49 +14480,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(68), [sym_with_statement] = STATE(68), [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), [sym_class_definition] = STATE(68), [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(766), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(653), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14974,26 +14567,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [41] = { + [STATE(38)] = { [sym__statement] = STATE(68), [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), [sym_if_statement] = STATE(68), [sym_match_statement] = STATE(68), [sym_for_statement] = STATE(68), @@ -15001,49 +14594,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(68), [sym_with_statement] = STATE(68), [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), [sym_class_definition] = STATE(68), [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(775), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(654), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15088,76 +14681,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [42] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(745), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(39)] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(606), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15202,26 +14795,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [43] = { + [STATE(40)] = { [sym__statement] = STATE(68), [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), [sym_if_statement] = STATE(68), [sym_match_statement] = STATE(68), [sym_for_statement] = STATE(68), @@ -15229,49 +14822,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(68), [sym_with_statement] = STATE(68), [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), [sym_class_definition] = STATE(68), [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(708), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(417), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15316,76 +14909,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [44] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(71), - [sym_match_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_with_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(698), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(41)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(614), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15430,76 +15023,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(113), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, - [45] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(758), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(42)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(693), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15544,76 +15137,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, - [46] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(761), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(43)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(797), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15658,76 +15251,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, - [47] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(764), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(44)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(799), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15772,76 +15365,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, - [48] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(623), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(45)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(806), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15886,76 +15479,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, - [49] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(718), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(46)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(812), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16000,76 +15593,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, - [50] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(789), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(47)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(814), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16114,76 +15707,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, - [51] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(71), - [sym_match_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_with_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(687), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(48)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(816), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16228,76 +15821,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(113), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, - [52] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(660), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(49)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(820), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16342,76 +15935,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(115), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, - [53] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(797), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(50)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(702), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16456,76 +16049,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, - [54] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(702), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(51)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(711), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16570,76 +16163,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, - [55] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(806), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(52)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(830), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16684,76 +16277,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, - [56] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(834), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(53)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(714), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16798,76 +16391,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, - [57] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(835), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(54)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(718), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16912,76 +16505,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, - [58] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(71), - [sym_match_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_with_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(675), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(55)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(706), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17026,76 +16619,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(113), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, - [59] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(681), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(56)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(717), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17140,76 +16733,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(115), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, - [60] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(1823), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(57)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(825), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17254,76 +16847,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, - [61] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(679), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(58)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(682), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17371,72 +16964,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, - [62] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1836), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(59)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(742), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17481,139 +17075,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(117), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, - [63] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1836), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1836), - [sym_identifier] = ACTIONS(119), - [anon_sym_import] = ACTIONS(122), - [anon_sym_from] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(128), - [anon_sym_STAR] = ACTIONS(131), - [anon_sym_print] = ACTIONS(134), - [anon_sym_assert] = ACTIONS(137), - [anon_sym_return] = ACTIONS(140), - [anon_sym_del] = ACTIONS(143), - [anon_sym_raise] = ACTIONS(146), - [anon_sym_pass] = ACTIONS(149), - [anon_sym_break] = ACTIONS(152), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_if] = ACTIONS(158), - [anon_sym_match] = ACTIONS(161), - [anon_sym_async] = ACTIONS(164), - [anon_sym_for] = ACTIONS(167), - [anon_sym_while] = ACTIONS(170), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(176), - [anon_sym_def] = ACTIONS(179), - [anon_sym_global] = ACTIONS(182), - [anon_sym_nonlocal] = ACTIONS(185), - [anon_sym_exec] = ACTIONS(188), - [anon_sym_type] = ACTIONS(191), - [anon_sym_class] = ACTIONS(194), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_AT] = ACTIONS(200), - [anon_sym_DASH] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(206), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_not] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_lambda] = ACTIONS(212), - [anon_sym_yield] = ACTIONS(215), - [sym_ellipsis] = ACTIONS(218), - [sym_integer] = ACTIONS(221), - [sym_float] = ACTIONS(218), - [anon_sym_await] = ACTIONS(224), - [sym_true] = ACTIONS(221), - [sym_false] = ACTIONS(221), - [sym_none] = ACTIONS(221), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(227), - [sym_string_start] = ACTIONS(229), - }, - [64] = { + [STATE(60)] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), [sym_if_statement] = STATE(67), [sym_match_statement] = STATE(67), [sym_for_statement] = STATE(67), @@ -17621,49 +17102,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(67), [sym_with_statement] = STATE(67), [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), [sym_class_definition] = STATE(67), [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1798), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(765), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1798), - [ts_builtin_sym_end] = ACTIONS(232), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17677,19 +17158,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_for] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), - [anon_sym_def] = ACTIONS(49), + [anon_sym_if] = ACTIONS(83), + [anon_sym_match] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_def] = ACTIONS(97), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), + [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -17708,74 +17189,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, - [65] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1836), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(61)] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(649), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17820,75 +17303,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(234), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, - [66] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1836), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(62)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1819), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17933,188 +17416,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(236), + [sym__dedent] = ACTIONS(111), [sym_string_start] = ACTIONS(81), }, - [67] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_if_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1798), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1798), - [ts_builtin_sym_end] = ACTIONS(227), - [sym_identifier] = ACTIONS(119), - [anon_sym_import] = ACTIONS(122), - [anon_sym_from] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(128), - [anon_sym_STAR] = ACTIONS(131), - [anon_sym_print] = ACTIONS(134), - [anon_sym_assert] = ACTIONS(137), - [anon_sym_return] = ACTIONS(140), - [anon_sym_del] = ACTIONS(143), - [anon_sym_raise] = ACTIONS(146), - [anon_sym_pass] = ACTIONS(149), - [anon_sym_break] = ACTIONS(152), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_if] = ACTIONS(238), - [anon_sym_match] = ACTIONS(241), - [anon_sym_async] = ACTIONS(244), - [anon_sym_for] = ACTIONS(247), - [anon_sym_while] = ACTIONS(250), - [anon_sym_try] = ACTIONS(253), - [anon_sym_with] = ACTIONS(256), - [anon_sym_def] = ACTIONS(259), - [anon_sym_global] = ACTIONS(182), - [anon_sym_nonlocal] = ACTIONS(185), - [anon_sym_exec] = ACTIONS(188), - [anon_sym_type] = ACTIONS(191), - [anon_sym_class] = ACTIONS(262), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_AT] = ACTIONS(200), - [anon_sym_DASH] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(206), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_not] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_lambda] = ACTIONS(212), - [anon_sym_yield] = ACTIONS(215), - [sym_ellipsis] = ACTIONS(218), - [sym_integer] = ACTIONS(221), - [sym_float] = ACTIONS(218), - [anon_sym_await] = ACTIONS(224), - [sym_true] = ACTIONS(221), - [sym_false] = ACTIONS(221), - [sym_none] = ACTIONS(221), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(229), - }, - [68] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1836), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(63)] = { + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2406), + [sym_future_import_statement] = STATE(2406), + [sym_import_from_statement] = STATE(2406), + [sym_print_statement] = STATE(2406), + [sym_assert_statement] = STATE(2406), + [sym_expression_statement] = STATE(2406), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2406), + [sym_delete_statement] = STATE(2406), + [sym_raise_statement] = STATE(2406), + [sym_pass_statement] = STATE(2406), + [sym_break_statement] = STATE(2406), + [sym_continue_statement] = STATE(2406), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2406), + [sym_nonlocal_statement] = STATE(2406), + [sym_exec_statement] = STATE(2406), + [sym_type_alias_statement] = STATE(2406), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1817), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1817), + [ts_builtin_sym_end] = ACTIONS(113), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18128,19 +17499,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(83), - [anon_sym_match] = ACTIONS(85), - [anon_sym_async] = ACTIONS(87), - [anon_sym_for] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [anon_sym_with] = ACTIONS(95), - [anon_sym_def] = ACTIONS(97), + [anon_sym_if] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_async] = ACTIONS(39), + [anon_sym_for] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_with] = ACTIONS(47), + [anon_sym_def] = ACTIONS(49), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(59), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -18159,75 +17530,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(265), [sym_string_start] = ACTIONS(81), }, - [69] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1836), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(64)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1819), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18272,75 +17642,301 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(267), + [sym__dedent] = ACTIONS(115), [sym_string_start] = ACTIONS(81), }, - [70] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1836), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(65)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1819), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym_identifier] = ACTIONS(117), + [anon_sym_import] = ACTIONS(120), + [anon_sym_from] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(126), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_print] = ACTIONS(132), + [anon_sym_assert] = ACTIONS(135), + [anon_sym_return] = ACTIONS(138), + [anon_sym_del] = ACTIONS(141), + [anon_sym_raise] = ACTIONS(144), + [anon_sym_pass] = ACTIONS(147), + [anon_sym_break] = ACTIONS(150), + [anon_sym_continue] = ACTIONS(153), + [anon_sym_if] = ACTIONS(156), + [anon_sym_match] = ACTIONS(159), + [anon_sym_async] = ACTIONS(162), + [anon_sym_for] = ACTIONS(165), + [anon_sym_while] = ACTIONS(168), + [anon_sym_try] = ACTIONS(171), + [anon_sym_with] = ACTIONS(174), + [anon_sym_def] = ACTIONS(177), + [anon_sym_global] = ACTIONS(180), + [anon_sym_nonlocal] = ACTIONS(183), + [anon_sym_exec] = ACTIONS(186), + [anon_sym_type] = ACTIONS(189), + [anon_sym_class] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_AT] = ACTIONS(198), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(204), + [anon_sym_PLUS] = ACTIONS(201), + [anon_sym_not] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_lambda] = ACTIONS(210), + [anon_sym_yield] = ACTIONS(213), + [sym_ellipsis] = ACTIONS(216), + [sym_integer] = ACTIONS(219), + [sym_float] = ACTIONS(216), + [anon_sym_await] = ACTIONS(222), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [sym_none] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(225), + [sym_string_start] = ACTIONS(227), + }, + [STATE(66)] = { + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2406), + [sym_future_import_statement] = STATE(2406), + [sym_import_from_statement] = STATE(2406), + [sym_print_statement] = STATE(2406), + [sym_assert_statement] = STATE(2406), + [sym_expression_statement] = STATE(2406), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2406), + [sym_delete_statement] = STATE(2406), + [sym_raise_statement] = STATE(2406), + [sym_pass_statement] = STATE(2406), + [sym_break_statement] = STATE(2406), + [sym_continue_statement] = STATE(2406), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2406), + [sym_nonlocal_statement] = STATE(2406), + [sym_exec_statement] = STATE(2406), + [sym_type_alias_statement] = STATE(2406), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1817), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1817), + [ts_builtin_sym_end] = ACTIONS(225), + [sym_identifier] = ACTIONS(117), + [anon_sym_import] = ACTIONS(120), + [anon_sym_from] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(126), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_print] = ACTIONS(132), + [anon_sym_assert] = ACTIONS(135), + [anon_sym_return] = ACTIONS(138), + [anon_sym_del] = ACTIONS(141), + [anon_sym_raise] = ACTIONS(144), + [anon_sym_pass] = ACTIONS(147), + [anon_sym_break] = ACTIONS(150), + [anon_sym_continue] = ACTIONS(153), + [anon_sym_if] = ACTIONS(230), + [anon_sym_match] = ACTIONS(233), + [anon_sym_async] = ACTIONS(236), + [anon_sym_for] = ACTIONS(239), + [anon_sym_while] = ACTIONS(242), + [anon_sym_try] = ACTIONS(245), + [anon_sym_with] = ACTIONS(248), + [anon_sym_def] = ACTIONS(251), + [anon_sym_global] = ACTIONS(180), + [anon_sym_nonlocal] = ACTIONS(183), + [anon_sym_exec] = ACTIONS(186), + [anon_sym_type] = ACTIONS(189), + [anon_sym_class] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_AT] = ACTIONS(198), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(204), + [anon_sym_PLUS] = ACTIONS(201), + [anon_sym_not] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_lambda] = ACTIONS(210), + [anon_sym_yield] = ACTIONS(213), + [sym_ellipsis] = ACTIONS(216), + [sym_integer] = ACTIONS(219), + [sym_float] = ACTIONS(216), + [anon_sym_await] = ACTIONS(222), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [sym_none] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(227), + }, + [STATE(67)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1819), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18385,75 +17981,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(269), + [sym__dedent] = ACTIONS(257), [sym_string_start] = ACTIONS(81), }, - [71] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1836), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(68)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1819), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18498,75 +18094,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(271), + [sym__dedent] = ACTIONS(259), [sym_string_start] = ACTIONS(81), }, - [72] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1836), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(69)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1819), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18611,283 +18207,283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(273), + [sym__dedent] = ACTIONS(261), [sym_string_start] = ACTIONS(81), }, - [73] = { - [sym_named_expression] = STATE(1738), - [sym__named_expression_lhs] = STATE(2678), - [sym_type_parameter] = STATE(2062), - [sym_list_splat_pattern] = STATE(1325), - [sym_as_pattern] = STATE(1738), - [sym_expression] = STATE(1781), - [sym_primary_expression] = STATE(971), - [sym_not_operator] = STATE(1738), - [sym_boolean_operator] = STATE(1738), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_comparison_operator] = STATE(1738), - [sym_lambda] = STATE(1738), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_type] = STATE(2248), - [sym_splat_type] = STATE(2098), - [sym_generic_type] = STATE(2098), - [sym_union_type] = STATE(2098), - [sym_constrained_type] = STATE(2098), - [sym_member_type] = STATE(2098), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_conditional_expression] = STATE(1738), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), - [sym_identifier] = ACTIONS(275), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(287), - [anon_sym_print] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(294), - [anon_sym_match] = ACTIONS(297), - [anon_sym_async] = ACTIONS(290), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_exec] = ACTIONS(290), - [anon_sym_type] = ACTIONS(302), - [anon_sym_EQ] = ACTIONS(304), - [anon_sym_LBRACK] = ACTIONS(306), - [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(308), - [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(308), - [anon_sym_not] = ACTIONS(313), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(279), - [anon_sym_SLASH_SLASH] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(279), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(316), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_lambda] = ACTIONS(318), - [anon_sym_PLUS_EQ] = ACTIONS(320), - [anon_sym_DASH_EQ] = ACTIONS(320), - [anon_sym_STAR_EQ] = ACTIONS(320), - [anon_sym_SLASH_EQ] = ACTIONS(320), - [anon_sym_AT_EQ] = ACTIONS(320), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(320), - [anon_sym_PERCENT_EQ] = ACTIONS(320), - [anon_sym_STAR_STAR_EQ] = ACTIONS(320), - [anon_sym_GT_GT_EQ] = ACTIONS(320), - [anon_sym_LT_LT_EQ] = ACTIONS(320), - [anon_sym_AMP_EQ] = ACTIONS(320), - [anon_sym_CARET_EQ] = ACTIONS(320), - [anon_sym_PIPE_EQ] = ACTIONS(320), - [sym_ellipsis] = ACTIONS(322), - [sym_integer] = ACTIONS(324), - [sym_float] = ACTIONS(322), - [anon_sym_await] = ACTIONS(326), - [sym_true] = ACTIONS(324), - [sym_false] = ACTIONS(324), - [sym_none] = ACTIONS(324), + [STATE(70)] = { + [sym_named_expression] = STATE(1723), + [sym__named_expression_lhs] = STATE(2729), + [sym_type_parameter] = STATE(2081), + [sym_list_splat_pattern] = STATE(1372), + [sym_as_pattern] = STATE(1723), + [sym_expression] = STATE(1762), + [sym_primary_expression] = STATE(952), + [sym_not_operator] = STATE(1723), + [sym_boolean_operator] = STATE(1723), + [sym_binary_operator] = STATE(1377), + [sym_unary_operator] = STATE(1377), + [sym_comparison_operator] = STATE(1723), + [sym_lambda] = STATE(1723), + [sym_attribute] = STATE(1377), + [sym_subscript] = STATE(1377), + [sym_call] = STATE(1377), + [sym_type] = STATE(2124), + [sym_splat_type] = STATE(2074), + [sym_generic_type] = STATE(2074), + [sym_union_type] = STATE(2074), + [sym_constrained_type] = STATE(2074), + [sym_member_type] = STATE(2074), + [sym_list] = STATE(1377), + [sym_set] = STATE(1377), + [sym_tuple] = STATE(1377), + [sym_dictionary] = STATE(1377), + [sym_list_comprehension] = STATE(1377), + [sym_dictionary_comprehension] = STATE(1377), + [sym_set_comprehension] = STATE(1377), + [sym_generator_expression] = STATE(1377), + [sym_parenthesized_expression] = STATE(1377), + [sym_conditional_expression] = STATE(1723), + [sym_concatenated_string] = STATE(1377), + [sym_string] = STATE(984), + [sym_await] = STATE(1377), + [sym_identifier] = ACTIONS(263), + [anon_sym_SEMI] = ACTIONS(265), + [anon_sym_DOT] = ACTIONS(267), + [anon_sym_LPAREN] = ACTIONS(269), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_as] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(275), + [anon_sym_print] = ACTIONS(278), + [anon_sym_GT_GT] = ACTIONS(267), + [anon_sym_COLON_EQ] = ACTIONS(280), + [anon_sym_if] = ACTIONS(267), + [anon_sym_COLON] = ACTIONS(282), + [anon_sym_match] = ACTIONS(285), + [anon_sym_async] = ACTIONS(278), + [anon_sym_in] = ACTIONS(267), + [anon_sym_STAR_STAR] = ACTIONS(287), + [anon_sym_exec] = ACTIONS(278), + [anon_sym_type] = ACTIONS(290), + [anon_sym_EQ] = ACTIONS(292), + [anon_sym_LBRACK] = ACTIONS(294), + [anon_sym_AT] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_PIPE] = ACTIONS(267), + [anon_sym_LBRACE] = ACTIONS(299), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_not] = ACTIONS(301), + [anon_sym_and] = ACTIONS(267), + [anon_sym_or] = ACTIONS(267), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(267), + [anon_sym_SLASH_SLASH] = ACTIONS(267), + [anon_sym_AMP] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_LT_LT] = ACTIONS(267), + [anon_sym_TILDE] = ACTIONS(304), + [anon_sym_is] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(265), + [anon_sym_EQ_EQ] = ACTIONS(265), + [anon_sym_BANG_EQ] = ACTIONS(265), + [anon_sym_GT_EQ] = ACTIONS(265), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_LT_GT] = ACTIONS(265), + [anon_sym_lambda] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(308), + [anon_sym_DASH_EQ] = ACTIONS(308), + [anon_sym_STAR_EQ] = ACTIONS(308), + [anon_sym_SLASH_EQ] = ACTIONS(308), + [anon_sym_AT_EQ] = ACTIONS(308), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(308), + [anon_sym_PERCENT_EQ] = ACTIONS(308), + [anon_sym_STAR_STAR_EQ] = ACTIONS(308), + [anon_sym_GT_GT_EQ] = ACTIONS(308), + [anon_sym_LT_LT_EQ] = ACTIONS(308), + [anon_sym_AMP_EQ] = ACTIONS(308), + [anon_sym_CARET_EQ] = ACTIONS(308), + [anon_sym_PIPE_EQ] = ACTIONS(308), + [sym_ellipsis] = ACTIONS(310), + [sym_integer] = ACTIONS(312), + [sym_float] = ACTIONS(310), + [anon_sym_await] = ACTIONS(314), + [sym_true] = ACTIONS(312), + [sym_false] = ACTIONS(312), + [sym_none] = ACTIONS(312), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(277), - [sym_string_start] = ACTIONS(328), - }, - [74] = { - [sym_named_expression] = STATE(1738), - [sym__named_expression_lhs] = STATE(2678), - [sym_list_splat_pattern] = STATE(1325), - [sym_as_pattern] = STATE(1738), - [sym_expression] = STATE(1781), - [sym_primary_expression] = STATE(971), - [sym_not_operator] = STATE(1738), - [sym_boolean_operator] = STATE(1738), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_comparison_operator] = STATE(1738), - [sym_lambda] = STATE(1738), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_type] = STATE(2248), - [sym_splat_type] = STATE(2098), - [sym_generic_type] = STATE(2098), - [sym_union_type] = STATE(2098), - [sym_constrained_type] = STATE(2098), - [sym_member_type] = STATE(2098), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_conditional_expression] = STATE(1738), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), - [sym_identifier] = ACTIONS(275), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(287), - [anon_sym_print] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(304), - [anon_sym_match] = ACTIONS(297), - [anon_sym_async] = ACTIONS(290), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(299), - [anon_sym_exec] = ACTIONS(290), - [anon_sym_type] = ACTIONS(302), - [anon_sym_EQ] = ACTIONS(304), - [anon_sym_LBRACK] = ACTIONS(330), - [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(308), - [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(308), - [anon_sym_not] = ACTIONS(313), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(279), - [anon_sym_SLASH_SLASH] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(279), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(316), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_lambda] = ACTIONS(318), - [anon_sym_PLUS_EQ] = ACTIONS(320), - [anon_sym_DASH_EQ] = ACTIONS(320), - [anon_sym_STAR_EQ] = ACTIONS(320), - [anon_sym_SLASH_EQ] = ACTIONS(320), - [anon_sym_AT_EQ] = ACTIONS(320), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(320), - [anon_sym_PERCENT_EQ] = ACTIONS(320), - [anon_sym_STAR_STAR_EQ] = ACTIONS(320), - [anon_sym_GT_GT_EQ] = ACTIONS(320), - [anon_sym_LT_LT_EQ] = ACTIONS(320), - [anon_sym_AMP_EQ] = ACTIONS(320), - [anon_sym_CARET_EQ] = ACTIONS(320), - [anon_sym_PIPE_EQ] = ACTIONS(320), - [sym_ellipsis] = ACTIONS(322), - [sym_integer] = ACTIONS(324), - [sym_float] = ACTIONS(322), - [anon_sym_await] = ACTIONS(326), - [sym_true] = ACTIONS(324), - [sym_false] = ACTIONS(324), - [sym_none] = ACTIONS(324), + [sym__newline] = ACTIONS(265), + [sym_string_start] = ACTIONS(316), + }, + [STATE(71)] = { + [sym_named_expression] = STATE(1723), + [sym__named_expression_lhs] = STATE(2729), + [sym_list_splat_pattern] = STATE(1372), + [sym_as_pattern] = STATE(1723), + [sym_expression] = STATE(1762), + [sym_primary_expression] = STATE(952), + [sym_not_operator] = STATE(1723), + [sym_boolean_operator] = STATE(1723), + [sym_binary_operator] = STATE(1377), + [sym_unary_operator] = STATE(1377), + [sym_comparison_operator] = STATE(1723), + [sym_lambda] = STATE(1723), + [sym_attribute] = STATE(1377), + [sym_subscript] = STATE(1377), + [sym_call] = STATE(1377), + [sym_type] = STATE(2124), + [sym_splat_type] = STATE(2074), + [sym_generic_type] = STATE(2074), + [sym_union_type] = STATE(2074), + [sym_constrained_type] = STATE(2074), + [sym_member_type] = STATE(2074), + [sym_list] = STATE(1377), + [sym_set] = STATE(1377), + [sym_tuple] = STATE(1377), + [sym_dictionary] = STATE(1377), + [sym_list_comprehension] = STATE(1377), + [sym_dictionary_comprehension] = STATE(1377), + [sym_set_comprehension] = STATE(1377), + [sym_generator_expression] = STATE(1377), + [sym_parenthesized_expression] = STATE(1377), + [sym_conditional_expression] = STATE(1723), + [sym_concatenated_string] = STATE(1377), + [sym_string] = STATE(984), + [sym_await] = STATE(1377), + [sym_identifier] = ACTIONS(263), + [anon_sym_SEMI] = ACTIONS(265), + [anon_sym_DOT] = ACTIONS(267), + [anon_sym_LPAREN] = ACTIONS(269), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_as] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(275), + [anon_sym_print] = ACTIONS(278), + [anon_sym_GT_GT] = ACTIONS(267), + [anon_sym_COLON_EQ] = ACTIONS(280), + [anon_sym_if] = ACTIONS(267), + [anon_sym_COLON] = ACTIONS(292), + [anon_sym_match] = ACTIONS(285), + [anon_sym_async] = ACTIONS(278), + [anon_sym_in] = ACTIONS(267), + [anon_sym_STAR_STAR] = ACTIONS(287), + [anon_sym_exec] = ACTIONS(278), + [anon_sym_type] = ACTIONS(290), + [anon_sym_EQ] = ACTIONS(292), + [anon_sym_LBRACK] = ACTIONS(318), + [anon_sym_AT] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_PIPE] = ACTIONS(267), + [anon_sym_LBRACE] = ACTIONS(299), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_not] = ACTIONS(301), + [anon_sym_and] = ACTIONS(267), + [anon_sym_or] = ACTIONS(267), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(267), + [anon_sym_SLASH_SLASH] = ACTIONS(267), + [anon_sym_AMP] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_LT_LT] = ACTIONS(267), + [anon_sym_TILDE] = ACTIONS(304), + [anon_sym_is] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(265), + [anon_sym_EQ_EQ] = ACTIONS(265), + [anon_sym_BANG_EQ] = ACTIONS(265), + [anon_sym_GT_EQ] = ACTIONS(265), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_LT_GT] = ACTIONS(265), + [anon_sym_lambda] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(308), + [anon_sym_DASH_EQ] = ACTIONS(308), + [anon_sym_STAR_EQ] = ACTIONS(308), + [anon_sym_SLASH_EQ] = ACTIONS(308), + [anon_sym_AT_EQ] = ACTIONS(308), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(308), + [anon_sym_PERCENT_EQ] = ACTIONS(308), + [anon_sym_STAR_STAR_EQ] = ACTIONS(308), + [anon_sym_GT_GT_EQ] = ACTIONS(308), + [anon_sym_LT_LT_EQ] = ACTIONS(308), + [anon_sym_AMP_EQ] = ACTIONS(308), + [anon_sym_CARET_EQ] = ACTIONS(308), + [anon_sym_PIPE_EQ] = ACTIONS(308), + [sym_ellipsis] = ACTIONS(310), + [sym_integer] = ACTIONS(312), + [sym_float] = ACTIONS(310), + [anon_sym_await] = ACTIONS(314), + [sym_true] = ACTIONS(312), + [sym_false] = ACTIONS(312), + [sym_none] = ACTIONS(312), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(277), - [sym_string_start] = ACTIONS(328), + [sym__newline] = ACTIONS(265), + [sym_string_start] = ACTIONS(316), }, - [75] = { - [sym__simple_statements] = STATE(749), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(640), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1689), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1081), - [sym_type] = STATE(2109), - [sym_splat_type] = STATE(2098), - [sym_generic_type] = STATE(2098), - [sym_union_type] = STATE(2098), - [sym_constrained_type] = STATE(2098), - [sym_member_type] = STATE(2098), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [sym_identifier] = ACTIONS(333), + [STATE(72)] = { + [sym__simple_statements] = STATE(832), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(624), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1685), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(625), + [sym_subscript] = STATE(625), + [sym_call] = STATE(1099), + [sym_type] = STATE(1987), + [sym_splat_type] = STATE(2074), + [sym_generic_type] = STATE(2074), + [sym_union_type] = STATE(2074), + [sym_constrained_type] = STATE(2074), + [sym_member_type] = STATE(2074), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [sym_identifier] = ACTIONS(321), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_print] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_print] = ACTIONS(327), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -18895,14 +18491,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(341), - [anon_sym_async] = ACTIONS(343), - [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_match] = ACTIONS(329), + [anon_sym_async] = ACTIONS(331), + [anon_sym_STAR_STAR] = ACTIONS(333), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(347), - [anon_sym_type] = ACTIONS(349), - [anon_sym_LBRACK] = ACTIONS(351), + [anon_sym_exec] = ACTIONS(335), + [anon_sym_type] = ACTIONS(337), + [anon_sym_LBRACK] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -18913,81 +18509,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(353), + [anon_sym_await] = ACTIONS(341), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(355), - [sym__indent] = ACTIONS(357), + [sym__newline] = ACTIONS(343), + [sym__indent] = ACTIONS(345), [sym_string_start] = ACTIONS(81), }, - [76] = { - [sym__simple_statements] = STATE(767), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(640), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1689), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1081), - [sym_type] = STATE(2109), - [sym_splat_type] = STATE(2098), - [sym_generic_type] = STATE(2098), - [sym_union_type] = STATE(2098), - [sym_constrained_type] = STATE(2098), - [sym_member_type] = STATE(2098), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [sym_identifier] = ACTIONS(333), + [STATE(73)] = { + [sym__simple_statements] = STATE(759), + [sym_import_statement] = STATE(2406), + [sym_future_import_statement] = STATE(2406), + [sym_import_from_statement] = STATE(2406), + [sym_print_statement] = STATE(2406), + [sym_assert_statement] = STATE(2406), + [sym_expression_statement] = STATE(2406), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2406), + [sym_delete_statement] = STATE(2406), + [sym_raise_statement] = STATE(2406), + [sym_pass_statement] = STATE(2406), + [sym_break_statement] = STATE(2406), + [sym_continue_statement] = STATE(2406), + [sym_global_statement] = STATE(2406), + [sym_nonlocal_statement] = STATE(2406), + [sym_exec_statement] = STATE(2406), + [sym_type_alias_statement] = STATE(2406), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(624), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1685), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(625), + [sym_subscript] = STATE(625), + [sym_call] = STATE(1099), + [sym_type] = STATE(1987), + [sym_splat_type] = STATE(2074), + [sym_generic_type] = STATE(2074), + [sym_union_type] = STATE(2074), + [sym_constrained_type] = STATE(2074), + [sym_member_type] = STATE(2074), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [sym_identifier] = ACTIONS(321), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_print] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_print] = ACTIONS(327), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -18995,14 +18591,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(341), - [anon_sym_async] = ACTIONS(343), - [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_match] = ACTIONS(329), + [anon_sym_async] = ACTIONS(331), + [anon_sym_STAR_STAR] = ACTIONS(333), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(347), - [anon_sym_type] = ACTIONS(349), - [anon_sym_LBRACK] = ACTIONS(351), + [anon_sym_exec] = ACTIONS(335), + [anon_sym_type] = ACTIONS(337), + [anon_sym_LBRACK] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -19013,81 +18609,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(353), + [anon_sym_await] = ACTIONS(341), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(359), - [sym__indent] = ACTIONS(361), + [sym__newline] = ACTIONS(347), + [sym__indent] = ACTIONS(349), [sym_string_start] = ACTIONS(81), }, - [77] = { - [sym__simple_statements] = STATE(760), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(640), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1689), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1081), - [sym_type] = STATE(2109), - [sym_splat_type] = STATE(2098), - [sym_generic_type] = STATE(2098), - [sym_union_type] = STATE(2098), - [sym_constrained_type] = STATE(2098), - [sym_member_type] = STATE(2098), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [sym_identifier] = ACTIONS(333), + [STATE(74)] = { + [sym__simple_statements] = STATE(833), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(624), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1685), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(625), + [sym_subscript] = STATE(625), + [sym_call] = STATE(1099), + [sym_type] = STATE(1987), + [sym_splat_type] = STATE(2074), + [sym_generic_type] = STATE(2074), + [sym_union_type] = STATE(2074), + [sym_constrained_type] = STATE(2074), + [sym_member_type] = STATE(2074), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [sym_identifier] = ACTIONS(321), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_print] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_print] = ACTIONS(327), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -19095,14 +18691,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(341), - [anon_sym_async] = ACTIONS(343), - [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_match] = ACTIONS(329), + [anon_sym_async] = ACTIONS(331), + [anon_sym_STAR_STAR] = ACTIONS(333), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(347), - [anon_sym_type] = ACTIONS(349), - [anon_sym_LBRACK] = ACTIONS(351), + [anon_sym_exec] = ACTIONS(335), + [anon_sym_type] = ACTIONS(337), + [anon_sym_LBRACK] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -19113,81 +18709,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(353), + [anon_sym_await] = ACTIONS(341), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(363), - [sym__indent] = ACTIONS(365), + [sym__newline] = ACTIONS(351), + [sym__indent] = ACTIONS(353), [sym_string_start] = ACTIONS(81), }, - [78] = { - [sym__simple_statements] = STATE(798), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(640), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1689), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1081), - [sym_type] = STATE(2109), - [sym_splat_type] = STATE(2098), - [sym_generic_type] = STATE(2098), - [sym_union_type] = STATE(2098), - [sym_constrained_type] = STATE(2098), - [sym_member_type] = STATE(2098), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [sym_identifier] = ACTIONS(333), + [STATE(75)] = { + [sym__simple_statements] = STATE(743), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(624), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1685), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(625), + [sym_subscript] = STATE(625), + [sym_call] = STATE(1099), + [sym_type] = STATE(1987), + [sym_splat_type] = STATE(2074), + [sym_generic_type] = STATE(2074), + [sym_union_type] = STATE(2074), + [sym_constrained_type] = STATE(2074), + [sym_member_type] = STATE(2074), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [sym_identifier] = ACTIONS(321), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_print] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_print] = ACTIONS(327), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -19195,14 +18791,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(341), - [anon_sym_async] = ACTIONS(343), - [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_match] = ACTIONS(329), + [anon_sym_async] = ACTIONS(331), + [anon_sym_STAR_STAR] = ACTIONS(333), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(347), - [anon_sym_type] = ACTIONS(349), - [anon_sym_LBRACK] = ACTIONS(351), + [anon_sym_exec] = ACTIONS(335), + [anon_sym_type] = ACTIONS(337), + [anon_sym_LBRACK] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -19213,81 +18809,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(353), + [anon_sym_await] = ACTIONS(341), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(367), - [sym__indent] = ACTIONS(369), + [sym__newline] = ACTIONS(355), + [sym__indent] = ACTIONS(357), [sym_string_start] = ACTIONS(81), }, - [79] = { - [sym__simple_statements] = STATE(773), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(640), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1689), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1081), - [sym_type] = STATE(2109), - [sym_splat_type] = STATE(2098), - [sym_generic_type] = STATE(2098), - [sym_union_type] = STATE(2098), - [sym_constrained_type] = STATE(2098), - [sym_member_type] = STATE(2098), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [sym_identifier] = ACTIONS(333), + [STATE(76)] = { + [sym__simple_statements] = STATE(747), + [sym_import_statement] = STATE(2406), + [sym_future_import_statement] = STATE(2406), + [sym_import_from_statement] = STATE(2406), + [sym_print_statement] = STATE(2406), + [sym_assert_statement] = STATE(2406), + [sym_expression_statement] = STATE(2406), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2406), + [sym_delete_statement] = STATE(2406), + [sym_raise_statement] = STATE(2406), + [sym_pass_statement] = STATE(2406), + [sym_break_statement] = STATE(2406), + [sym_continue_statement] = STATE(2406), + [sym_global_statement] = STATE(2406), + [sym_nonlocal_statement] = STATE(2406), + [sym_exec_statement] = STATE(2406), + [sym_type_alias_statement] = STATE(2406), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(624), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1685), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(625), + [sym_subscript] = STATE(625), + [sym_call] = STATE(1099), + [sym_type] = STATE(1987), + [sym_splat_type] = STATE(2074), + [sym_generic_type] = STATE(2074), + [sym_union_type] = STATE(2074), + [sym_constrained_type] = STATE(2074), + [sym_member_type] = STATE(2074), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [sym_identifier] = ACTIONS(321), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_print] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_print] = ACTIONS(327), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -19295,14 +18891,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(341), - [anon_sym_async] = ACTIONS(343), - [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_match] = ACTIONS(329), + [anon_sym_async] = ACTIONS(331), + [anon_sym_STAR_STAR] = ACTIONS(333), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(347), - [anon_sym_type] = ACTIONS(349), - [anon_sym_LBRACK] = ACTIONS(351), + [anon_sym_exec] = ACTIONS(335), + [anon_sym_type] = ACTIONS(337), + [anon_sym_LBRACK] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -19313,81 +18909,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(353), + [anon_sym_await] = ACTIONS(341), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(371), - [sym__indent] = ACTIONS(373), + [sym__newline] = ACTIONS(359), + [sym__indent] = ACTIONS(361), [sym_string_start] = ACTIONS(81), }, - [80] = { - [sym__simple_statements] = STATE(779), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(640), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1689), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1081), - [sym_type] = STATE(2109), - [sym_splat_type] = STATE(2098), - [sym_generic_type] = STATE(2098), - [sym_union_type] = STATE(2098), - [sym_constrained_type] = STATE(2098), - [sym_member_type] = STATE(2098), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [sym_identifier] = ACTIONS(333), + [STATE(77)] = { + [sym__simple_statements] = STATE(764), + [sym_import_statement] = STATE(2406), + [sym_future_import_statement] = STATE(2406), + [sym_import_from_statement] = STATE(2406), + [sym_print_statement] = STATE(2406), + [sym_assert_statement] = STATE(2406), + [sym_expression_statement] = STATE(2406), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2406), + [sym_delete_statement] = STATE(2406), + [sym_raise_statement] = STATE(2406), + [sym_pass_statement] = STATE(2406), + [sym_break_statement] = STATE(2406), + [sym_continue_statement] = STATE(2406), + [sym_global_statement] = STATE(2406), + [sym_nonlocal_statement] = STATE(2406), + [sym_exec_statement] = STATE(2406), + [sym_type_alias_statement] = STATE(2406), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(624), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1685), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(625), + [sym_subscript] = STATE(625), + [sym_call] = STATE(1099), + [sym_type] = STATE(1987), + [sym_splat_type] = STATE(2074), + [sym_generic_type] = STATE(2074), + [sym_union_type] = STATE(2074), + [sym_constrained_type] = STATE(2074), + [sym_member_type] = STATE(2074), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [sym_identifier] = ACTIONS(321), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_print] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_print] = ACTIONS(327), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -19395,14 +18991,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(341), - [anon_sym_async] = ACTIONS(343), - [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_match] = ACTIONS(329), + [anon_sym_async] = ACTIONS(331), + [anon_sym_STAR_STAR] = ACTIONS(333), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(347), - [anon_sym_type] = ACTIONS(349), - [anon_sym_LBRACK] = ACTIONS(351), + [anon_sym_exec] = ACTIONS(335), + [anon_sym_type] = ACTIONS(337), + [anon_sym_LBRACK] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -19413,81 +19009,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(353), + [anon_sym_await] = ACTIONS(341), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(375), - [sym__indent] = ACTIONS(377), + [sym__newline] = ACTIONS(363), + [sym__indent] = ACTIONS(365), [sym_string_start] = ACTIONS(81), }, - [81] = { - [sym__simple_statements] = STATE(830), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(640), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1689), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1081), - [sym_type] = STATE(2109), - [sym_splat_type] = STATE(2098), - [sym_generic_type] = STATE(2098), - [sym_union_type] = STATE(2098), - [sym_constrained_type] = STATE(2098), - [sym_member_type] = STATE(2098), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [sym_identifier] = ACTIONS(333), + [STATE(78)] = { + [sym__simple_statements] = STATE(755), + [sym_import_statement] = STATE(2406), + [sym_future_import_statement] = STATE(2406), + [sym_import_from_statement] = STATE(2406), + [sym_print_statement] = STATE(2406), + [sym_assert_statement] = STATE(2406), + [sym_expression_statement] = STATE(2406), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2406), + [sym_delete_statement] = STATE(2406), + [sym_raise_statement] = STATE(2406), + [sym_pass_statement] = STATE(2406), + [sym_break_statement] = STATE(2406), + [sym_continue_statement] = STATE(2406), + [sym_global_statement] = STATE(2406), + [sym_nonlocal_statement] = STATE(2406), + [sym_exec_statement] = STATE(2406), + [sym_type_alias_statement] = STATE(2406), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(624), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1685), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(625), + [sym_subscript] = STATE(625), + [sym_call] = STATE(1099), + [sym_type] = STATE(1987), + [sym_splat_type] = STATE(2074), + [sym_generic_type] = STATE(2074), + [sym_union_type] = STATE(2074), + [sym_constrained_type] = STATE(2074), + [sym_member_type] = STATE(2074), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [sym_identifier] = ACTIONS(321), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_print] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_print] = ACTIONS(327), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -19495,14 +19091,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(341), - [anon_sym_async] = ACTIONS(343), - [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_match] = ACTIONS(329), + [anon_sym_async] = ACTIONS(331), + [anon_sym_STAR_STAR] = ACTIONS(333), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(347), - [anon_sym_type] = ACTIONS(349), - [anon_sym_LBRACK] = ACTIONS(351), + [anon_sym_exec] = ACTIONS(335), + [anon_sym_type] = ACTIONS(337), + [anon_sym_LBRACK] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -19513,81 +19109,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(353), + [anon_sym_await] = ACTIONS(341), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(379), - [sym__indent] = ACTIONS(381), + [sym__newline] = ACTIONS(367), + [sym__indent] = ACTIONS(369), [sym_string_start] = ACTIONS(81), }, - [82] = { - [sym__simple_statements] = STATE(786), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(640), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1689), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1081), - [sym_type] = STATE(2109), - [sym_splat_type] = STATE(2098), - [sym_generic_type] = STATE(2098), - [sym_union_type] = STATE(2098), - [sym_constrained_type] = STATE(2098), - [sym_member_type] = STATE(2098), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [sym_identifier] = ACTIONS(333), + [STATE(79)] = { + [sym__simple_statements] = STATE(828), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(624), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1685), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(625), + [sym_subscript] = STATE(625), + [sym_call] = STATE(1099), + [sym_type] = STATE(1987), + [sym_splat_type] = STATE(2074), + [sym_generic_type] = STATE(2074), + [sym_union_type] = STATE(2074), + [sym_constrained_type] = STATE(2074), + [sym_member_type] = STATE(2074), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [sym_identifier] = ACTIONS(321), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_print] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(325), + [anon_sym_print] = ACTIONS(327), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -19595,14 +19191,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(341), - [anon_sym_async] = ACTIONS(343), - [anon_sym_STAR_STAR] = ACTIONS(345), + [anon_sym_match] = ACTIONS(329), + [anon_sym_async] = ACTIONS(331), + [anon_sym_STAR_STAR] = ACTIONS(333), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(347), - [anon_sym_type] = ACTIONS(349), - [anon_sym_LBRACK] = ACTIONS(351), + [anon_sym_exec] = ACTIONS(335), + [anon_sym_type] = ACTIONS(337), + [anon_sym_LBRACK] = ACTIONS(339), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -19613,463 +19209,463 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(353), + [anon_sym_await] = ACTIONS(341), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(383), - [sym__indent] = ACTIONS(385), + [sym__newline] = ACTIONS(371), + [sym__indent] = ACTIONS(373), [sym_string_start] = ACTIONS(81), }, - [83] = { - [sym_chevron] = STATE(2156), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_list_splat_pattern] = STATE(1135), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1805), - [sym_primary_expression] = STATE(870), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_attribute] = STATE(1081), - [sym_subscript] = STATE(1081), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [sym_identifier] = ACTIONS(387), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_print] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(397), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(294), - [anon_sym_match] = ACTIONS(399), - [anon_sym_async] = ACTIONS(395), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(279), - [anon_sym_exec] = ACTIONS(395), - [anon_sym_type] = ACTIONS(399), - [anon_sym_EQ] = ACTIONS(304), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(404), - [anon_sym_PIPE] = ACTIONS(279), + [STATE(80)] = { + [sym_chevron] = STATE(2147), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_list_splat_pattern] = STATE(1047), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1801), + [sym_primary_expression] = STATE(845), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_attribute] = STATE(1099), + [sym_subscript] = STATE(1099), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [sym_identifier] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(265), + [anon_sym_DOT] = ACTIONS(267), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_as] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(380), + [anon_sym_print] = ACTIONS(383), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_COLON_EQ] = ACTIONS(280), + [anon_sym_if] = ACTIONS(267), + [anon_sym_COLON] = ACTIONS(282), + [anon_sym_match] = ACTIONS(387), + [anon_sym_async] = ACTIONS(383), + [anon_sym_in] = ACTIONS(267), + [anon_sym_STAR_STAR] = ACTIONS(267), + [anon_sym_exec] = ACTIONS(383), + [anon_sym_type] = ACTIONS(387), + [anon_sym_EQ] = ACTIONS(292), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_AT] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(392), + [anon_sym_PIPE] = ACTIONS(267), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(404), - [anon_sym_not] = ACTIONS(407), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(279), - [anon_sym_SLASH_SLASH] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(279), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_LT_LT] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(392), + [anon_sym_not] = ACTIONS(395), + [anon_sym_and] = ACTIONS(267), + [anon_sym_or] = ACTIONS(267), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(267), + [anon_sym_SLASH_SLASH] = ACTIONS(267), + [anon_sym_AMP] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_LT_LT] = ACTIONS(267), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), + [anon_sym_is] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(265), + [anon_sym_EQ_EQ] = ACTIONS(265), + [anon_sym_BANG_EQ] = ACTIONS(265), + [anon_sym_GT_EQ] = ACTIONS(265), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_LT_GT] = ACTIONS(265), [anon_sym_lambda] = ACTIONS(71), - [anon_sym_PLUS_EQ] = ACTIONS(320), - [anon_sym_DASH_EQ] = ACTIONS(320), - [anon_sym_STAR_EQ] = ACTIONS(320), - [anon_sym_SLASH_EQ] = ACTIONS(320), - [anon_sym_AT_EQ] = ACTIONS(320), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(320), - [anon_sym_PERCENT_EQ] = ACTIONS(320), - [anon_sym_STAR_STAR_EQ] = ACTIONS(320), - [anon_sym_GT_GT_EQ] = ACTIONS(320), - [anon_sym_LT_LT_EQ] = ACTIONS(320), - [anon_sym_AMP_EQ] = ACTIONS(320), - [anon_sym_CARET_EQ] = ACTIONS(320), - [anon_sym_PIPE_EQ] = ACTIONS(320), + [anon_sym_PLUS_EQ] = ACTIONS(308), + [anon_sym_DASH_EQ] = ACTIONS(308), + [anon_sym_STAR_EQ] = ACTIONS(308), + [anon_sym_SLASH_EQ] = ACTIONS(308), + [anon_sym_AT_EQ] = ACTIONS(308), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(308), + [anon_sym_PERCENT_EQ] = ACTIONS(308), + [anon_sym_STAR_STAR_EQ] = ACTIONS(308), + [anon_sym_GT_GT_EQ] = ACTIONS(308), + [anon_sym_LT_LT_EQ] = ACTIONS(308), + [anon_sym_AMP_EQ] = ACTIONS(308), + [anon_sym_CARET_EQ] = ACTIONS(308), + [anon_sym_PIPE_EQ] = ACTIONS(308), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(410), + [anon_sym_await] = ACTIONS(398), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(277), + [sym__newline] = ACTIONS(265), [sym_string_start] = ACTIONS(81), }, - [84] = { - [sym_chevron] = STATE(2156), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_list_splat_pattern] = STATE(1135), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1805), - [sym_primary_expression] = STATE(870), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_attribute] = STATE(1081), - [sym_subscript] = STATE(1081), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [sym_identifier] = ACTIONS(387), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_print] = ACTIONS(395), - [anon_sym_GT_GT] = ACTIONS(397), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(304), - [anon_sym_match] = ACTIONS(399), - [anon_sym_async] = ACTIONS(395), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(279), - [anon_sym_exec] = ACTIONS(395), - [anon_sym_type] = ACTIONS(399), - [anon_sym_EQ] = ACTIONS(304), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(404), - [anon_sym_PIPE] = ACTIONS(279), + [STATE(81)] = { + [sym_chevron] = STATE(2147), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_list_splat_pattern] = STATE(1047), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1801), + [sym_primary_expression] = STATE(845), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_attribute] = STATE(1099), + [sym_subscript] = STATE(1099), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [sym_identifier] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(265), + [anon_sym_DOT] = ACTIONS(267), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_as] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(380), + [anon_sym_print] = ACTIONS(383), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_COLON_EQ] = ACTIONS(280), + [anon_sym_if] = ACTIONS(267), + [anon_sym_COLON] = ACTIONS(292), + [anon_sym_match] = ACTIONS(387), + [anon_sym_async] = ACTIONS(383), + [anon_sym_in] = ACTIONS(267), + [anon_sym_STAR_STAR] = ACTIONS(267), + [anon_sym_exec] = ACTIONS(383), + [anon_sym_type] = ACTIONS(387), + [anon_sym_EQ] = ACTIONS(292), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_AT] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(392), + [anon_sym_PIPE] = ACTIONS(267), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(404), - [anon_sym_not] = ACTIONS(407), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(279), - [anon_sym_SLASH_SLASH] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(279), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_LT_LT] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(392), + [anon_sym_not] = ACTIONS(395), + [anon_sym_and] = ACTIONS(267), + [anon_sym_or] = ACTIONS(267), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(267), + [anon_sym_SLASH_SLASH] = ACTIONS(267), + [anon_sym_AMP] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_LT_LT] = ACTIONS(267), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), + [anon_sym_is] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(265), + [anon_sym_EQ_EQ] = ACTIONS(265), + [anon_sym_BANG_EQ] = ACTIONS(265), + [anon_sym_GT_EQ] = ACTIONS(265), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_LT_GT] = ACTIONS(265), [anon_sym_lambda] = ACTIONS(71), - [anon_sym_PLUS_EQ] = ACTIONS(320), - [anon_sym_DASH_EQ] = ACTIONS(320), - [anon_sym_STAR_EQ] = ACTIONS(320), - [anon_sym_SLASH_EQ] = ACTIONS(320), - [anon_sym_AT_EQ] = ACTIONS(320), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(320), - [anon_sym_PERCENT_EQ] = ACTIONS(320), - [anon_sym_STAR_STAR_EQ] = ACTIONS(320), - [anon_sym_GT_GT_EQ] = ACTIONS(320), - [anon_sym_LT_LT_EQ] = ACTIONS(320), - [anon_sym_AMP_EQ] = ACTIONS(320), - [anon_sym_CARET_EQ] = ACTIONS(320), - [anon_sym_PIPE_EQ] = ACTIONS(320), + [anon_sym_PLUS_EQ] = ACTIONS(308), + [anon_sym_DASH_EQ] = ACTIONS(308), + [anon_sym_STAR_EQ] = ACTIONS(308), + [anon_sym_SLASH_EQ] = ACTIONS(308), + [anon_sym_AT_EQ] = ACTIONS(308), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(308), + [anon_sym_PERCENT_EQ] = ACTIONS(308), + [anon_sym_STAR_STAR_EQ] = ACTIONS(308), + [anon_sym_GT_GT_EQ] = ACTIONS(308), + [anon_sym_LT_LT_EQ] = ACTIONS(308), + [anon_sym_AMP_EQ] = ACTIONS(308), + [anon_sym_CARET_EQ] = ACTIONS(308), + [anon_sym_PIPE_EQ] = ACTIONS(308), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(410), + [anon_sym_await] = ACTIONS(398), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(277), + [sym__newline] = ACTIONS(265), [sym_string_start] = ACTIONS(81), }, - [85] = { - [sym_named_expression] = STATE(1738), - [sym__named_expression_lhs] = STATE(2678), - [sym_list_splat_pattern] = STATE(1325), - [sym_as_pattern] = STATE(1738), - [sym_expression] = STATE(1888), - [sym_primary_expression] = STATE(971), - [sym_not_operator] = STATE(1738), - [sym_boolean_operator] = STATE(1738), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_comparison_operator] = STATE(1738), - [sym_lambda] = STATE(1738), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_conditional_expression] = STATE(1738), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), - [sym_identifier] = ACTIONS(412), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(414), - [anon_sym_print] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(304), - [anon_sym_match] = ACTIONS(297), - [anon_sym_async] = ACTIONS(290), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(279), - [anon_sym_exec] = ACTIONS(290), - [anon_sym_type] = ACTIONS(297), - [anon_sym_EQ] = ACTIONS(304), - [anon_sym_LBRACK] = ACTIONS(330), - [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(308), - [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(308), - [anon_sym_not] = ACTIONS(313), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(279), - [anon_sym_SLASH_SLASH] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(279), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(316), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_lambda] = ACTIONS(318), - [anon_sym_PLUS_EQ] = ACTIONS(320), - [anon_sym_DASH_EQ] = ACTIONS(320), - [anon_sym_STAR_EQ] = ACTIONS(320), - [anon_sym_SLASH_EQ] = ACTIONS(320), - [anon_sym_AT_EQ] = ACTIONS(320), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(320), - [anon_sym_PERCENT_EQ] = ACTIONS(320), - [anon_sym_STAR_STAR_EQ] = ACTIONS(320), - [anon_sym_GT_GT_EQ] = ACTIONS(320), - [anon_sym_LT_LT_EQ] = ACTIONS(320), - [anon_sym_AMP_EQ] = ACTIONS(320), - [anon_sym_CARET_EQ] = ACTIONS(320), - [anon_sym_PIPE_EQ] = ACTIONS(320), - [sym_ellipsis] = ACTIONS(322), - [sym_integer] = ACTIONS(324), - [sym_float] = ACTIONS(322), - [anon_sym_await] = ACTIONS(326), - [sym_true] = ACTIONS(324), - [sym_false] = ACTIONS(324), - [sym_none] = ACTIONS(324), + [STATE(82)] = { + [sym_named_expression] = STATE(1723), + [sym__named_expression_lhs] = STATE(2729), + [sym_list_splat_pattern] = STATE(1372), + [sym_as_pattern] = STATE(1723), + [sym_expression] = STATE(1842), + [sym_primary_expression] = STATE(952), + [sym_not_operator] = STATE(1723), + [sym_boolean_operator] = STATE(1723), + [sym_binary_operator] = STATE(1377), + [sym_unary_operator] = STATE(1377), + [sym_comparison_operator] = STATE(1723), + [sym_lambda] = STATE(1723), + [sym_attribute] = STATE(1377), + [sym_subscript] = STATE(1377), + [sym_call] = STATE(1377), + [sym_list] = STATE(1377), + [sym_set] = STATE(1377), + [sym_tuple] = STATE(1377), + [sym_dictionary] = STATE(1377), + [sym_list_comprehension] = STATE(1377), + [sym_dictionary_comprehension] = STATE(1377), + [sym_set_comprehension] = STATE(1377), + [sym_generator_expression] = STATE(1377), + [sym_parenthesized_expression] = STATE(1377), + [sym_conditional_expression] = STATE(1723), + [sym_concatenated_string] = STATE(1377), + [sym_string] = STATE(984), + [sym_await] = STATE(1377), + [sym_identifier] = ACTIONS(400), + [anon_sym_SEMI] = ACTIONS(265), + [anon_sym_DOT] = ACTIONS(267), + [anon_sym_LPAREN] = ACTIONS(269), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_as] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(402), + [anon_sym_print] = ACTIONS(278), + [anon_sym_GT_GT] = ACTIONS(267), + [anon_sym_COLON_EQ] = ACTIONS(280), + [anon_sym_if] = ACTIONS(267), + [anon_sym_COLON] = ACTIONS(292), + [anon_sym_match] = ACTIONS(285), + [anon_sym_async] = ACTIONS(278), + [anon_sym_in] = ACTIONS(267), + [anon_sym_STAR_STAR] = ACTIONS(267), + [anon_sym_exec] = ACTIONS(278), + [anon_sym_type] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(292), + [anon_sym_LBRACK] = ACTIONS(318), + [anon_sym_AT] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_PIPE] = ACTIONS(267), + [anon_sym_LBRACE] = ACTIONS(299), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_not] = ACTIONS(301), + [anon_sym_and] = ACTIONS(267), + [anon_sym_or] = ACTIONS(267), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(267), + [anon_sym_SLASH_SLASH] = ACTIONS(267), + [anon_sym_AMP] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_LT_LT] = ACTIONS(267), + [anon_sym_TILDE] = ACTIONS(304), + [anon_sym_is] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(265), + [anon_sym_EQ_EQ] = ACTIONS(265), + [anon_sym_BANG_EQ] = ACTIONS(265), + [anon_sym_GT_EQ] = ACTIONS(265), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_LT_GT] = ACTIONS(265), + [anon_sym_lambda] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(308), + [anon_sym_DASH_EQ] = ACTIONS(308), + [anon_sym_STAR_EQ] = ACTIONS(308), + [anon_sym_SLASH_EQ] = ACTIONS(308), + [anon_sym_AT_EQ] = ACTIONS(308), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(308), + [anon_sym_PERCENT_EQ] = ACTIONS(308), + [anon_sym_STAR_STAR_EQ] = ACTIONS(308), + [anon_sym_GT_GT_EQ] = ACTIONS(308), + [anon_sym_LT_LT_EQ] = ACTIONS(308), + [anon_sym_AMP_EQ] = ACTIONS(308), + [anon_sym_CARET_EQ] = ACTIONS(308), + [anon_sym_PIPE_EQ] = ACTIONS(308), + [sym_ellipsis] = ACTIONS(310), + [sym_integer] = ACTIONS(312), + [sym_float] = ACTIONS(310), + [anon_sym_await] = ACTIONS(314), + [sym_true] = ACTIONS(312), + [sym_false] = ACTIONS(312), + [sym_none] = ACTIONS(312), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(277), - [sym_string_start] = ACTIONS(328), - }, - [86] = { - [sym_named_expression] = STATE(1738), - [sym__named_expression_lhs] = STATE(2678), - [sym_list_splat_pattern] = STATE(1325), - [sym_as_pattern] = STATE(1738), - [sym_expression] = STATE(1849), - [sym_primary_expression] = STATE(971), - [sym_not_operator] = STATE(1738), - [sym_boolean_operator] = STATE(1738), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_comparison_operator] = STATE(1738), - [sym_lambda] = STATE(1738), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_conditional_expression] = STATE(1738), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), - [sym_identifier] = ACTIONS(412), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(281), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(414), - [anon_sym_print] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(304), - [anon_sym_match] = ACTIONS(297), - [anon_sym_async] = ACTIONS(290), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(279), - [anon_sym_exec] = ACTIONS(290), - [anon_sym_type] = ACTIONS(297), - [anon_sym_EQ] = ACTIONS(304), - [anon_sym_LBRACK] = ACTIONS(330), - [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(308), - [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(308), - [anon_sym_not] = ACTIONS(313), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(279), - [anon_sym_SLASH_SLASH] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(279), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(316), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_lambda] = ACTIONS(318), - [anon_sym_PLUS_EQ] = ACTIONS(320), - [anon_sym_DASH_EQ] = ACTIONS(320), - [anon_sym_STAR_EQ] = ACTIONS(320), - [anon_sym_SLASH_EQ] = ACTIONS(320), - [anon_sym_AT_EQ] = ACTIONS(320), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(320), - [anon_sym_PERCENT_EQ] = ACTIONS(320), - [anon_sym_STAR_STAR_EQ] = ACTIONS(320), - [anon_sym_GT_GT_EQ] = ACTIONS(320), - [anon_sym_LT_LT_EQ] = ACTIONS(320), - [anon_sym_AMP_EQ] = ACTIONS(320), - [anon_sym_CARET_EQ] = ACTIONS(320), - [anon_sym_PIPE_EQ] = ACTIONS(320), - [sym_ellipsis] = ACTIONS(322), - [sym_integer] = ACTIONS(324), - [sym_float] = ACTIONS(322), - [anon_sym_await] = ACTIONS(326), - [sym_true] = ACTIONS(324), - [sym_false] = ACTIONS(324), - [sym_none] = ACTIONS(324), + [sym__newline] = ACTIONS(265), + [sym_string_start] = ACTIONS(316), + }, + [STATE(83)] = { + [sym_named_expression] = STATE(1723), + [sym__named_expression_lhs] = STATE(2729), + [sym_list_splat_pattern] = STATE(1372), + [sym_as_pattern] = STATE(1723), + [sym_expression] = STATE(1846), + [sym_primary_expression] = STATE(952), + [sym_not_operator] = STATE(1723), + [sym_boolean_operator] = STATE(1723), + [sym_binary_operator] = STATE(1377), + [sym_unary_operator] = STATE(1377), + [sym_comparison_operator] = STATE(1723), + [sym_lambda] = STATE(1723), + [sym_attribute] = STATE(1377), + [sym_subscript] = STATE(1377), + [sym_call] = STATE(1377), + [sym_list] = STATE(1377), + [sym_set] = STATE(1377), + [sym_tuple] = STATE(1377), + [sym_dictionary] = STATE(1377), + [sym_list_comprehension] = STATE(1377), + [sym_dictionary_comprehension] = STATE(1377), + [sym_set_comprehension] = STATE(1377), + [sym_generator_expression] = STATE(1377), + [sym_parenthesized_expression] = STATE(1377), + [sym_conditional_expression] = STATE(1723), + [sym_concatenated_string] = STATE(1377), + [sym_string] = STATE(984), + [sym_await] = STATE(1377), + [sym_identifier] = ACTIONS(400), + [anon_sym_SEMI] = ACTIONS(265), + [anon_sym_DOT] = ACTIONS(267), + [anon_sym_LPAREN] = ACTIONS(269), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_as] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(402), + [anon_sym_print] = ACTIONS(278), + [anon_sym_GT_GT] = ACTIONS(267), + [anon_sym_COLON_EQ] = ACTIONS(280), + [anon_sym_if] = ACTIONS(267), + [anon_sym_COLON] = ACTIONS(292), + [anon_sym_match] = ACTIONS(285), + [anon_sym_async] = ACTIONS(278), + [anon_sym_in] = ACTIONS(267), + [anon_sym_STAR_STAR] = ACTIONS(267), + [anon_sym_exec] = ACTIONS(278), + [anon_sym_type] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(292), + [anon_sym_LBRACK] = ACTIONS(318), + [anon_sym_AT] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_PIPE] = ACTIONS(267), + [anon_sym_LBRACE] = ACTIONS(299), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_not] = ACTIONS(301), + [anon_sym_and] = ACTIONS(267), + [anon_sym_or] = ACTIONS(267), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(267), + [anon_sym_SLASH_SLASH] = ACTIONS(267), + [anon_sym_AMP] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_LT_LT] = ACTIONS(267), + [anon_sym_TILDE] = ACTIONS(304), + [anon_sym_is] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(265), + [anon_sym_EQ_EQ] = ACTIONS(265), + [anon_sym_BANG_EQ] = ACTIONS(265), + [anon_sym_GT_EQ] = ACTIONS(265), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_LT_GT] = ACTIONS(265), + [anon_sym_lambda] = ACTIONS(306), + [anon_sym_PLUS_EQ] = ACTIONS(308), + [anon_sym_DASH_EQ] = ACTIONS(308), + [anon_sym_STAR_EQ] = ACTIONS(308), + [anon_sym_SLASH_EQ] = ACTIONS(308), + [anon_sym_AT_EQ] = ACTIONS(308), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(308), + [anon_sym_PERCENT_EQ] = ACTIONS(308), + [anon_sym_STAR_STAR_EQ] = ACTIONS(308), + [anon_sym_GT_GT_EQ] = ACTIONS(308), + [anon_sym_LT_LT_EQ] = ACTIONS(308), + [anon_sym_AMP_EQ] = ACTIONS(308), + [anon_sym_CARET_EQ] = ACTIONS(308), + [anon_sym_PIPE_EQ] = ACTIONS(308), + [sym_ellipsis] = ACTIONS(310), + [sym_integer] = ACTIONS(312), + [sym_float] = ACTIONS(310), + [anon_sym_await] = ACTIONS(314), + [sym_true] = ACTIONS(312), + [sym_false] = ACTIONS(312), + [sym_none] = ACTIONS(312), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(277), - [sym_string_start] = ACTIONS(328), - }, - [87] = { - [sym__simple_statements] = STATE(823), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym__newline] = ACTIONS(265), + [sym_string_start] = ACTIONS(316), + }, + [STATE(84)] = { + [sym__simple_statements] = STATE(700), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20083,8 +19679,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_type] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(409), + [sym__indent] = ACTIONS(411), + [sym_string_start] = ACTIONS(81), + }, + [STATE(85)] = { + [sym__simple_statements] = STATE(635), + [sym_import_statement] = STATE(2451), + [sym_future_import_statement] = STATE(2451), + [sym_import_from_statement] = STATE(2451), + [sym_print_statement] = STATE(2451), + [sym_assert_statement] = STATE(2451), + [sym_expression_statement] = STATE(2451), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2451), + [sym_delete_statement] = STATE(2451), + [sym_raise_statement] = STATE(2451), + [sym_pass_statement] = STATE(2451), + [sym_break_statement] = STATE(2451), + [sym_continue_statement] = STATE(2451), + [sym_global_statement] = STATE(2451), + [sym_nonlocal_statement] = STATE(2451), + [sym_exec_statement] = STATE(2451), + [sym_type_alias_statement] = STATE(2451), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_type] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(413), + [sym__indent] = ACTIONS(415), + [sym_string_start] = ACTIONS(81), + }, + [STATE(86)] = { + [sym__simple_statements] = STATE(686), + [sym_import_statement] = STATE(2406), + [sym_future_import_statement] = STATE(2406), + [sym_import_from_statement] = STATE(2406), + [sym_print_statement] = STATE(2406), + [sym_assert_statement] = STATE(2406), + [sym_expression_statement] = STATE(2406), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2406), + [sym_delete_statement] = STATE(2406), + [sym_raise_statement] = STATE(2406), + [sym_pass_statement] = STATE(2406), + [sym_break_statement] = STATE(2406), + [sym_continue_statement] = STATE(2406), + [sym_global_statement] = STATE(2406), + [sym_nonlocal_statement] = STATE(2406), + [sym_exec_statement] = STATE(2406), + [sym_type_alias_statement] = STATE(2406), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_type] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(417), + [sym__indent] = ACTIONS(419), + [sym_string_start] = ACTIONS(81), + }, + [STATE(87)] = { + [sym__simple_statements] = STATE(2575), + [sym_import_statement] = STATE(2319), + [sym_future_import_statement] = STATE(2319), + [sym_import_from_statement] = STATE(2319), + [sym_print_statement] = STATE(2319), + [sym_assert_statement] = STATE(2319), + [sym_expression_statement] = STATE(2319), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2319), + [sym_delete_statement] = STATE(2319), + [sym_raise_statement] = STATE(2319), + [sym_pass_statement] = STATE(2319), + [sym_break_statement] = STATE(2319), + [sym_continue_statement] = STATE(2319), + [sym_global_statement] = STATE(2319), + [sym_nonlocal_statement] = STATE(2319), + [sym_exec_statement] = STATE(2319), + [sym_type_alias_statement] = STATE(2319), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20110,59 +19985,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(423), [sym_string_start] = ACTIONS(81), }, - [88] = { - [sym__simple_statements] = STATE(832), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(88)] = { + [sym__simple_statements] = STATE(440), + [sym_import_statement] = STATE(2270), + [sym_future_import_statement] = STATE(2270), + [sym_import_from_statement] = STATE(2270), + [sym_print_statement] = STATE(2270), + [sym_assert_statement] = STATE(2270), + [sym_expression_statement] = STATE(2270), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2270), + [sym_delete_statement] = STATE(2270), + [sym_raise_statement] = STATE(2270), + [sym_pass_statement] = STATE(2270), + [sym_break_statement] = STATE(2270), + [sym_continue_statement] = STATE(2270), + [sym_global_statement] = STATE(2270), + [sym_nonlocal_statement] = STATE(2270), + [sym_exec_statement] = STATE(2270), + [sym_type_alias_statement] = STATE(2270), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20176,8 +20051,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20203,59 +20078,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(427), [sym_string_start] = ACTIONS(81), }, - [89] = { - [sym__simple_statements] = STATE(703), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(89)] = { + [sym__simple_statements] = STATE(609), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20269,8 +20144,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20296,59 +20171,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(431), [sym_string_start] = ACTIONS(81), }, - [90] = { + [STATE(90)] = { [sym__simple_statements] = STATE(684), - [sym_import_statement] = STATE(2403), - [sym_future_import_statement] = STATE(2403), - [sym_import_from_statement] = STATE(2403), - [sym_print_statement] = STATE(2403), - [sym_assert_statement] = STATE(2403), - [sym_expression_statement] = STATE(2403), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2403), - [sym_delete_statement] = STATE(2403), - [sym_raise_statement] = STATE(2403), - [sym_pass_statement] = STATE(2403), - [sym_break_statement] = STATE(2403), - [sym_continue_statement] = STATE(2403), - [sym_global_statement] = STATE(2403), - [sym_nonlocal_statement] = STATE(2403), - [sym_exec_statement] = STATE(2403), - [sym_type_alias_statement] = STATE(2403), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20362,8 +20237,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20389,59 +20264,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(435), [sym_string_start] = ACTIONS(81), }, - [91] = { - [sym__simple_statements] = STATE(844), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(91)] = { + [sym__simple_statements] = STATE(715), + [sym_import_statement] = STATE(2406), + [sym_future_import_statement] = STATE(2406), + [sym_import_from_statement] = STATE(2406), + [sym_print_statement] = STATE(2406), + [sym_assert_statement] = STATE(2406), + [sym_expression_statement] = STATE(2406), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2406), + [sym_delete_statement] = STATE(2406), + [sym_raise_statement] = STATE(2406), + [sym_pass_statement] = STATE(2406), + [sym_break_statement] = STATE(2406), + [sym_continue_statement] = STATE(2406), + [sym_global_statement] = STATE(2406), + [sym_nonlocal_statement] = STATE(2406), + [sym_exec_statement] = STATE(2406), + [sym_type_alias_statement] = STATE(2406), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20455,8 +20330,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20482,59 +20357,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(439), [sym_string_start] = ACTIONS(81), }, - [92] = { - [sym__simple_statements] = STATE(615), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(92)] = { + [sym__simple_statements] = STATE(785), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20548,8 +20423,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20575,59 +20450,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(443), [sym_string_start] = ACTIONS(81), }, - [93] = { - [sym__simple_statements] = STATE(763), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(93)] = { + [sym__simple_statements] = STATE(786), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20641,8 +20516,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20668,59 +20543,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(447), [sym_string_start] = ACTIONS(81), }, - [94] = { - [sym__simple_statements] = STATE(809), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(94)] = { + [sym__simple_statements] = STATE(611), + [sym_import_statement] = STATE(2406), + [sym_future_import_statement] = STATE(2406), + [sym_import_from_statement] = STATE(2406), + [sym_print_statement] = STATE(2406), + [sym_assert_statement] = STATE(2406), + [sym_expression_statement] = STATE(2406), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2406), + [sym_delete_statement] = STATE(2406), + [sym_raise_statement] = STATE(2406), + [sym_pass_statement] = STATE(2406), + [sym_break_statement] = STATE(2406), + [sym_continue_statement] = STATE(2406), + [sym_global_statement] = STATE(2406), + [sym_nonlocal_statement] = STATE(2406), + [sym_exec_statement] = STATE(2406), + [sym_type_alias_statement] = STATE(2406), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20734,8 +20609,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20761,59 +20636,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(451), [sym_string_start] = ACTIONS(81), }, - [95] = { - [sym__simple_statements] = STATE(774), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(95)] = { + [sym__simple_statements] = STATE(791), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20827,8 +20702,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20854,59 +20729,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(455), [sym_string_start] = ACTIONS(81), }, - [96] = { - [sym__simple_statements] = STATE(713), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(96)] = { + [sym__simple_statements] = STATE(726), + [sym_import_statement] = STATE(2406), + [sym_future_import_statement] = STATE(2406), + [sym_import_from_statement] = STATE(2406), + [sym_print_statement] = STATE(2406), + [sym_assert_statement] = STATE(2406), + [sym_expression_statement] = STATE(2406), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2406), + [sym_delete_statement] = STATE(2406), + [sym_raise_statement] = STATE(2406), + [sym_pass_statement] = STATE(2406), + [sym_break_statement] = STATE(2406), + [sym_continue_statement] = STATE(2406), + [sym_global_statement] = STATE(2406), + [sym_nonlocal_statement] = STATE(2406), + [sym_exec_statement] = STATE(2406), + [sym_type_alias_statement] = STATE(2406), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20920,8 +20795,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20947,59 +20822,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(459), [sym_string_start] = ACTIONS(81), }, - [97] = { - [sym__simple_statements] = STATE(725), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(97)] = { + [sym__simple_statements] = STATE(749), + [sym_import_statement] = STATE(2406), + [sym_future_import_statement] = STATE(2406), + [sym_import_from_statement] = STATE(2406), + [sym_print_statement] = STATE(2406), + [sym_assert_statement] = STATE(2406), + [sym_expression_statement] = STATE(2406), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2406), + [sym_delete_statement] = STATE(2406), + [sym_raise_statement] = STATE(2406), + [sym_pass_statement] = STATE(2406), + [sym_break_statement] = STATE(2406), + [sym_continue_statement] = STATE(2406), + [sym_global_statement] = STATE(2406), + [sym_nonlocal_statement] = STATE(2406), + [sym_exec_statement] = STATE(2406), + [sym_type_alias_statement] = STATE(2406), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21013,8 +20888,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21040,59 +20915,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(463), [sym_string_start] = ACTIONS(81), }, - [98] = { - [sym__simple_statements] = STATE(709), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(98)] = { + [sym__simple_statements] = STATE(798), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21106,8 +20981,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21133,59 +21008,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(467), [sym_string_start] = ACTIONS(81), }, - [99] = { - [sym__simple_statements] = STATE(721), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(99)] = { + [sym__simple_statements] = STATE(705), + [sym_import_statement] = STATE(2406), + [sym_future_import_statement] = STATE(2406), + [sym_import_from_statement] = STATE(2406), + [sym_print_statement] = STATE(2406), + [sym_assert_statement] = STATE(2406), + [sym_expression_statement] = STATE(2406), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2406), + [sym_delete_statement] = STATE(2406), + [sym_raise_statement] = STATE(2406), + [sym_pass_statement] = STATE(2406), + [sym_break_statement] = STATE(2406), + [sym_continue_statement] = STATE(2406), + [sym_global_statement] = STATE(2406), + [sym_nonlocal_statement] = STATE(2406), + [sym_exec_statement] = STATE(2406), + [sym_type_alias_statement] = STATE(2406), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21199,8 +21074,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21226,59 +21101,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(471), [sym_string_start] = ACTIONS(81), }, - [100] = { - [sym__simple_statements] = STATE(746), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(100)] = { + [sym__simple_statements] = STATE(800), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21292,8 +21167,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21319,59 +21194,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(475), [sym_string_start] = ACTIONS(81), }, - [101] = { - [sym__simple_statements] = STATE(2540), - [sym_import_statement] = STATE(2374), - [sym_future_import_statement] = STATE(2374), - [sym_import_from_statement] = STATE(2374), - [sym_print_statement] = STATE(2374), - [sym_assert_statement] = STATE(2374), - [sym_expression_statement] = STATE(2374), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2374), - [sym_delete_statement] = STATE(2374), - [sym_raise_statement] = STATE(2374), - [sym_pass_statement] = STATE(2374), - [sym_break_statement] = STATE(2374), - [sym_continue_statement] = STATE(2374), - [sym_global_statement] = STATE(2374), - [sym_nonlocal_statement] = STATE(2374), - [sym_exec_statement] = STATE(2374), - [sym_type_alias_statement] = STATE(2374), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(101)] = { + [sym__simple_statements] = STATE(801), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21385,8 +21260,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21412,59 +21287,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(479), [sym_string_start] = ACTIONS(81), }, - [102] = { - [sym__simple_statements] = STATE(831), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(102)] = { + [sym__simple_statements] = STATE(741), + [sym_import_statement] = STATE(2406), + [sym_future_import_statement] = STATE(2406), + [sym_import_from_statement] = STATE(2406), + [sym_print_statement] = STATE(2406), + [sym_assert_statement] = STATE(2406), + [sym_expression_statement] = STATE(2406), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2406), + [sym_delete_statement] = STATE(2406), + [sym_raise_statement] = STATE(2406), + [sym_pass_statement] = STATE(2406), + [sym_break_statement] = STATE(2406), + [sym_continue_statement] = STATE(2406), + [sym_global_statement] = STATE(2406), + [sym_nonlocal_statement] = STATE(2406), + [sym_exec_statement] = STATE(2406), + [sym_type_alias_statement] = STATE(2406), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21478,8 +21353,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21505,59 +21380,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(483), [sym_string_start] = ACTIONS(81), }, - [103] = { - [sym__simple_statements] = STATE(699), - [sym_import_statement] = STATE(2403), - [sym_future_import_statement] = STATE(2403), - [sym_import_from_statement] = STATE(2403), - [sym_print_statement] = STATE(2403), - [sym_assert_statement] = STATE(2403), - [sym_expression_statement] = STATE(2403), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2403), - [sym_delete_statement] = STATE(2403), - [sym_raise_statement] = STATE(2403), - [sym_pass_statement] = STATE(2403), - [sym_break_statement] = STATE(2403), - [sym_continue_statement] = STATE(2403), - [sym_global_statement] = STATE(2403), - [sym_nonlocal_statement] = STATE(2403), - [sym_exec_statement] = STATE(2403), - [sym_type_alias_statement] = STATE(2403), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(103)] = { + [sym__simple_statements] = STATE(807), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21571,8 +21446,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21598,59 +21473,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(487), [sym_string_start] = ACTIONS(81), }, - [104] = { - [sym__simple_statements] = STATE(686), - [sym_import_statement] = STATE(2429), - [sym_future_import_statement] = STATE(2429), - [sym_import_from_statement] = STATE(2429), - [sym_print_statement] = STATE(2429), - [sym_assert_statement] = STATE(2429), - [sym_expression_statement] = STATE(2429), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2429), - [sym_delete_statement] = STATE(2429), - [sym_raise_statement] = STATE(2429), - [sym_pass_statement] = STATE(2429), - [sym_break_statement] = STATE(2429), - [sym_continue_statement] = STATE(2429), - [sym_global_statement] = STATE(2429), - [sym_nonlocal_statement] = STATE(2429), - [sym_exec_statement] = STATE(2429), - [sym_type_alias_statement] = STATE(2429), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(104)] = { + [sym__simple_statements] = STATE(698), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21664,8 +21539,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21691,59 +21566,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(491), [sym_string_start] = ACTIONS(81), }, - [105] = { - [sym__simple_statements] = STATE(2539), - [sym_import_statement] = STATE(2374), - [sym_future_import_statement] = STATE(2374), - [sym_import_from_statement] = STATE(2374), - [sym_print_statement] = STATE(2374), - [sym_assert_statement] = STATE(2374), - [sym_expression_statement] = STATE(2374), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2374), - [sym_delete_statement] = STATE(2374), - [sym_raise_statement] = STATE(2374), - [sym_pass_statement] = STATE(2374), - [sym_break_statement] = STATE(2374), - [sym_continue_statement] = STATE(2374), - [sym_global_statement] = STATE(2374), - [sym_nonlocal_statement] = STATE(2374), - [sym_exec_statement] = STATE(2374), - [sym_type_alias_statement] = STATE(2374), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(105)] = { + [sym__simple_statements] = STATE(709), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21757,8 +21632,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21784,59 +21659,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(495), [sym_string_start] = ACTIONS(81), }, - [106] = { - [sym__simple_statements] = STATE(724), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(106)] = { + [sym__simple_statements] = STATE(664), + [sym_import_statement] = STATE(2270), + [sym_future_import_statement] = STATE(2270), + [sym_import_from_statement] = STATE(2270), + [sym_print_statement] = STATE(2270), + [sym_assert_statement] = STATE(2270), + [sym_expression_statement] = STATE(2270), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2270), + [sym_delete_statement] = STATE(2270), + [sym_raise_statement] = STATE(2270), + [sym_pass_statement] = STATE(2270), + [sym_break_statement] = STATE(2270), + [sym_continue_statement] = STATE(2270), + [sym_global_statement] = STATE(2270), + [sym_nonlocal_statement] = STATE(2270), + [sym_exec_statement] = STATE(2270), + [sym_type_alias_statement] = STATE(2270), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21850,8 +21725,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21877,59 +21752,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(499), [sym_string_start] = ACTIONS(81), }, - [107] = { - [sym__simple_statements] = STATE(826), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(107)] = { + [sym__simple_statements] = STATE(809), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21943,8 +21818,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21970,59 +21845,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(503), [sym_string_start] = ACTIONS(81), }, - [108] = { - [sym__simple_statements] = STATE(618), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(108)] = { + [sym__simple_statements] = STATE(688), + [sym_import_statement] = STATE(2406), + [sym_future_import_statement] = STATE(2406), + [sym_import_from_statement] = STATE(2406), + [sym_print_statement] = STATE(2406), + [sym_assert_statement] = STATE(2406), + [sym_expression_statement] = STATE(2406), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2406), + [sym_delete_statement] = STATE(2406), + [sym_raise_statement] = STATE(2406), + [sym_pass_statement] = STATE(2406), + [sym_break_statement] = STATE(2406), + [sym_continue_statement] = STATE(2406), + [sym_global_statement] = STATE(2406), + [sym_nonlocal_statement] = STATE(2406), + [sym_exec_statement] = STATE(2406), + [sym_type_alias_statement] = STATE(2406), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22036,8 +21911,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22063,59 +21938,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(507), [sym_string_start] = ACTIONS(81), }, - [109] = { - [sym__simple_statements] = STATE(717), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(109)] = { + [sym__simple_statements] = STATE(813), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22129,8 +22004,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22156,59 +22031,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(511), [sym_string_start] = ACTIONS(81), }, - [110] = { - [sym__simple_statements] = STATE(737), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(110)] = { + [sym__simple_statements] = STATE(707), + [sym_import_statement] = STATE(2406), + [sym_future_import_statement] = STATE(2406), + [sym_import_from_statement] = STATE(2406), + [sym_print_statement] = STATE(2406), + [sym_assert_statement] = STATE(2406), + [sym_expression_statement] = STATE(2406), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2406), + [sym_delete_statement] = STATE(2406), + [sym_raise_statement] = STATE(2406), + [sym_pass_statement] = STATE(2406), + [sym_break_statement] = STATE(2406), + [sym_continue_statement] = STATE(2406), + [sym_global_statement] = STATE(2406), + [sym_nonlocal_statement] = STATE(2406), + [sym_exec_statement] = STATE(2406), + [sym_type_alias_statement] = STATE(2406), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22222,8 +22097,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22249,59 +22124,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(515), [sym_string_start] = ACTIONS(81), }, - [111] = { - [sym__simple_statements] = STATE(732), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(111)] = { + [sym__simple_statements] = STATE(815), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22315,8 +22190,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22342,59 +22217,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(519), [sym_string_start] = ACTIONS(81), }, - [112] = { - [sym__simple_statements] = STATE(720), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(112)] = { + [sym__simple_statements] = STATE(2491), + [sym_import_statement] = STATE(2319), + [sym_future_import_statement] = STATE(2319), + [sym_import_from_statement] = STATE(2319), + [sym_print_statement] = STATE(2319), + [sym_assert_statement] = STATE(2319), + [sym_expression_statement] = STATE(2319), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2319), + [sym_delete_statement] = STATE(2319), + [sym_raise_statement] = STATE(2319), + [sym_pass_statement] = STATE(2319), + [sym_break_statement] = STATE(2319), + [sym_continue_statement] = STATE(2319), + [sym_global_statement] = STATE(2319), + [sym_nonlocal_statement] = STATE(2319), + [sym_exec_statement] = STATE(2319), + [sym_type_alias_statement] = STATE(2319), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22408,8 +22283,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22435,59 +22310,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(523), [sym_string_start] = ACTIONS(81), }, - [113] = { - [sym__simple_statements] = STATE(815), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(113)] = { + [sym__simple_statements] = STATE(703), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22501,8 +22376,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22528,59 +22403,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(527), [sym_string_start] = ACTIONS(81), }, - [114] = { - [sym__simple_statements] = STATE(816), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(114)] = { + [sym__simple_statements] = STATE(629), + [sym_import_statement] = STATE(2451), + [sym_future_import_statement] = STATE(2451), + [sym_import_from_statement] = STATE(2451), + [sym_print_statement] = STATE(2451), + [sym_assert_statement] = STATE(2451), + [sym_expression_statement] = STATE(2451), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2451), + [sym_delete_statement] = STATE(2451), + [sym_raise_statement] = STATE(2451), + [sym_pass_statement] = STATE(2451), + [sym_break_statement] = STATE(2451), + [sym_continue_statement] = STATE(2451), + [sym_global_statement] = STATE(2451), + [sym_nonlocal_statement] = STATE(2451), + [sym_exec_statement] = STATE(2451), + [sym_type_alias_statement] = STATE(2451), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22594,8 +22469,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22621,59 +22496,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(531), [sym_string_start] = ACTIONS(81), }, - [115] = { - [sym__simple_statements] = STATE(651), - [sym_import_statement] = STATE(2300), - [sym_future_import_statement] = STATE(2300), - [sym_import_from_statement] = STATE(2300), - [sym_print_statement] = STATE(2300), - [sym_assert_statement] = STATE(2300), - [sym_expression_statement] = STATE(2300), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2300), - [sym_delete_statement] = STATE(2300), - [sym_raise_statement] = STATE(2300), - [sym_pass_statement] = STATE(2300), - [sym_break_statement] = STATE(2300), - [sym_continue_statement] = STATE(2300), - [sym_global_statement] = STATE(2300), - [sym_nonlocal_statement] = STATE(2300), - [sym_exec_statement] = STATE(2300), - [sym_type_alias_statement] = STATE(2300), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(115)] = { + [sym__simple_statements] = STATE(822), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22687,8 +22562,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22714,59 +22589,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(535), [sym_string_start] = ACTIONS(81), }, - [116] = { - [sym__simple_statements] = STATE(2521), - [sym_import_statement] = STATE(2374), - [sym_future_import_statement] = STATE(2374), - [sym_import_from_statement] = STATE(2374), - [sym_print_statement] = STATE(2374), - [sym_assert_statement] = STATE(2374), - [sym_expression_statement] = STATE(2374), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2374), - [sym_delete_statement] = STATE(2374), - [sym_raise_statement] = STATE(2374), - [sym_pass_statement] = STATE(2374), - [sym_break_statement] = STATE(2374), - [sym_continue_statement] = STATE(2374), - [sym_global_statement] = STATE(2374), - [sym_nonlocal_statement] = STATE(2374), - [sym_exec_statement] = STATE(2374), - [sym_type_alias_statement] = STATE(2374), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(116)] = { + [sym__simple_statements] = STATE(2504), + [sym_import_statement] = STATE(2319), + [sym_future_import_statement] = STATE(2319), + [sym_import_from_statement] = STATE(2319), + [sym_print_statement] = STATE(2319), + [sym_assert_statement] = STATE(2319), + [sym_expression_statement] = STATE(2319), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2319), + [sym_delete_statement] = STATE(2319), + [sym_raise_statement] = STATE(2319), + [sym_pass_statement] = STATE(2319), + [sym_break_statement] = STATE(2319), + [sym_continue_statement] = STATE(2319), + [sym_global_statement] = STATE(2319), + [sym_nonlocal_statement] = STATE(2319), + [sym_exec_statement] = STATE(2319), + [sym_type_alias_statement] = STATE(2319), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22780,8 +22655,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22807,59 +22682,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(539), [sym_string_start] = ACTIONS(81), }, - [117] = { - [sym__simple_statements] = STATE(711), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(117)] = { + [sym__simple_statements] = STATE(720), + [sym_import_statement] = STATE(2406), + [sym_future_import_statement] = STATE(2406), + [sym_import_from_statement] = STATE(2406), + [sym_print_statement] = STATE(2406), + [sym_assert_statement] = STATE(2406), + [sym_expression_statement] = STATE(2406), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2406), + [sym_delete_statement] = STATE(2406), + [sym_raise_statement] = STATE(2406), + [sym_pass_statement] = STATE(2406), + [sym_break_statement] = STATE(2406), + [sym_continue_statement] = STATE(2406), + [sym_global_statement] = STATE(2406), + [sym_nonlocal_statement] = STATE(2406), + [sym_exec_statement] = STATE(2406), + [sym_type_alias_statement] = STATE(2406), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22873,8 +22748,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22900,59 +22775,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(543), [sym_string_start] = ACTIONS(81), }, - [118] = { - [sym__simple_statements] = STATE(783), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(118)] = { + [sym__simple_statements] = STATE(667), + [sym_import_statement] = STATE(2270), + [sym_future_import_statement] = STATE(2270), + [sym_import_from_statement] = STATE(2270), + [sym_print_statement] = STATE(2270), + [sym_assert_statement] = STATE(2270), + [sym_expression_statement] = STATE(2270), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2270), + [sym_delete_statement] = STATE(2270), + [sym_raise_statement] = STATE(2270), + [sym_pass_statement] = STATE(2270), + [sym_break_statement] = STATE(2270), + [sym_continue_statement] = STATE(2270), + [sym_global_statement] = STATE(2270), + [sym_nonlocal_statement] = STATE(2270), + [sym_exec_statement] = STATE(2270), + [sym_type_alias_statement] = STATE(2270), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22966,8 +22841,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22993,59 +22868,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(547), [sym_string_start] = ACTIONS(81), }, - [119] = { - [sym__simple_statements] = STATE(2554), - [sym_import_statement] = STATE(2374), - [sym_future_import_statement] = STATE(2374), - [sym_import_from_statement] = STATE(2374), - [sym_print_statement] = STATE(2374), - [sym_assert_statement] = STATE(2374), - [sym_expression_statement] = STATE(2374), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2374), - [sym_delete_statement] = STATE(2374), - [sym_raise_statement] = STATE(2374), - [sym_pass_statement] = STATE(2374), - [sym_break_statement] = STATE(2374), - [sym_continue_statement] = STATE(2374), - [sym_global_statement] = STATE(2374), - [sym_nonlocal_statement] = STATE(2374), - [sym_exec_statement] = STATE(2374), - [sym_type_alias_statement] = STATE(2374), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(119)] = { + [sym__simple_statements] = STATE(642), + [sym_import_statement] = STATE(2270), + [sym_future_import_statement] = STATE(2270), + [sym_import_from_statement] = STATE(2270), + [sym_print_statement] = STATE(2270), + [sym_assert_statement] = STATE(2270), + [sym_expression_statement] = STATE(2270), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2270), + [sym_delete_statement] = STATE(2270), + [sym_raise_statement] = STATE(2270), + [sym_pass_statement] = STATE(2270), + [sym_break_statement] = STATE(2270), + [sym_continue_statement] = STATE(2270), + [sym_global_statement] = STATE(2270), + [sym_nonlocal_statement] = STATE(2270), + [sym_exec_statement] = STATE(2270), + [sym_type_alias_statement] = STATE(2270), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23059,8 +22934,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23086,59 +22961,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(551), [sym_string_start] = ACTIONS(81), }, - [120] = { - [sym__simple_statements] = STATE(824), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(120)] = { + [sym__simple_statements] = STATE(646), + [sym_import_statement] = STATE(2451), + [sym_future_import_statement] = STATE(2451), + [sym_import_from_statement] = STATE(2451), + [sym_print_statement] = STATE(2451), + [sym_assert_statement] = STATE(2451), + [sym_expression_statement] = STATE(2451), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2451), + [sym_delete_statement] = STATE(2451), + [sym_raise_statement] = STATE(2451), + [sym_pass_statement] = STATE(2451), + [sym_break_statement] = STATE(2451), + [sym_continue_statement] = STATE(2451), + [sym_global_statement] = STATE(2451), + [sym_nonlocal_statement] = STATE(2451), + [sym_exec_statement] = STATE(2451), + [sym_type_alias_statement] = STATE(2451), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23152,8 +23027,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23179,59 +23054,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(555), [sym_string_start] = ACTIONS(81), }, - [121] = { - [sym__simple_statements] = STATE(690), - [sym_import_statement] = STATE(2403), - [sym_future_import_statement] = STATE(2403), - [sym_import_from_statement] = STATE(2403), - [sym_print_statement] = STATE(2403), - [sym_assert_statement] = STATE(2403), - [sym_expression_statement] = STATE(2403), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2403), - [sym_delete_statement] = STATE(2403), - [sym_raise_statement] = STATE(2403), - [sym_pass_statement] = STATE(2403), - [sym_break_statement] = STATE(2403), - [sym_continue_statement] = STATE(2403), - [sym_global_statement] = STATE(2403), - [sym_nonlocal_statement] = STATE(2403), - [sym_exec_statement] = STATE(2403), - [sym_type_alias_statement] = STATE(2403), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(121)] = { + [sym__simple_statements] = STATE(728), + [sym_import_statement] = STATE(2406), + [sym_future_import_statement] = STATE(2406), + [sym_import_from_statement] = STATE(2406), + [sym_print_statement] = STATE(2406), + [sym_assert_statement] = STATE(2406), + [sym_expression_statement] = STATE(2406), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2406), + [sym_delete_statement] = STATE(2406), + [sym_raise_statement] = STATE(2406), + [sym_pass_statement] = STATE(2406), + [sym_break_statement] = STATE(2406), + [sym_continue_statement] = STATE(2406), + [sym_global_statement] = STATE(2406), + [sym_nonlocal_statement] = STATE(2406), + [sym_exec_statement] = STATE(2406), + [sym_type_alias_statement] = STATE(2406), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23245,8 +23120,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23272,59 +23147,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(559), [sym_string_start] = ACTIONS(81), }, - [122] = { - [sym__simple_statements] = STATE(800), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(122)] = { + [sym__simple_statements] = STATE(760), + [sym_import_statement] = STATE(2406), + [sym_future_import_statement] = STATE(2406), + [sym_import_from_statement] = STATE(2406), + [sym_print_statement] = STATE(2406), + [sym_assert_statement] = STATE(2406), + [sym_expression_statement] = STATE(2406), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2406), + [sym_delete_statement] = STATE(2406), + [sym_raise_statement] = STATE(2406), + [sym_pass_statement] = STATE(2406), + [sym_break_statement] = STATE(2406), + [sym_continue_statement] = STATE(2406), + [sym_global_statement] = STATE(2406), + [sym_nonlocal_statement] = STATE(2406), + [sym_exec_statement] = STATE(2406), + [sym_type_alias_statement] = STATE(2406), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23338,8 +23213,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23365,59 +23240,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(563), [sym_string_start] = ACTIONS(81), }, - [123] = { - [sym__simple_statements] = STATE(701), - [sym_import_statement] = STATE(2300), - [sym_future_import_statement] = STATE(2300), - [sym_import_from_statement] = STATE(2300), - [sym_print_statement] = STATE(2300), - [sym_assert_statement] = STATE(2300), - [sym_expression_statement] = STATE(2300), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2300), - [sym_delete_statement] = STATE(2300), - [sym_raise_statement] = STATE(2300), - [sym_pass_statement] = STATE(2300), - [sym_break_statement] = STATE(2300), - [sym_continue_statement] = STATE(2300), - [sym_global_statement] = STATE(2300), - [sym_nonlocal_statement] = STATE(2300), - [sym_exec_statement] = STATE(2300), - [sym_type_alias_statement] = STATE(2300), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(123)] = { + [sym__simple_statements] = STATE(2493), + [sym_import_statement] = STATE(2319), + [sym_future_import_statement] = STATE(2319), + [sym_import_from_statement] = STATE(2319), + [sym_print_statement] = STATE(2319), + [sym_assert_statement] = STATE(2319), + [sym_expression_statement] = STATE(2319), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2319), + [sym_delete_statement] = STATE(2319), + [sym_raise_statement] = STATE(2319), + [sym_pass_statement] = STATE(2319), + [sym_break_statement] = STATE(2319), + [sym_continue_statement] = STATE(2319), + [sym_global_statement] = STATE(2319), + [sym_nonlocal_statement] = STATE(2319), + [sym_exec_statement] = STATE(2319), + [sym_type_alias_statement] = STATE(2319), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23431,8 +23306,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23458,59 +23333,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(567), [sym_string_start] = ACTIONS(81), }, - [124] = { - [sym__simple_statements] = STATE(665), - [sym_import_statement] = STATE(2300), - [sym_future_import_statement] = STATE(2300), - [sym_import_from_statement] = STATE(2300), - [sym_print_statement] = STATE(2300), - [sym_assert_statement] = STATE(2300), - [sym_expression_statement] = STATE(2300), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2300), - [sym_delete_statement] = STATE(2300), - [sym_raise_statement] = STATE(2300), - [sym_pass_statement] = STATE(2300), - [sym_break_statement] = STATE(2300), - [sym_continue_statement] = STATE(2300), - [sym_global_statement] = STATE(2300), - [sym_nonlocal_statement] = STATE(2300), - [sym_exec_statement] = STATE(2300), - [sym_type_alias_statement] = STATE(2300), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(124)] = { + [sym__simple_statements] = STATE(730), + [sym_import_statement] = STATE(2406), + [sym_future_import_statement] = STATE(2406), + [sym_import_from_statement] = STATE(2406), + [sym_print_statement] = STATE(2406), + [sym_assert_statement] = STATE(2406), + [sym_expression_statement] = STATE(2406), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2406), + [sym_delete_statement] = STATE(2406), + [sym_raise_statement] = STATE(2406), + [sym_pass_statement] = STATE(2406), + [sym_break_statement] = STATE(2406), + [sym_continue_statement] = STATE(2406), + [sym_global_statement] = STATE(2406), + [sym_nonlocal_statement] = STATE(2406), + [sym_exec_statement] = STATE(2406), + [sym_type_alias_statement] = STATE(2406), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23524,8 +23399,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23551,59 +23426,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(571), [sym_string_start] = ACTIONS(81), }, - [125] = { - [sym__simple_statements] = STATE(833), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(125)] = { + [sym__simple_statements] = STATE(2501), + [sym_import_statement] = STATE(2319), + [sym_future_import_statement] = STATE(2319), + [sym_import_from_statement] = STATE(2319), + [sym_print_statement] = STATE(2319), + [sym_assert_statement] = STATE(2319), + [sym_expression_statement] = STATE(2319), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2319), + [sym_delete_statement] = STATE(2319), + [sym_raise_statement] = STATE(2319), + [sym_pass_statement] = STATE(2319), + [sym_break_statement] = STATE(2319), + [sym_continue_statement] = STATE(2319), + [sym_global_statement] = STATE(2319), + [sym_nonlocal_statement] = STATE(2319), + [sym_exec_statement] = STATE(2319), + [sym_type_alias_statement] = STATE(2319), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23617,8 +23492,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23644,59 +23519,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(575), [sym_string_start] = ACTIONS(81), }, - [126] = { - [sym__simple_statements] = STATE(1829), - [sym_import_statement] = STATE(2463), - [sym_future_import_statement] = STATE(2463), - [sym_import_from_statement] = STATE(2463), - [sym_print_statement] = STATE(2463), - [sym_assert_statement] = STATE(2463), - [sym_expression_statement] = STATE(2463), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2463), - [sym_delete_statement] = STATE(2463), - [sym_raise_statement] = STATE(2463), - [sym_pass_statement] = STATE(2463), - [sym_break_statement] = STATE(2463), - [sym_continue_statement] = STATE(2463), - [sym_global_statement] = STATE(2463), - [sym_nonlocal_statement] = STATE(2463), - [sym_exec_statement] = STATE(2463), - [sym_type_alias_statement] = STATE(2463), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(126)] = { + [sym__simple_statements] = STATE(761), + [sym_import_statement] = STATE(2406), + [sym_future_import_statement] = STATE(2406), + [sym_import_from_statement] = STATE(2406), + [sym_print_statement] = STATE(2406), + [sym_assert_statement] = STATE(2406), + [sym_expression_statement] = STATE(2406), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2406), + [sym_delete_statement] = STATE(2406), + [sym_raise_statement] = STATE(2406), + [sym_pass_statement] = STATE(2406), + [sym_break_statement] = STATE(2406), + [sym_continue_statement] = STATE(2406), + [sym_global_statement] = STATE(2406), + [sym_nonlocal_statement] = STATE(2406), + [sym_exec_statement] = STATE(2406), + [sym_type_alias_statement] = STATE(2406), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23710,8 +23585,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23737,59 +23612,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(579), [sym_string_start] = ACTIONS(81), }, - [127] = { - [sym__simple_statements] = STATE(676), - [sym_import_statement] = STATE(2346), - [sym_future_import_statement] = STATE(2346), - [sym_import_from_statement] = STATE(2346), - [sym_print_statement] = STATE(2346), - [sym_assert_statement] = STATE(2346), - [sym_expression_statement] = STATE(2346), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2346), - [sym_delete_statement] = STATE(2346), - [sym_raise_statement] = STATE(2346), - [sym_pass_statement] = STATE(2346), - [sym_break_statement] = STATE(2346), - [sym_continue_statement] = STATE(2346), - [sym_global_statement] = STATE(2346), - [sym_nonlocal_statement] = STATE(2346), - [sym_exec_statement] = STATE(2346), - [sym_type_alias_statement] = STATE(2346), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(127)] = { + [sym__simple_statements] = STATE(694), + [sym_import_statement] = STATE(2406), + [sym_future_import_statement] = STATE(2406), + [sym_import_from_statement] = STATE(2406), + [sym_print_statement] = STATE(2406), + [sym_assert_statement] = STATE(2406), + [sym_expression_statement] = STATE(2406), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2406), + [sym_delete_statement] = STATE(2406), + [sym_raise_statement] = STATE(2406), + [sym_pass_statement] = STATE(2406), + [sym_break_statement] = STATE(2406), + [sym_continue_statement] = STATE(2406), + [sym_global_statement] = STATE(2406), + [sym_nonlocal_statement] = STATE(2406), + [sym_exec_statement] = STATE(2406), + [sym_type_alias_statement] = STATE(2406), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23803,8 +23678,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23830,59 +23705,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(583), [sym_string_start] = ACTIONS(81), }, - [128] = { - [sym__simple_statements] = STATE(756), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(128)] = { + [sym__simple_statements] = STATE(737), + [sym_import_statement] = STATE(2406), + [sym_future_import_statement] = STATE(2406), + [sym_import_from_statement] = STATE(2406), + [sym_print_statement] = STATE(2406), + [sym_assert_statement] = STATE(2406), + [sym_expression_statement] = STATE(2406), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2406), + [sym_delete_statement] = STATE(2406), + [sym_raise_statement] = STATE(2406), + [sym_pass_statement] = STATE(2406), + [sym_break_statement] = STATE(2406), + [sym_continue_statement] = STATE(2406), + [sym_global_statement] = STATE(2406), + [sym_nonlocal_statement] = STATE(2406), + [sym_exec_statement] = STATE(2406), + [sym_type_alias_statement] = STATE(2406), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23896,8 +23771,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23923,59 +23798,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(587), [sym_string_start] = ACTIONS(81), }, - [129] = { - [sym__simple_statements] = STATE(743), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(129)] = { + [sym__simple_statements] = STATE(2528), + [sym_import_statement] = STATE(2319), + [sym_future_import_statement] = STATE(2319), + [sym_import_from_statement] = STATE(2319), + [sym_print_statement] = STATE(2319), + [sym_assert_statement] = STATE(2319), + [sym_expression_statement] = STATE(2319), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2319), + [sym_delete_statement] = STATE(2319), + [sym_raise_statement] = STATE(2319), + [sym_pass_statement] = STATE(2319), + [sym_break_statement] = STATE(2319), + [sym_continue_statement] = STATE(2319), + [sym_global_statement] = STATE(2319), + [sym_nonlocal_statement] = STATE(2319), + [sym_exec_statement] = STATE(2319), + [sym_type_alias_statement] = STATE(2319), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23989,8 +23864,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24016,59 +23891,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(591), [sym_string_start] = ACTIONS(81), }, - [130] = { - [sym__simple_statements] = STATE(839), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(130)] = { + [sym__simple_statements] = STATE(639), + [sym_import_statement] = STATE(2270), + [sym_future_import_statement] = STATE(2270), + [sym_import_from_statement] = STATE(2270), + [sym_print_statement] = STATE(2270), + [sym_assert_statement] = STATE(2270), + [sym_expression_statement] = STATE(2270), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2270), + [sym_delete_statement] = STATE(2270), + [sym_raise_statement] = STATE(2270), + [sym_pass_statement] = STATE(2270), + [sym_break_statement] = STATE(2270), + [sym_continue_statement] = STATE(2270), + [sym_global_statement] = STATE(2270), + [sym_nonlocal_statement] = STATE(2270), + [sym_exec_statement] = STATE(2270), + [sym_type_alias_statement] = STATE(2270), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24082,8 +23957,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24109,59 +23984,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(595), [sym_string_start] = ACTIONS(81), }, - [131] = { - [sym__simple_statements] = STATE(734), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(131)] = { + [sym__simple_statements] = STATE(410), + [sym_import_statement] = STATE(2451), + [sym_future_import_statement] = STATE(2451), + [sym_import_from_statement] = STATE(2451), + [sym_print_statement] = STATE(2451), + [sym_assert_statement] = STATE(2451), + [sym_expression_statement] = STATE(2451), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2451), + [sym_delete_statement] = STATE(2451), + [sym_raise_statement] = STATE(2451), + [sym_pass_statement] = STATE(2451), + [sym_break_statement] = STATE(2451), + [sym_continue_statement] = STATE(2451), + [sym_global_statement] = STATE(2451), + [sym_nonlocal_statement] = STATE(2451), + [sym_exec_statement] = STATE(2451), + [sym_type_alias_statement] = STATE(2451), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24175,8 +24050,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24202,59 +24077,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(599), [sym_string_start] = ACTIONS(81), }, - [132] = { - [sym__simple_statements] = STATE(1807), - [sym_import_statement] = STATE(2463), - [sym_future_import_statement] = STATE(2463), - [sym_import_from_statement] = STATE(2463), - [sym_print_statement] = STATE(2463), - [sym_assert_statement] = STATE(2463), - [sym_expression_statement] = STATE(2463), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2463), - [sym_delete_statement] = STATE(2463), - [sym_raise_statement] = STATE(2463), - [sym_pass_statement] = STATE(2463), - [sym_break_statement] = STATE(2463), - [sym_continue_statement] = STATE(2463), - [sym_global_statement] = STATE(2463), - [sym_nonlocal_statement] = STATE(2463), - [sym_exec_statement] = STATE(2463), - [sym_type_alias_statement] = STATE(2463), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(132)] = { + [sym__simple_statements] = STATE(796), + [sym_import_statement] = STATE(2406), + [sym_future_import_statement] = STATE(2406), + [sym_import_from_statement] = STATE(2406), + [sym_print_statement] = STATE(2406), + [sym_assert_statement] = STATE(2406), + [sym_expression_statement] = STATE(2406), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2406), + [sym_delete_statement] = STATE(2406), + [sym_raise_statement] = STATE(2406), + [sym_pass_statement] = STATE(2406), + [sym_break_statement] = STATE(2406), + [sym_continue_statement] = STATE(2406), + [sym_global_statement] = STATE(2406), + [sym_nonlocal_statement] = STATE(2406), + [sym_exec_statement] = STATE(2406), + [sym_type_alias_statement] = STATE(2406), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24268,8 +24143,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24295,59 +24170,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(603), [sym_string_start] = ACTIONS(81), }, - [133] = { - [sym__simple_statements] = STATE(807), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(133)] = { + [sym__simple_statements] = STATE(636), + [sym_import_statement] = STATE(2451), + [sym_future_import_statement] = STATE(2451), + [sym_import_from_statement] = STATE(2451), + [sym_print_statement] = STATE(2451), + [sym_assert_statement] = STATE(2451), + [sym_expression_statement] = STATE(2451), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2451), + [sym_delete_statement] = STATE(2451), + [sym_raise_statement] = STATE(2451), + [sym_pass_statement] = STATE(2451), + [sym_break_statement] = STATE(2451), + [sym_continue_statement] = STATE(2451), + [sym_global_statement] = STATE(2451), + [sym_nonlocal_statement] = STATE(2451), + [sym_exec_statement] = STATE(2451), + [sym_type_alias_statement] = STATE(2451), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24361,8 +24236,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24388,59 +24263,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(607), [sym_string_start] = ACTIONS(81), }, - [134] = { - [sym__simple_statements] = STATE(2576), - [sym_import_statement] = STATE(2374), - [sym_future_import_statement] = STATE(2374), - [sym_import_from_statement] = STATE(2374), - [sym_print_statement] = STATE(2374), - [sym_assert_statement] = STATE(2374), - [sym_expression_statement] = STATE(2374), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2374), - [sym_delete_statement] = STATE(2374), - [sym_raise_statement] = STATE(2374), - [sym_pass_statement] = STATE(2374), - [sym_break_statement] = STATE(2374), - [sym_continue_statement] = STATE(2374), - [sym_global_statement] = STATE(2374), - [sym_nonlocal_statement] = STATE(2374), - [sym_exec_statement] = STATE(2374), - [sym_type_alias_statement] = STATE(2374), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(134)] = { + [sym_import_statement] = STATE(2509), + [sym_future_import_statement] = STATE(2509), + [sym_import_from_statement] = STATE(2509), + [sym_print_statement] = STATE(2509), + [sym_assert_statement] = STATE(2509), + [sym_expression_statement] = STATE(2509), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2509), + [sym_delete_statement] = STATE(2509), + [sym_raise_statement] = STATE(2509), + [sym_pass_statement] = STATE(2509), + [sym_break_statement] = STATE(2509), + [sym_continue_statement] = STATE(2509), + [sym_global_statement] = STATE(2509), + [sym_nonlocal_statement] = STATE(2509), + [sym_exec_statement] = STATE(2509), + [sym_type_alias_statement] = STATE(2509), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24454,8 +24328,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24478,62 +24352,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(609), - [sym__indent] = ACTIONS(611), [sym_string_start] = ACTIONS(81), }, - [135] = { - [sym__simple_statements] = STATE(2529), - [sym_import_statement] = STATE(2374), - [sym_future_import_statement] = STATE(2374), - [sym_import_from_statement] = STATE(2374), - [sym_print_statement] = STATE(2374), - [sym_assert_statement] = STATE(2374), - [sym_expression_statement] = STATE(2374), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2374), - [sym_delete_statement] = STATE(2374), - [sym_raise_statement] = STATE(2374), - [sym_pass_statement] = STATE(2374), - [sym_break_statement] = STATE(2374), - [sym_continue_statement] = STATE(2374), - [sym_global_statement] = STATE(2374), - [sym_nonlocal_statement] = STATE(2374), - [sym_exec_statement] = STATE(2374), - [sym_type_alias_statement] = STATE(2374), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(135)] = { + [sym_import_statement] = STATE(2509), + [sym_future_import_statement] = STATE(2509), + [sym_import_from_statement] = STATE(2509), + [sym_print_statement] = STATE(2509), + [sym_assert_statement] = STATE(2509), + [sym_expression_statement] = STATE(2509), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2509), + [sym_delete_statement] = STATE(2509), + [sym_raise_statement] = STATE(2509), + [sym_pass_statement] = STATE(2509), + [sym_break_statement] = STATE(2509), + [sym_continue_statement] = STATE(2509), + [sym_global_statement] = STATE(2509), + [sym_nonlocal_statement] = STATE(2509), + [sym_exec_statement] = STATE(2509), + [sym_type_alias_statement] = STATE(2509), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_type] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(611), + [sym_string_start] = ACTIONS(81), + }, + [STATE(136)] = { + [sym_import_statement] = STATE(2509), + [sym_future_import_statement] = STATE(2509), + [sym_import_from_statement] = STATE(2509), + [sym_print_statement] = STATE(2509), + [sym_assert_statement] = STATE(2509), + [sym_expression_statement] = STATE(2509), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2509), + [sym_delete_statement] = STATE(2509), + [sym_raise_statement] = STATE(2509), + [sym_pass_statement] = STATE(2509), + [sym_break_statement] = STATE(2509), + [sym_continue_statement] = STATE(2509), + [sym_global_statement] = STATE(2509), + [sym_nonlocal_statement] = STATE(2509), + [sym_exec_statement] = STATE(2509), + [sym_type_alias_statement] = STATE(2509), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24547,8 +24510,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24571,62 +24534,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(613), - [sym__indent] = ACTIONS(615), [sym_string_start] = ACTIONS(81), }, - [136] = { - [sym__simple_statements] = STATE(705), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(137)] = { + [sym_import_statement] = STATE(2509), + [sym_future_import_statement] = STATE(2509), + [sym_import_from_statement] = STATE(2509), + [sym_print_statement] = STATE(2509), + [sym_assert_statement] = STATE(2509), + [sym_expression_statement] = STATE(2509), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2509), + [sym_delete_statement] = STATE(2509), + [sym_raise_statement] = STATE(2509), + [sym_pass_statement] = STATE(2509), + [sym_break_statement] = STATE(2509), + [sym_continue_statement] = STATE(2509), + [sym_global_statement] = STATE(2509), + [sym_nonlocal_statement] = STATE(2509), + [sym_exec_statement] = STATE(2509), + [sym_type_alias_statement] = STATE(2509), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24640,8 +24601,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24663,62 +24624,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(617), - [sym__indent] = ACTIONS(619), + [sym__newline] = ACTIONS(615), [sym_string_start] = ACTIONS(81), }, - [137] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(138)] = { + [sym_import_statement] = STATE(2509), + [sym_future_import_statement] = STATE(2509), + [sym_import_from_statement] = STATE(2509), + [sym_print_statement] = STATE(2509), + [sym_assert_statement] = STATE(2509), + [sym_expression_statement] = STATE(2509), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2509), + [sym_delete_statement] = STATE(2509), + [sym_raise_statement] = STATE(2509), + [sym_pass_statement] = STATE(2509), + [sym_break_statement] = STATE(2509), + [sym_continue_statement] = STATE(2509), + [sym_global_statement] = STATE(2509), + [sym_nonlocal_statement] = STATE(2509), + [sym_exec_statement] = STATE(2509), + [sym_type_alias_statement] = STATE(2509), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24732,8 +24692,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24755,61 +24715,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(621), + [sym__newline] = ACTIONS(617), [sym_string_start] = ACTIONS(81), }, - [138] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(139)] = { + [sym_import_statement] = STATE(2509), + [sym_future_import_statement] = STATE(2509), + [sym_import_from_statement] = STATE(2509), + [sym_print_statement] = STATE(2509), + [sym_assert_statement] = STATE(2509), + [sym_expression_statement] = STATE(2509), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2509), + [sym_delete_statement] = STATE(2509), + [sym_raise_statement] = STATE(2509), + [sym_pass_statement] = STATE(2509), + [sym_break_statement] = STATE(2509), + [sym_continue_statement] = STATE(2509), + [sym_global_statement] = STATE(2509), + [sym_nonlocal_statement] = STATE(2509), + [sym_exec_statement] = STATE(2509), + [sym_type_alias_statement] = STATE(2509), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24823,8 +24783,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24846,61 +24806,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(623), + [sym__newline] = ACTIONS(619), [sym_string_start] = ACTIONS(81), }, - [139] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(140)] = { + [sym_import_statement] = STATE(2509), + [sym_future_import_statement] = STATE(2509), + [sym_import_from_statement] = STATE(2509), + [sym_print_statement] = STATE(2509), + [sym_assert_statement] = STATE(2509), + [sym_expression_statement] = STATE(2509), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2509), + [sym_delete_statement] = STATE(2509), + [sym_raise_statement] = STATE(2509), + [sym_pass_statement] = STATE(2509), + [sym_break_statement] = STATE(2509), + [sym_continue_statement] = STATE(2509), + [sym_global_statement] = STATE(2509), + [sym_nonlocal_statement] = STATE(2509), + [sym_exec_statement] = STATE(2509), + [sym_type_alias_statement] = STATE(2509), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24914,8 +24874,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24937,61 +24897,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(625), + [sym__newline] = ACTIONS(621), [sym_string_start] = ACTIONS(81), }, - [140] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(141)] = { + [sym_import_statement] = STATE(2509), + [sym_future_import_statement] = STATE(2509), + [sym_import_from_statement] = STATE(2509), + [sym_print_statement] = STATE(2509), + [sym_assert_statement] = STATE(2509), + [sym_expression_statement] = STATE(2509), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2509), + [sym_delete_statement] = STATE(2509), + [sym_raise_statement] = STATE(2509), + [sym_pass_statement] = STATE(2509), + [sym_break_statement] = STATE(2509), + [sym_continue_statement] = STATE(2509), + [sym_global_statement] = STATE(2509), + [sym_nonlocal_statement] = STATE(2509), + [sym_exec_statement] = STATE(2509), + [sym_type_alias_statement] = STATE(2509), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25005,8 +24965,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25028,61 +24988,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(627), + [sym__newline] = ACTIONS(623), [sym_string_start] = ACTIONS(81), }, - [141] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(142)] = { + [sym_import_statement] = STATE(2509), + [sym_future_import_statement] = STATE(2509), + [sym_import_from_statement] = STATE(2509), + [sym_print_statement] = STATE(2509), + [sym_assert_statement] = STATE(2509), + [sym_expression_statement] = STATE(2509), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2509), + [sym_delete_statement] = STATE(2509), + [sym_raise_statement] = STATE(2509), + [sym_pass_statement] = STATE(2509), + [sym_break_statement] = STATE(2509), + [sym_continue_statement] = STATE(2509), + [sym_global_statement] = STATE(2509), + [sym_nonlocal_statement] = STATE(2509), + [sym_exec_statement] = STATE(2509), + [sym_type_alias_statement] = STATE(2509), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25096,8 +25056,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25119,61 +25079,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(629), + [sym__newline] = ACTIONS(625), [sym_string_start] = ACTIONS(81), }, - [142] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(143)] = { + [sym_import_statement] = STATE(2509), + [sym_future_import_statement] = STATE(2509), + [sym_import_from_statement] = STATE(2509), + [sym_print_statement] = STATE(2509), + [sym_assert_statement] = STATE(2509), + [sym_expression_statement] = STATE(2509), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2509), + [sym_delete_statement] = STATE(2509), + [sym_raise_statement] = STATE(2509), + [sym_pass_statement] = STATE(2509), + [sym_break_statement] = STATE(2509), + [sym_continue_statement] = STATE(2509), + [sym_global_statement] = STATE(2509), + [sym_nonlocal_statement] = STATE(2509), + [sym_exec_statement] = STATE(2509), + [sym_type_alias_statement] = STATE(2509), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25187,8 +25147,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25210,61 +25170,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(631), + [sym__newline] = ACTIONS(627), [sym_string_start] = ACTIONS(81), }, - [143] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(144)] = { + [sym_import_statement] = STATE(2509), + [sym_future_import_statement] = STATE(2509), + [sym_import_from_statement] = STATE(2509), + [sym_print_statement] = STATE(2509), + [sym_assert_statement] = STATE(2509), + [sym_expression_statement] = STATE(2509), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2509), + [sym_delete_statement] = STATE(2509), + [sym_raise_statement] = STATE(2509), + [sym_pass_statement] = STATE(2509), + [sym_break_statement] = STATE(2509), + [sym_continue_statement] = STATE(2509), + [sym_global_statement] = STATE(2509), + [sym_nonlocal_statement] = STATE(2509), + [sym_exec_statement] = STATE(2509), + [sym_type_alias_statement] = STATE(2509), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25278,8 +25238,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_match] = ACTIONS(405), + [anon_sym_async] = ACTIONS(407), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25301,3674 +25261,2764 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(633), [sym_string_start] = ACTIONS(81), }, - [144] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), - [anon_sym_assert] = ACTIONS(21), - [anon_sym_return] = ACTIONS(23), - [anon_sym_del] = ACTIONS(25), - [anon_sym_raise] = ACTIONS(27), - [anon_sym_pass] = ACTIONS(29), - [anon_sym_break] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_DASH] = ACTIONS(65), + [STATE(145)] = { + [sym_list_splat_pattern] = STATE(1047), + [sym_primary_expression] = STATE(974), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_attribute] = STATE(1099), + [sym_subscript] = STATE(1099), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [sym_identifier] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(265), + [anon_sym_DOT] = ACTIONS(267), + [anon_sym_LPAREN] = ACTIONS(629), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_as] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(631), + [anon_sym_print] = ACTIONS(633), + [anon_sym_GT_GT] = ACTIONS(267), + [anon_sym_COLON_EQ] = ACTIONS(280), + [anon_sym_if] = ACTIONS(267), + [anon_sym_COLON] = ACTIONS(282), + [anon_sym_match] = ACTIONS(635), + [anon_sym_async] = ACTIONS(633), + [anon_sym_in] = ACTIONS(267), + [anon_sym_STAR_STAR] = ACTIONS(267), + [anon_sym_exec] = ACTIONS(633), + [anon_sym_type] = ACTIONS(635), + [anon_sym_EQ] = ACTIONS(292), + [anon_sym_LBRACK] = ACTIONS(637), + [anon_sym_AT] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_PIPE] = ACTIONS(267), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_not] = ACTIONS(267), + [anon_sym_and] = ACTIONS(267), + [anon_sym_or] = ACTIONS(267), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(267), + [anon_sym_SLASH_SLASH] = ACTIONS(267), + [anon_sym_AMP] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_LT_LT] = ACTIONS(267), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), + [anon_sym_is] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(265), + [anon_sym_EQ_EQ] = ACTIONS(265), + [anon_sym_BANG_EQ] = ACTIONS(265), + [anon_sym_GT_EQ] = ACTIONS(265), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_LT_GT] = ACTIONS(265), + [anon_sym_PLUS_EQ] = ACTIONS(308), + [anon_sym_DASH_EQ] = ACTIONS(308), + [anon_sym_STAR_EQ] = ACTIONS(308), + [anon_sym_SLASH_EQ] = ACTIONS(308), + [anon_sym_AT_EQ] = ACTIONS(308), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(308), + [anon_sym_PERCENT_EQ] = ACTIONS(308), + [anon_sym_STAR_STAR_EQ] = ACTIONS(308), + [anon_sym_GT_GT_EQ] = ACTIONS(308), + [anon_sym_LT_LT_EQ] = ACTIONS(308), + [anon_sym_AMP_EQ] = ACTIONS(308), + [anon_sym_CARET_EQ] = ACTIONS(308), + [anon_sym_PIPE_EQ] = ACTIONS(308), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), + [anon_sym_await] = ACTIONS(641), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(635), + [sym__newline] = ACTIONS(265), [sym_string_start] = ACTIONS(81), }, - [145] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), - [anon_sym_assert] = ACTIONS(21), - [anon_sym_return] = ACTIONS(23), - [anon_sym_del] = ACTIONS(25), - [anon_sym_raise] = ACTIONS(27), - [anon_sym_pass] = ACTIONS(29), - [anon_sym_break] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_DASH] = ACTIONS(65), + [STATE(146)] = { + [sym_list_splat_pattern] = STATE(1047), + [sym_primary_expression] = STATE(974), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_attribute] = STATE(1099), + [sym_subscript] = STATE(1099), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [sym_identifier] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(265), + [anon_sym_DOT] = ACTIONS(267), + [anon_sym_LPAREN] = ACTIONS(629), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_as] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(631), + [anon_sym_print] = ACTIONS(633), + [anon_sym_GT_GT] = ACTIONS(267), + [anon_sym_COLON_EQ] = ACTIONS(280), + [anon_sym_if] = ACTIONS(267), + [anon_sym_COLON] = ACTIONS(292), + [anon_sym_match] = ACTIONS(635), + [anon_sym_async] = ACTIONS(633), + [anon_sym_in] = ACTIONS(267), + [anon_sym_STAR_STAR] = ACTIONS(267), + [anon_sym_exec] = ACTIONS(633), + [anon_sym_type] = ACTIONS(635), + [anon_sym_EQ] = ACTIONS(292), + [anon_sym_LBRACK] = ACTIONS(637), + [anon_sym_AT] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_PIPE] = ACTIONS(267), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_not] = ACTIONS(267), + [anon_sym_and] = ACTIONS(267), + [anon_sym_or] = ACTIONS(267), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(267), + [anon_sym_SLASH_SLASH] = ACTIONS(267), + [anon_sym_AMP] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_LT_LT] = ACTIONS(267), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), + [anon_sym_is] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(265), + [anon_sym_EQ_EQ] = ACTIONS(265), + [anon_sym_BANG_EQ] = ACTIONS(265), + [anon_sym_GT_EQ] = ACTIONS(265), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_LT_GT] = ACTIONS(265), + [anon_sym_PLUS_EQ] = ACTIONS(308), + [anon_sym_DASH_EQ] = ACTIONS(308), + [anon_sym_STAR_EQ] = ACTIONS(308), + [anon_sym_SLASH_EQ] = ACTIONS(308), + [anon_sym_AT_EQ] = ACTIONS(308), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(308), + [anon_sym_PERCENT_EQ] = ACTIONS(308), + [anon_sym_STAR_STAR_EQ] = ACTIONS(308), + [anon_sym_GT_GT_EQ] = ACTIONS(308), + [anon_sym_LT_LT_EQ] = ACTIONS(308), + [anon_sym_AMP_EQ] = ACTIONS(308), + [anon_sym_CARET_EQ] = ACTIONS(308), + [anon_sym_PIPE_EQ] = ACTIONS(308), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), + [anon_sym_await] = ACTIONS(641), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(637), + [sym__newline] = ACTIONS(265), [sym_string_start] = ACTIONS(81), }, - [146] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), - [anon_sym_assert] = ACTIONS(21), - [anon_sym_return] = ACTIONS(23), - [anon_sym_del] = ACTIONS(25), - [anon_sym_raise] = ACTIONS(27), - [anon_sym_pass] = ACTIONS(29), - [anon_sym_break] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), + [STATE(147)] = { + [sym_list_splat_pattern] = STATE(1372), + [sym_primary_expression] = STATE(1116), + [sym_binary_operator] = STATE(1377), + [sym_unary_operator] = STATE(1377), + [sym_attribute] = STATE(1377), + [sym_subscript] = STATE(1377), + [sym_call] = STATE(1377), + [sym_list] = STATE(1377), + [sym_set] = STATE(1377), + [sym_tuple] = STATE(1377), + [sym_dictionary] = STATE(1377), + [sym_list_comprehension] = STATE(1377), + [sym_dictionary_comprehension] = STATE(1377), + [sym_set_comprehension] = STATE(1377), + [sym_generator_expression] = STATE(1377), + [sym_parenthesized_expression] = STATE(1377), + [sym_concatenated_string] = STATE(1377), + [sym_string] = STATE(984), + [sym_await] = STATE(1377), + [sym_identifier] = ACTIONS(312), + [anon_sym_SEMI] = ACTIONS(643), + [anon_sym_DOT] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_COMMA] = ACTIONS(643), + [anon_sym_as] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_print] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(645), + [anon_sym_if] = ACTIONS(650), + [anon_sym_COLON] = ACTIONS(643), + [anon_sym_match] = ACTIONS(656), + [anon_sym_async] = ACTIONS(654), + [anon_sym_in] = ACTIONS(650), + [anon_sym_STAR_STAR] = ACTIONS(645), + [anon_sym_exec] = ACTIONS(654), + [anon_sym_type] = ACTIONS(656), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_LBRACK] = ACTIONS(658), + [anon_sym_AT] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_PIPE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(299), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_not] = ACTIONS(650), + [anon_sym_and] = ACTIONS(650), + [anon_sym_or] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_PERCENT] = ACTIONS(645), + [anon_sym_SLASH_SLASH] = ACTIONS(645), + [anon_sym_AMP] = ACTIONS(645), + [anon_sym_CARET] = ACTIONS(645), + [anon_sym_LT_LT] = ACTIONS(645), + [anon_sym_TILDE] = ACTIONS(304), + [anon_sym_is] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_LT_EQ] = ACTIONS(643), + [anon_sym_EQ_EQ] = ACTIONS(643), + [anon_sym_BANG_EQ] = ACTIONS(643), + [anon_sym_GT_EQ] = ACTIONS(643), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT_GT] = ACTIONS(643), + [anon_sym_PLUS_EQ] = ACTIONS(643), + [anon_sym_DASH_EQ] = ACTIONS(643), + [anon_sym_STAR_EQ] = ACTIONS(643), + [anon_sym_SLASH_EQ] = ACTIONS(643), + [anon_sym_AT_EQ] = ACTIONS(643), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(643), + [anon_sym_PERCENT_EQ] = ACTIONS(643), + [anon_sym_STAR_STAR_EQ] = ACTIONS(643), + [anon_sym_GT_GT_EQ] = ACTIONS(643), + [anon_sym_LT_LT_EQ] = ACTIONS(643), + [anon_sym_AMP_EQ] = ACTIONS(643), + [anon_sym_CARET_EQ] = ACTIONS(643), + [anon_sym_PIPE_EQ] = ACTIONS(643), + [sym_ellipsis] = ACTIONS(310), + [sym_integer] = ACTIONS(312), + [sym_float] = ACTIONS(310), + [anon_sym_await] = ACTIONS(662), + [sym_true] = ACTIONS(312), + [sym_false] = ACTIONS(312), + [sym_none] = ACTIONS(312), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(639), - [sym_string_start] = ACTIONS(81), - }, - [147] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), - [anon_sym_assert] = ACTIONS(21), - [anon_sym_return] = ACTIONS(23), - [anon_sym_del] = ACTIONS(25), - [anon_sym_raise] = ACTIONS(27), - [anon_sym_pass] = ACTIONS(29), - [anon_sym_break] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), + [sym__newline] = ACTIONS(643), + [sym_string_start] = ACTIONS(316), + }, + [STATE(148)] = { + [sym_list_splat_pattern] = STATE(1047), + [sym_primary_expression] = STATE(974), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_attribute] = STATE(1099), + [sym_subscript] = STATE(1099), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [sym_identifier] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(265), + [anon_sym_DOT] = ACTIONS(267), + [anon_sym_from] = ACTIONS(267), + [anon_sym_LPAREN] = ACTIONS(629), + [anon_sym_COMMA] = ACTIONS(265), + [anon_sym_as] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(631), + [anon_sym_print] = ACTIONS(633), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_COLON_EQ] = ACTIONS(280), + [anon_sym_if] = ACTIONS(267), + [anon_sym_COLON] = ACTIONS(267), + [anon_sym_match] = ACTIONS(635), + [anon_sym_async] = ACTIONS(633), + [anon_sym_in] = ACTIONS(267), + [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_exec] = ACTIONS(633), + [anon_sym_type] = ACTIONS(635), + [anon_sym_EQ] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(637), + [anon_sym_AT] = ACTIONS(265), [anon_sym_DASH] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(265), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), + [anon_sym_not] = ACTIONS(267), + [anon_sym_and] = ACTIONS(267), + [anon_sym_or] = ACTIONS(267), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), + [anon_sym_is] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(265), + [anon_sym_EQ_EQ] = ACTIONS(265), + [anon_sym_BANG_EQ] = ACTIONS(265), + [anon_sym_GT_EQ] = ACTIONS(265), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_LT_GT] = ACTIONS(265), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), + [anon_sym_await] = ACTIONS(641), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(641), + [sym__newline] = ACTIONS(265), [sym_string_start] = ACTIONS(81), }, - [148] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), - [anon_sym_assert] = ACTIONS(21), - [anon_sym_return] = ACTIONS(23), - [anon_sym_del] = ACTIONS(25), - [anon_sym_raise] = ACTIONS(27), - [anon_sym_pass] = ACTIONS(29), - [anon_sym_break] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), + [STATE(149)] = { + [sym_list_splat_pattern] = STATE(1197), + [sym_primary_expression] = STATE(1020), + [sym_binary_operator] = STATE(1279), + [sym_unary_operator] = STATE(1279), + [sym_attribute] = STATE(1279), + [sym_subscript] = STATE(1279), + [sym_call] = STATE(1279), + [sym_list] = STATE(1279), + [sym_set] = STATE(1279), + [sym_tuple] = STATE(1279), + [sym_dictionary] = STATE(1279), + [sym_list_comprehension] = STATE(1279), + [sym_dictionary_comprehension] = STATE(1279), + [sym_set_comprehension] = STATE(1279), + [sym_generator_expression] = STATE(1279), + [sym_parenthesized_expression] = STATE(1279), + [sym_concatenated_string] = STATE(1279), + [sym_string] = STATE(975), + [sym_await] = STATE(1279), + [sym_identifier] = ACTIONS(664), + [anon_sym_DOT] = ACTIONS(267), + [anon_sym_LPAREN] = ACTIONS(666), + [anon_sym_COMMA] = ACTIONS(265), + [anon_sym_as] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(668), + [anon_sym_print] = ACTIONS(670), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_COLON_EQ] = ACTIONS(280), + [anon_sym_if] = ACTIONS(267), + [anon_sym_COLON] = ACTIONS(267), + [anon_sym_match] = ACTIONS(672), + [anon_sym_async] = ACTIONS(670), + [anon_sym_in] = ACTIONS(267), + [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_exec] = ACTIONS(670), + [anon_sym_type] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(674), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(678), + [anon_sym_RBRACE] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_not] = ACTIONS(267), + [anon_sym_and] = ACTIONS(267), + [anon_sym_or] = ACTIONS(267), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_TILDE] = ACTIONS(676), + [anon_sym_is] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(265), + [anon_sym_EQ_EQ] = ACTIONS(265), + [anon_sym_BANG_EQ] = ACTIONS(265), + [anon_sym_GT_EQ] = ACTIONS(265), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_LT_GT] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(680), + [sym_type_conversion] = ACTIONS(265), + [sym_integer] = ACTIONS(664), + [sym_float] = ACTIONS(680), + [anon_sym_await] = ACTIONS(682), + [sym_true] = ACTIONS(664), + [sym_false] = ACTIONS(664), + [sym_none] = ACTIONS(664), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(643), - [sym_string_start] = ACTIONS(81), - }, - [149] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), - [anon_sym_assert] = ACTIONS(21), - [anon_sym_return] = ACTIONS(23), - [anon_sym_del] = ACTIONS(25), - [anon_sym_raise] = ACTIONS(27), - [anon_sym_pass] = ACTIONS(29), - [anon_sym_break] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), + [sym_string_start] = ACTIONS(684), + }, + [STATE(150)] = { + [sym_list_splat_pattern] = STATE(1047), + [sym_primary_expression] = STATE(974), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_attribute] = STATE(1099), + [sym_subscript] = STATE(1099), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [sym_identifier] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(265), + [anon_sym_DOT] = ACTIONS(267), + [anon_sym_from] = ACTIONS(267), + [anon_sym_LPAREN] = ACTIONS(629), + [anon_sym_COMMA] = ACTIONS(265), + [anon_sym_as] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(631), + [anon_sym_print] = ACTIONS(633), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_if] = ACTIONS(267), + [anon_sym_COLON] = ACTIONS(265), + [anon_sym_match] = ACTIONS(635), + [anon_sym_async] = ACTIONS(633), + [anon_sym_in] = ACTIONS(267), + [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_exec] = ACTIONS(633), + [anon_sym_type] = ACTIONS(635), + [anon_sym_EQ] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(637), + [anon_sym_AT] = ACTIONS(265), [anon_sym_DASH] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(265), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), + [anon_sym_not] = ACTIONS(267), + [anon_sym_and] = ACTIONS(267), + [anon_sym_or] = ACTIONS(267), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), + [anon_sym_is] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(265), + [anon_sym_EQ_EQ] = ACTIONS(265), + [anon_sym_BANG_EQ] = ACTIONS(265), + [anon_sym_GT_EQ] = ACTIONS(265), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_LT_GT] = ACTIONS(265), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), + [anon_sym_await] = ACTIONS(641), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(645), + [sym__newline] = ACTIONS(265), [sym_string_start] = ACTIONS(81), }, - [150] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), - [anon_sym_assert] = ACTIONS(21), - [anon_sym_return] = ACTIONS(23), - [anon_sym_del] = ACTIONS(25), - [anon_sym_raise] = ACTIONS(27), - [anon_sym_pass] = ACTIONS(29), - [anon_sym_break] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), + [STATE(151)] = { + [sym_list_splat_pattern] = STATE(1372), + [sym_primary_expression] = STATE(1116), + [sym_binary_operator] = STATE(1377), + [sym_unary_operator] = STATE(1377), + [sym_attribute] = STATE(1377), + [sym_subscript] = STATE(1377), + [sym_call] = STATE(1377), + [sym_list] = STATE(1377), + [sym_set] = STATE(1377), + [sym_tuple] = STATE(1377), + [sym_dictionary] = STATE(1377), + [sym_list_comprehension] = STATE(1377), + [sym_dictionary_comprehension] = STATE(1377), + [sym_set_comprehension] = STATE(1377), + [sym_generator_expression] = STATE(1377), + [sym_parenthesized_expression] = STATE(1377), + [sym_concatenated_string] = STATE(1377), + [sym_string] = STATE(984), + [sym_await] = STATE(1377), + [sym_identifier] = ACTIONS(312), + [anon_sym_DOT] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_COMMA] = ACTIONS(643), + [anon_sym_as] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_print] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(686), + [anon_sym_if] = ACTIONS(650), + [anon_sym_COLON] = ACTIONS(643), + [anon_sym_match] = ACTIONS(656), + [anon_sym_async] = ACTIONS(654), + [anon_sym_for] = ACTIONS(650), + [anon_sym_in] = ACTIONS(650), + [anon_sym_STAR_STAR] = ACTIONS(686), + [anon_sym_exec] = ACTIONS(654), + [anon_sym_type] = ACTIONS(656), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_LBRACK] = ACTIONS(658), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(304), + [anon_sym_PIPE] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(299), + [anon_sym_RBRACE] = ACTIONS(643), + [anon_sym_PLUS] = ACTIONS(304), + [anon_sym_not] = ACTIONS(650), + [anon_sym_and] = ACTIONS(650), + [anon_sym_or] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_PERCENT] = ACTIONS(686), + [anon_sym_SLASH_SLASH] = ACTIONS(686), + [anon_sym_AMP] = ACTIONS(686), + [anon_sym_CARET] = ACTIONS(686), + [anon_sym_LT_LT] = ACTIONS(686), + [anon_sym_TILDE] = ACTIONS(304), + [anon_sym_is] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_LT_EQ] = ACTIONS(643), + [anon_sym_EQ_EQ] = ACTIONS(643), + [anon_sym_BANG_EQ] = ACTIONS(643), + [anon_sym_GT_EQ] = ACTIONS(643), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT_GT] = ACTIONS(643), + [sym_ellipsis] = ACTIONS(310), + [sym_type_conversion] = ACTIONS(643), + [sym_integer] = ACTIONS(312), + [sym_float] = ACTIONS(310), + [anon_sym_await] = ACTIONS(662), + [sym_true] = ACTIONS(312), + [sym_false] = ACTIONS(312), + [sym_none] = ACTIONS(312), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(647), - [sym_string_start] = ACTIONS(81), - }, - [151] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), - [anon_sym_assert] = ACTIONS(21), - [anon_sym_return] = ACTIONS(23), - [anon_sym_del] = ACTIONS(25), - [anon_sym_raise] = ACTIONS(27), - [anon_sym_pass] = ACTIONS(29), - [anon_sym_break] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), + [sym_string_start] = ACTIONS(316), + }, + [STATE(152)] = { + [sym_list_splat_pattern] = STATE(1197), + [sym_primary_expression] = STATE(1020), + [sym_binary_operator] = STATE(1279), + [sym_unary_operator] = STATE(1279), + [sym_attribute] = STATE(1279), + [sym_subscript] = STATE(1279), + [sym_call] = STATE(1279), + [sym_list] = STATE(1279), + [sym_set] = STATE(1279), + [sym_tuple] = STATE(1279), + [sym_dictionary] = STATE(1279), + [sym_list_comprehension] = STATE(1279), + [sym_dictionary_comprehension] = STATE(1279), + [sym_set_comprehension] = STATE(1279), + [sym_generator_expression] = STATE(1279), + [sym_parenthesized_expression] = STATE(1279), + [sym_concatenated_string] = STATE(1279), + [sym_string] = STATE(975), + [sym_await] = STATE(1279), + [sym_identifier] = ACTIONS(664), + [anon_sym_DOT] = ACTIONS(267), + [anon_sym_LPAREN] = ACTIONS(666), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_as] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(668), + [anon_sym_print] = ACTIONS(670), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_COLON_EQ] = ACTIONS(280), + [anon_sym_if] = ACTIONS(267), + [anon_sym_COLON] = ACTIONS(267), + [anon_sym_match] = ACTIONS(672), + [anon_sym_async] = ACTIONS(670), + [anon_sym_in] = ACTIONS(267), + [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_exec] = ACTIONS(670), + [anon_sym_type] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(674), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(678), + [anon_sym_RBRACE] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_not] = ACTIONS(267), + [anon_sym_and] = ACTIONS(267), + [anon_sym_or] = ACTIONS(267), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_TILDE] = ACTIONS(676), + [anon_sym_is] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(265), + [anon_sym_EQ_EQ] = ACTIONS(265), + [anon_sym_BANG_EQ] = ACTIONS(265), + [anon_sym_GT_EQ] = ACTIONS(265), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_LT_GT] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(680), + [sym_type_conversion] = ACTIONS(265), + [sym_integer] = ACTIONS(664), + [sym_float] = ACTIONS(680), + [anon_sym_await] = ACTIONS(682), + [sym_true] = ACTIONS(664), + [sym_false] = ACTIONS(664), + [sym_none] = ACTIONS(664), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(649), - [sym_string_start] = ACTIONS(81), - }, - [152] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), - [anon_sym_assert] = ACTIONS(21), - [anon_sym_return] = ACTIONS(23), - [anon_sym_del] = ACTIONS(25), - [anon_sym_raise] = ACTIONS(27), - [anon_sym_pass] = ACTIONS(29), - [anon_sym_break] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), + [sym_string_start] = ACTIONS(684), + }, + [STATE(153)] = { + [sym_list_splat_pattern] = STATE(1372), + [sym_primary_expression] = STATE(1116), + [sym_binary_operator] = STATE(1377), + [sym_unary_operator] = STATE(1377), + [sym_attribute] = STATE(1377), + [sym_subscript] = STATE(1377), + [sym_call] = STATE(1377), + [sym_list] = STATE(1377), + [sym_set] = STATE(1377), + [sym_tuple] = STATE(1377), + [sym_dictionary] = STATE(1377), + [sym_list_comprehension] = STATE(1377), + [sym_dictionary_comprehension] = STATE(1377), + [sym_set_comprehension] = STATE(1377), + [sym_generator_expression] = STATE(1377), + [sym_parenthesized_expression] = STATE(1377), + [sym_concatenated_string] = STATE(1377), + [sym_string] = STATE(984), + [sym_await] = STATE(1377), + [sym_identifier] = ACTIONS(312), + [anon_sym_SEMI] = ACTIONS(643), + [anon_sym_DOT] = ACTIONS(645), + [anon_sym_from] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_COMMA] = ACTIONS(643), + [anon_sym_as] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_print] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(686), + [anon_sym_if] = ACTIONS(650), + [anon_sym_COLON] = ACTIONS(643), + [anon_sym_match] = ACTIONS(656), + [anon_sym_async] = ACTIONS(654), + [anon_sym_in] = ACTIONS(650), + [anon_sym_STAR_STAR] = ACTIONS(686), + [anon_sym_exec] = ACTIONS(654), + [anon_sym_type] = ACTIONS(656), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_LBRACK] = ACTIONS(658), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(304), + [anon_sym_PIPE] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(299), + [anon_sym_PLUS] = ACTIONS(304), + [anon_sym_not] = ACTIONS(650), + [anon_sym_and] = ACTIONS(650), + [anon_sym_or] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_PERCENT] = ACTIONS(686), + [anon_sym_SLASH_SLASH] = ACTIONS(686), + [anon_sym_AMP] = ACTIONS(686), + [anon_sym_CARET] = ACTIONS(686), + [anon_sym_LT_LT] = ACTIONS(686), + [anon_sym_TILDE] = ACTIONS(304), + [anon_sym_is] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_LT_EQ] = ACTIONS(643), + [anon_sym_EQ_EQ] = ACTIONS(643), + [anon_sym_BANG_EQ] = ACTIONS(643), + [anon_sym_GT_EQ] = ACTIONS(643), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT_GT] = ACTIONS(643), + [sym_ellipsis] = ACTIONS(310), + [sym_integer] = ACTIONS(312), + [sym_float] = ACTIONS(310), + [anon_sym_await] = ACTIONS(662), + [sym_true] = ACTIONS(312), + [sym_false] = ACTIONS(312), + [sym_none] = ACTIONS(312), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(651), - [sym_string_start] = ACTIONS(81), - }, - [153] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), + [sym__newline] = ACTIONS(643), + [sym_string_start] = ACTIONS(316), + }, + [STATE(154)] = { + [sym_list_splat_pattern] = STATE(1283), + [sym_primary_expression] = STATE(991), + [sym_binary_operator] = STATE(1280), + [sym_unary_operator] = STATE(1280), + [sym_attribute] = STATE(1280), + [sym_subscript] = STATE(1280), + [sym_call] = STATE(1280), + [sym_list] = STATE(1280), + [sym_set] = STATE(1280), + [sym_tuple] = STATE(1280), + [sym_dictionary] = STATE(1280), + [sym_list_comprehension] = STATE(1280), + [sym_dictionary_comprehension] = STATE(1280), + [sym_set_comprehension] = STATE(1280), + [sym_generator_expression] = STATE(1280), + [sym_parenthesized_expression] = STATE(1280), + [sym_concatenated_string] = STATE(1280), [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), - [anon_sym_assert] = ACTIONS(21), - [anon_sym_return] = ACTIONS(23), - [anon_sym_del] = ACTIONS(25), - [anon_sym_raise] = ACTIONS(27), - [anon_sym_pass] = ACTIONS(29), - [anon_sym_break] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), + [sym_await] = STATE(1280), + [sym_identifier] = ACTIONS(689), + [anon_sym_DOT] = ACTIONS(267), + [anon_sym_LPAREN] = ACTIONS(691), + [anon_sym_COMMA] = ACTIONS(265), + [anon_sym_as] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(693), + [anon_sym_print] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_COLON_EQ] = ACTIONS(280), + [anon_sym_if] = ACTIONS(267), + [anon_sym_COLON] = ACTIONS(267), + [anon_sym_match] = ACTIONS(697), + [anon_sym_async] = ACTIONS(695), + [anon_sym_for] = ACTIONS(267), + [anon_sym_in] = ACTIONS(267), + [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_exec] = ACTIONS(695), + [anon_sym_type] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_RBRACK] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(703), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_not] = ACTIONS(267), + [anon_sym_and] = ACTIONS(267), + [anon_sym_or] = ACTIONS(267), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_is] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(265), + [anon_sym_EQ_EQ] = ACTIONS(265), + [anon_sym_BANG_EQ] = ACTIONS(265), + [anon_sym_GT_EQ] = ACTIONS(265), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_LT_GT] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(705), + [sym_integer] = ACTIONS(689), + [sym_float] = ACTIONS(705), + [anon_sym_await] = ACTIONS(707), + [sym_true] = ACTIONS(689), + [sym_false] = ACTIONS(689), + [sym_none] = ACTIONS(689), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(81), - }, - [154] = { - [sym_list_splat_pattern] = STATE(1135), - [sym_primary_expression] = STATE(976), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_attribute] = STATE(1081), - [sym_subscript] = STATE(1081), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [sym_identifier] = ACTIONS(77), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(655), - [anon_sym_print] = ACTIONS(657), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(304), - [anon_sym_match] = ACTIONS(659), - [anon_sym_async] = ACTIONS(657), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(279), - [anon_sym_exec] = ACTIONS(657), - [anon_sym_type] = ACTIONS(659), - [anon_sym_EQ] = ACTIONS(304), - [anon_sym_LBRACK] = ACTIONS(661), - [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(279), - [anon_sym_SLASH_SLASH] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(279), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_PLUS_EQ] = ACTIONS(320), - [anon_sym_DASH_EQ] = ACTIONS(320), - [anon_sym_STAR_EQ] = ACTIONS(320), - [anon_sym_SLASH_EQ] = ACTIONS(320), - [anon_sym_AT_EQ] = ACTIONS(320), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(320), - [anon_sym_PERCENT_EQ] = ACTIONS(320), - [anon_sym_STAR_STAR_EQ] = ACTIONS(320), - [anon_sym_GT_GT_EQ] = ACTIONS(320), - [anon_sym_LT_LT_EQ] = ACTIONS(320), - [anon_sym_AMP_EQ] = ACTIONS(320), - [anon_sym_CARET_EQ] = ACTIONS(320), - [anon_sym_PIPE_EQ] = ACTIONS(320), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(665), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), + [sym_string_start] = ACTIONS(709), + }, + [STATE(155)] = { + [sym_list_splat_pattern] = STATE(1372), + [sym_primary_expression] = STATE(1116), + [sym_binary_operator] = STATE(1377), + [sym_unary_operator] = STATE(1377), + [sym_attribute] = STATE(1377), + [sym_subscript] = STATE(1377), + [sym_call] = STATE(1377), + [sym_list] = STATE(1377), + [sym_set] = STATE(1377), + [sym_tuple] = STATE(1377), + [sym_dictionary] = STATE(1377), + [sym_list_comprehension] = STATE(1377), + [sym_dictionary_comprehension] = STATE(1377), + [sym_set_comprehension] = STATE(1377), + [sym_generator_expression] = STATE(1377), + [sym_parenthesized_expression] = STATE(1377), + [sym_concatenated_string] = STATE(1377), + [sym_string] = STATE(984), + [sym_await] = STATE(1377), + [sym_identifier] = ACTIONS(312), + [anon_sym_DOT] = ACTIONS(267), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_COMMA] = ACTIONS(265), + [anon_sym_as] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_print] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_COLON_EQ] = ACTIONS(280), + [anon_sym_if] = ACTIONS(267), + [anon_sym_COLON] = ACTIONS(267), + [anon_sym_else] = ACTIONS(267), + [anon_sym_match] = ACTIONS(656), + [anon_sym_async] = ACTIONS(654), + [anon_sym_in] = ACTIONS(267), + [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_exec] = ACTIONS(654), + [anon_sym_type] = ACTIONS(656), + [anon_sym_EQ] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(658), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(304), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(299), + [anon_sym_PLUS] = ACTIONS(304), + [anon_sym_not] = ACTIONS(267), + [anon_sym_and] = ACTIONS(267), + [anon_sym_or] = ACTIONS(267), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_TILDE] = ACTIONS(304), + [anon_sym_is] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(265), + [anon_sym_EQ_EQ] = ACTIONS(265), + [anon_sym_BANG_EQ] = ACTIONS(265), + [anon_sym_GT_EQ] = ACTIONS(265), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_LT_GT] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(310), + [sym_integer] = ACTIONS(312), + [sym_float] = ACTIONS(310), + [anon_sym_await] = ACTIONS(662), + [sym_true] = ACTIONS(312), + [sym_false] = ACTIONS(312), + [sym_none] = ACTIONS(312), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(277), - [sym_string_start] = ACTIONS(81), - }, - [155] = { - [sym_list_splat_pattern] = STATE(1135), - [sym_primary_expression] = STATE(976), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_attribute] = STATE(1081), - [sym_subscript] = STATE(1081), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [sym_identifier] = ACTIONS(77), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(655), - [anon_sym_print] = ACTIONS(657), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(294), - [anon_sym_match] = ACTIONS(659), - [anon_sym_async] = ACTIONS(657), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(279), - [anon_sym_exec] = ACTIONS(657), - [anon_sym_type] = ACTIONS(659), - [anon_sym_EQ] = ACTIONS(304), - [anon_sym_LBRACK] = ACTIONS(661), - [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(279), - [anon_sym_SLASH_SLASH] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(279), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_PLUS_EQ] = ACTIONS(320), - [anon_sym_DASH_EQ] = ACTIONS(320), - [anon_sym_STAR_EQ] = ACTIONS(320), - [anon_sym_SLASH_EQ] = ACTIONS(320), - [anon_sym_AT_EQ] = ACTIONS(320), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(320), - [anon_sym_PERCENT_EQ] = ACTIONS(320), - [anon_sym_STAR_STAR_EQ] = ACTIONS(320), - [anon_sym_GT_GT_EQ] = ACTIONS(320), - [anon_sym_LT_LT_EQ] = ACTIONS(320), - [anon_sym_AMP_EQ] = ACTIONS(320), - [anon_sym_CARET_EQ] = ACTIONS(320), - [anon_sym_PIPE_EQ] = ACTIONS(320), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(665), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), + [sym_string_start] = ACTIONS(316), + }, + [STATE(156)] = { + [sym_list_splat_pattern] = STATE(1301), + [sym_primary_expression] = STATE(1071), + [sym_binary_operator] = STATE(1381), + [sym_unary_operator] = STATE(1381), + [sym_attribute] = STATE(1381), + [sym_subscript] = STATE(1381), + [sym_call] = STATE(1381), + [sym_list] = STATE(1381), + [sym_set] = STATE(1381), + [sym_tuple] = STATE(1381), + [sym_dictionary] = STATE(1381), + [sym_list_comprehension] = STATE(1381), + [sym_dictionary_comprehension] = STATE(1381), + [sym_set_comprehension] = STATE(1381), + [sym_generator_expression] = STATE(1381), + [sym_parenthesized_expression] = STATE(1381), + [sym_concatenated_string] = STATE(1381), + [sym_string] = STATE(995), + [sym_await] = STATE(1381), + [sym_identifier] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(267), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(265), + [anon_sym_COMMA] = ACTIONS(265), + [anon_sym_as] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_print] = ACTIONS(717), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_COLON_EQ] = ACTIONS(280), + [anon_sym_if] = ACTIONS(267), + [anon_sym_COLON] = ACTIONS(267), + [anon_sym_match] = ACTIONS(719), + [anon_sym_async] = ACTIONS(717), + [anon_sym_in] = ACTIONS(267), + [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_exec] = ACTIONS(717), + [anon_sym_type] = ACTIONS(719), + [anon_sym_EQ] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_not] = ACTIONS(267), + [anon_sym_and] = ACTIONS(267), + [anon_sym_or] = ACTIONS(267), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_TILDE] = ACTIONS(723), + [anon_sym_is] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(265), + [anon_sym_EQ_EQ] = ACTIONS(265), + [anon_sym_BANG_EQ] = ACTIONS(265), + [anon_sym_GT_EQ] = ACTIONS(265), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_LT_GT] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(727), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(727), + [anon_sym_await] = ACTIONS(729), + [sym_true] = ACTIONS(711), + [sym_false] = ACTIONS(711), + [sym_none] = ACTIONS(711), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(277), - [sym_string_start] = ACTIONS(81), - }, - [156] = { - [sym_list_splat_pattern] = STATE(1325), - [sym_primary_expression] = STATE(1053), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), - [sym_identifier] = ACTIONS(324), - [anon_sym_SEMI] = ACTIONS(667), - [anon_sym_DOT] = ACTIONS(669), - [anon_sym_LPAREN] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(667), - [anon_sym_as] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_print] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(669), - [anon_sym_if] = ACTIONS(674), - [anon_sym_COLON] = ACTIONS(667), - [anon_sym_match] = ACTIONS(680), - [anon_sym_async] = ACTIONS(678), - [anon_sym_in] = ACTIONS(674), - [anon_sym_STAR_STAR] = ACTIONS(669), - [anon_sym_exec] = ACTIONS(678), - [anon_sym_type] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_AT] = ACTIONS(669), - [anon_sym_DASH] = ACTIONS(684), - [anon_sym_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(684), - [anon_sym_not] = ACTIONS(674), - [anon_sym_and] = ACTIONS(674), - [anon_sym_or] = ACTIONS(674), - [anon_sym_SLASH] = ACTIONS(669), - [anon_sym_PERCENT] = ACTIONS(669), - [anon_sym_SLASH_SLASH] = ACTIONS(669), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_CARET] = ACTIONS(669), - [anon_sym_LT_LT] = ACTIONS(669), - [anon_sym_TILDE] = ACTIONS(316), - [anon_sym_is] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(674), - [anon_sym_LT_EQ] = ACTIONS(667), - [anon_sym_EQ_EQ] = ACTIONS(667), - [anon_sym_BANG_EQ] = ACTIONS(667), - [anon_sym_GT_EQ] = ACTIONS(667), - [anon_sym_GT] = ACTIONS(674), - [anon_sym_LT_GT] = ACTIONS(667), - [anon_sym_PLUS_EQ] = ACTIONS(667), - [anon_sym_DASH_EQ] = ACTIONS(667), - [anon_sym_STAR_EQ] = ACTIONS(667), - [anon_sym_SLASH_EQ] = ACTIONS(667), - [anon_sym_AT_EQ] = ACTIONS(667), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(667), - [anon_sym_PERCENT_EQ] = ACTIONS(667), - [anon_sym_STAR_STAR_EQ] = ACTIONS(667), - [anon_sym_GT_GT_EQ] = ACTIONS(667), - [anon_sym_LT_LT_EQ] = ACTIONS(667), - [anon_sym_AMP_EQ] = ACTIONS(667), - [anon_sym_CARET_EQ] = ACTIONS(667), - [anon_sym_PIPE_EQ] = ACTIONS(667), - [sym_ellipsis] = ACTIONS(322), - [sym_integer] = ACTIONS(324), - [sym_float] = ACTIONS(322), - [anon_sym_await] = ACTIONS(686), - [sym_true] = ACTIONS(324), - [sym_false] = ACTIONS(324), - [sym_none] = ACTIONS(324), + [sym_string_start] = ACTIONS(731), + }, + [STATE(157)] = { + [sym_list_splat_pattern] = STATE(1372), + [sym_primary_expression] = STATE(1116), + [sym_binary_operator] = STATE(1377), + [sym_unary_operator] = STATE(1377), + [sym_attribute] = STATE(1377), + [sym_subscript] = STATE(1377), + [sym_call] = STATE(1377), + [sym_list] = STATE(1377), + [sym_set] = STATE(1377), + [sym_tuple] = STATE(1377), + [sym_dictionary] = STATE(1377), + [sym_list_comprehension] = STATE(1377), + [sym_dictionary_comprehension] = STATE(1377), + [sym_set_comprehension] = STATE(1377), + [sym_generator_expression] = STATE(1377), + [sym_parenthesized_expression] = STATE(1377), + [sym_concatenated_string] = STATE(1377), + [sym_string] = STATE(984), + [sym_await] = STATE(1377), + [sym_identifier] = ACTIONS(312), + [anon_sym_DOT] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_RPAREN] = ACTIONS(643), + [anon_sym_COMMA] = ACTIONS(643), + [anon_sym_as] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_print] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(686), + [anon_sym_if] = ACTIONS(650), + [anon_sym_COLON] = ACTIONS(643), + [anon_sym_match] = ACTIONS(656), + [anon_sym_async] = ACTIONS(654), + [anon_sym_for] = ACTIONS(650), + [anon_sym_in] = ACTIONS(650), + [anon_sym_STAR_STAR] = ACTIONS(686), + [anon_sym_exec] = ACTIONS(654), + [anon_sym_type] = ACTIONS(656), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_LBRACK] = ACTIONS(658), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(304), + [anon_sym_PIPE] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(299), + [anon_sym_PLUS] = ACTIONS(304), + [anon_sym_not] = ACTIONS(650), + [anon_sym_and] = ACTIONS(650), + [anon_sym_or] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_PERCENT] = ACTIONS(686), + [anon_sym_SLASH_SLASH] = ACTIONS(686), + [anon_sym_AMP] = ACTIONS(686), + [anon_sym_CARET] = ACTIONS(686), + [anon_sym_LT_LT] = ACTIONS(686), + [anon_sym_TILDE] = ACTIONS(304), + [anon_sym_is] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_LT_EQ] = ACTIONS(643), + [anon_sym_EQ_EQ] = ACTIONS(643), + [anon_sym_BANG_EQ] = ACTIONS(643), + [anon_sym_GT_EQ] = ACTIONS(643), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT_GT] = ACTIONS(643), + [sym_ellipsis] = ACTIONS(310), + [sym_integer] = ACTIONS(312), + [sym_float] = ACTIONS(310), + [anon_sym_await] = ACTIONS(662), + [sym_true] = ACTIONS(312), + [sym_false] = ACTIONS(312), + [sym_none] = ACTIONS(312), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(667), - [sym_string_start] = ACTIONS(328), - }, - [157] = { - [sym_list_splat_pattern] = STATE(1135), - [sym_primary_expression] = STATE(976), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_attribute] = STATE(1081), - [sym_subscript] = STATE(1081), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [sym_identifier] = ACTIONS(77), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_from] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(655), - [anon_sym_print] = ACTIONS(657), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(279), - [anon_sym_match] = ACTIONS(659), - [anon_sym_async] = ACTIONS(657), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(657), - [anon_sym_type] = ACTIONS(659), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(661), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(665), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), + [sym_string_start] = ACTIONS(316), + }, + [STATE(158)] = { + [sym_list_splat_pattern] = STATE(1197), + [sym_primary_expression] = STATE(1020), + [sym_binary_operator] = STATE(1279), + [sym_unary_operator] = STATE(1279), + [sym_attribute] = STATE(1279), + [sym_subscript] = STATE(1279), + [sym_call] = STATE(1279), + [sym_list] = STATE(1279), + [sym_set] = STATE(1279), + [sym_tuple] = STATE(1279), + [sym_dictionary] = STATE(1279), + [sym_list_comprehension] = STATE(1279), + [sym_dictionary_comprehension] = STATE(1279), + [sym_set_comprehension] = STATE(1279), + [sym_generator_expression] = STATE(1279), + [sym_parenthesized_expression] = STATE(1279), + [sym_concatenated_string] = STATE(1279), + [sym_string] = STATE(975), + [sym_await] = STATE(1279), + [sym_identifier] = ACTIONS(664), + [anon_sym_DOT] = ACTIONS(267), + [anon_sym_LPAREN] = ACTIONS(666), + [anon_sym_COMMA] = ACTIONS(265), + [anon_sym_as] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(668), + [anon_sym_print] = ACTIONS(670), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_if] = ACTIONS(267), + [anon_sym_COLON] = ACTIONS(265), + [anon_sym_match] = ACTIONS(672), + [anon_sym_async] = ACTIONS(670), + [anon_sym_in] = ACTIONS(267), + [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_exec] = ACTIONS(670), + [anon_sym_type] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(674), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(678), + [anon_sym_RBRACE] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_not] = ACTIONS(267), + [anon_sym_and] = ACTIONS(267), + [anon_sym_or] = ACTIONS(267), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_TILDE] = ACTIONS(676), + [anon_sym_is] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(265), + [anon_sym_EQ_EQ] = ACTIONS(265), + [anon_sym_BANG_EQ] = ACTIONS(265), + [anon_sym_GT_EQ] = ACTIONS(265), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_LT_GT] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(680), + [sym_type_conversion] = ACTIONS(265), + [sym_integer] = ACTIONS(664), + [sym_float] = ACTIONS(680), + [anon_sym_await] = ACTIONS(682), + [sym_true] = ACTIONS(664), + [sym_false] = ACTIONS(664), + [sym_none] = ACTIONS(664), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(277), - [sym_string_start] = ACTIONS(81), + [sym_string_start] = ACTIONS(684), }, - [158] = { - [sym_list_splat_pattern] = STATE(1249), + [STATE(159)] = { + [sym_list_splat_pattern] = STATE(1259), [sym_primary_expression] = STATE(1014), - [sym_binary_operator] = STATE(1198), - [sym_unary_operator] = STATE(1198), - [sym_attribute] = STATE(1198), - [sym_subscript] = STATE(1198), - [sym_call] = STATE(1198), - [sym_list] = STATE(1198), - [sym_set] = STATE(1198), - [sym_tuple] = STATE(1198), - [sym_dictionary] = STATE(1198), - [sym_list_comprehension] = STATE(1198), - [sym_dictionary_comprehension] = STATE(1198), - [sym_set_comprehension] = STATE(1198), - [sym_generator_expression] = STATE(1198), - [sym_parenthesized_expression] = STATE(1198), - [sym_concatenated_string] = STATE(1198), - [sym_string] = STATE(983), - [sym_await] = STATE(1198), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(690), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_print] = ACTIONS(694), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(279), - [anon_sym_match] = ACTIONS(696), - [anon_sym_async] = ACTIONS(694), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(694), - [anon_sym_type] = ACTIONS(696), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(698), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(700), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_RBRACE] = ACTIONS(277), - [anon_sym_PLUS] = ACTIONS(700), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(700), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(704), - [sym_type_conversion] = ACTIONS(277), - [sym_integer] = ACTIONS(688), - [sym_float] = ACTIONS(704), - [anon_sym_await] = ACTIONS(706), - [sym_true] = ACTIONS(688), - [sym_false] = ACTIONS(688), - [sym_none] = ACTIONS(688), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(708), - }, - [159] = { - [sym_list_splat_pattern] = STATE(1325), - [sym_primary_expression] = STATE(1053), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), - [sym_identifier] = ACTIONS(324), - [anon_sym_SEMI] = ACTIONS(667), - [anon_sym_DOT] = ACTIONS(669), - [anon_sym_from] = ACTIONS(674), - [anon_sym_LPAREN] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(667), - [anon_sym_as] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_print] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(710), - [anon_sym_if] = ACTIONS(674), - [anon_sym_COLON] = ACTIONS(667), - [anon_sym_match] = ACTIONS(680), - [anon_sym_async] = ACTIONS(678), - [anon_sym_in] = ACTIONS(674), - [anon_sym_STAR_STAR] = ACTIONS(710), - [anon_sym_exec] = ACTIONS(678), - [anon_sym_type] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_AT] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(710), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(316), - [anon_sym_not] = ACTIONS(674), - [anon_sym_and] = ACTIONS(674), - [anon_sym_or] = ACTIONS(674), - [anon_sym_SLASH] = ACTIONS(669), - [anon_sym_PERCENT] = ACTIONS(710), - [anon_sym_SLASH_SLASH] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(710), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_LT_LT] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(316), - [anon_sym_is] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(674), - [anon_sym_LT_EQ] = ACTIONS(667), - [anon_sym_EQ_EQ] = ACTIONS(667), - [anon_sym_BANG_EQ] = ACTIONS(667), - [anon_sym_GT_EQ] = ACTIONS(667), - [anon_sym_GT] = ACTIONS(674), - [anon_sym_LT_GT] = ACTIONS(667), - [sym_ellipsis] = ACTIONS(322), - [sym_integer] = ACTIONS(324), - [sym_float] = ACTIONS(322), - [anon_sym_await] = ACTIONS(686), - [sym_true] = ACTIONS(324), - [sym_false] = ACTIONS(324), - [sym_none] = ACTIONS(324), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(667), - [sym_string_start] = ACTIONS(328), - }, - [160] = { - [sym_list_splat_pattern] = STATE(1325), - [sym_primary_expression] = STATE(1053), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), - [sym_identifier] = ACTIONS(324), - [anon_sym_DOT] = ACTIONS(669), - [anon_sym_LPAREN] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(667), - [anon_sym_as] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_print] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(710), - [anon_sym_if] = ACTIONS(674), - [anon_sym_COLON] = ACTIONS(667), - [anon_sym_match] = ACTIONS(680), - [anon_sym_async] = ACTIONS(678), - [anon_sym_for] = ACTIONS(674), - [anon_sym_in] = ACTIONS(674), - [anon_sym_STAR_STAR] = ACTIONS(710), - [anon_sym_exec] = ACTIONS(678), - [anon_sym_type] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_AT] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(710), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(667), - [anon_sym_PLUS] = ACTIONS(316), - [anon_sym_not] = ACTIONS(674), - [anon_sym_and] = ACTIONS(674), - [anon_sym_or] = ACTIONS(674), - [anon_sym_SLASH] = ACTIONS(669), - [anon_sym_PERCENT] = ACTIONS(710), - [anon_sym_SLASH_SLASH] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(710), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_LT_LT] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(316), - [anon_sym_is] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(674), - [anon_sym_LT_EQ] = ACTIONS(667), - [anon_sym_EQ_EQ] = ACTIONS(667), - [anon_sym_BANG_EQ] = ACTIONS(667), - [anon_sym_GT_EQ] = ACTIONS(667), - [anon_sym_GT] = ACTIONS(674), - [anon_sym_LT_GT] = ACTIONS(667), - [sym_ellipsis] = ACTIONS(322), - [sym_type_conversion] = ACTIONS(667), - [sym_integer] = ACTIONS(324), - [sym_float] = ACTIONS(322), - [anon_sym_await] = ACTIONS(686), - [sym_true] = ACTIONS(324), - [sym_false] = ACTIONS(324), - [sym_none] = ACTIONS(324), + [sym_binary_operator] = STATE(1180), + [sym_unary_operator] = STATE(1180), + [sym_attribute] = STATE(1180), + [sym_subscript] = STATE(1180), + [sym_call] = STATE(1180), + [sym_list] = STATE(1180), + [sym_set] = STATE(1180), + [sym_tuple] = STATE(1180), + [sym_dictionary] = STATE(1180), + [sym_list_comprehension] = STATE(1180), + [sym_dictionary_comprehension] = STATE(1180), + [sym_set_comprehension] = STATE(1180), + [sym_generator_expression] = STATE(1180), + [sym_parenthesized_expression] = STATE(1180), + [sym_concatenated_string] = STATE(1180), + [sym_string] = STATE(958), + [sym_await] = STATE(1180), + [sym_identifier] = ACTIONS(733), + [anon_sym_DOT] = ACTIONS(267), + [anon_sym_LPAREN] = ACTIONS(735), + [anon_sym_COMMA] = ACTIONS(265), + [anon_sym_as] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(737), + [anon_sym_print] = ACTIONS(739), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_COLON_EQ] = ACTIONS(280), + [anon_sym_if] = ACTIONS(267), + [anon_sym_COLON] = ACTIONS(267), + [anon_sym_match] = ACTIONS(741), + [anon_sym_async] = ACTIONS(739), + [anon_sym_for] = ACTIONS(267), + [anon_sym_in] = ACTIONS(267), + [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_exec] = ACTIONS(739), + [anon_sym_type] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(745), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_RBRACE] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(745), + [anon_sym_not] = ACTIONS(267), + [anon_sym_and] = ACTIONS(267), + [anon_sym_or] = ACTIONS(267), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_is] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(265), + [anon_sym_EQ_EQ] = ACTIONS(265), + [anon_sym_BANG_EQ] = ACTIONS(265), + [anon_sym_GT_EQ] = ACTIONS(265), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_LT_GT] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(749), + [sym_integer] = ACTIONS(733), + [sym_float] = ACTIONS(749), + [anon_sym_await] = ACTIONS(751), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_none] = ACTIONS(733), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(328), - }, - [161] = { - [sym_list_splat_pattern] = STATE(1135), - [sym_primary_expression] = STATE(976), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_attribute] = STATE(1081), - [sym_subscript] = STATE(1081), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [sym_identifier] = ACTIONS(77), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_from] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(655), - [anon_sym_print] = ACTIONS(657), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_match] = ACTIONS(659), - [anon_sym_async] = ACTIONS(657), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(657), - [anon_sym_type] = ACTIONS(659), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(661), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(665), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), + [sym_string_start] = ACTIONS(753), + }, + [STATE(160)] = { + [sym_list_splat_pattern] = STATE(1197), + [sym_primary_expression] = STATE(1020), + [sym_binary_operator] = STATE(1279), + [sym_unary_operator] = STATE(1279), + [sym_attribute] = STATE(1279), + [sym_subscript] = STATE(1279), + [sym_call] = STATE(1279), + [sym_list] = STATE(1279), + [sym_set] = STATE(1279), + [sym_tuple] = STATE(1279), + [sym_dictionary] = STATE(1279), + [sym_list_comprehension] = STATE(1279), + [sym_dictionary_comprehension] = STATE(1279), + [sym_set_comprehension] = STATE(1279), + [sym_generator_expression] = STATE(1279), + [sym_parenthesized_expression] = STATE(1279), + [sym_concatenated_string] = STATE(1279), + [sym_string] = STATE(975), + [sym_await] = STATE(1279), + [sym_identifier] = ACTIONS(664), + [anon_sym_DOT] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(666), + [anon_sym_COMMA] = ACTIONS(686), + [anon_sym_as] = ACTIONS(645), + [anon_sym_STAR] = ACTIONS(668), + [anon_sym_print] = ACTIONS(670), + [anon_sym_GT_GT] = ACTIONS(686), + [anon_sym_COLON_EQ] = ACTIONS(280), + [anon_sym_if] = ACTIONS(645), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_match] = ACTIONS(672), + [anon_sym_async] = ACTIONS(670), + [anon_sym_for] = ACTIONS(650), + [anon_sym_in] = ACTIONS(645), + [anon_sym_STAR_STAR] = ACTIONS(686), + [anon_sym_exec] = ACTIONS(670), + [anon_sym_type] = ACTIONS(672), + [anon_sym_LBRACK] = ACTIONS(674), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_PIPE] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(678), + [anon_sym_RBRACE] = ACTIONS(686), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_not] = ACTIONS(645), + [anon_sym_and] = ACTIONS(645), + [anon_sym_or] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_PERCENT] = ACTIONS(686), + [anon_sym_SLASH_SLASH] = ACTIONS(686), + [anon_sym_AMP] = ACTIONS(686), + [anon_sym_CARET] = ACTIONS(686), + [anon_sym_LT_LT] = ACTIONS(686), + [anon_sym_TILDE] = ACTIONS(676), + [anon_sym_is] = ACTIONS(645), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_LT_EQ] = ACTIONS(686), + [anon_sym_EQ_EQ] = ACTIONS(686), + [anon_sym_BANG_EQ] = ACTIONS(686), + [anon_sym_GT_EQ] = ACTIONS(686), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_LT_GT] = ACTIONS(686), + [sym_ellipsis] = ACTIONS(680), + [sym_integer] = ACTIONS(664), + [sym_float] = ACTIONS(680), + [anon_sym_await] = ACTIONS(682), + [sym_true] = ACTIONS(664), + [sym_false] = ACTIONS(664), + [sym_none] = ACTIONS(664), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(277), - [sym_string_start] = ACTIONS(81), - }, - [162] = { - [sym_list_splat_pattern] = STATE(1249), - [sym_primary_expression] = STATE(1014), - [sym_binary_operator] = STATE(1198), - [sym_unary_operator] = STATE(1198), - [sym_attribute] = STATE(1198), - [sym_subscript] = STATE(1198), - [sym_call] = STATE(1198), - [sym_list] = STATE(1198), - [sym_set] = STATE(1198), - [sym_tuple] = STATE(1198), - [sym_dictionary] = STATE(1198), - [sym_list_comprehension] = STATE(1198), - [sym_dictionary_comprehension] = STATE(1198), - [sym_set_comprehension] = STATE(1198), - [sym_generator_expression] = STATE(1198), - [sym_parenthesized_expression] = STATE(1198), - [sym_concatenated_string] = STATE(1198), - [sym_string] = STATE(983), - [sym_await] = STATE(1198), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(690), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_print] = ACTIONS(694), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(279), - [anon_sym_match] = ACTIONS(696), - [anon_sym_async] = ACTIONS(694), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(694), - [anon_sym_type] = ACTIONS(696), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(698), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(700), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_RBRACE] = ACTIONS(277), - [anon_sym_PLUS] = ACTIONS(700), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(700), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(704), - [sym_type_conversion] = ACTIONS(277), - [sym_integer] = ACTIONS(688), - [sym_float] = ACTIONS(704), - [anon_sym_await] = ACTIONS(706), - [sym_true] = ACTIONS(688), - [sym_false] = ACTIONS(688), - [sym_none] = ACTIONS(688), + [sym_string_start] = ACTIONS(684), + }, + [STATE(161)] = { + [sym_list_splat_pattern] = STATE(1444), + [sym_primary_expression] = STATE(1202), + [sym_binary_operator] = STATE(1441), + [sym_unary_operator] = STATE(1441), + [sym_attribute] = STATE(1441), + [sym_subscript] = STATE(1441), + [sym_call] = STATE(1441), + [sym_list] = STATE(1441), + [sym_set] = STATE(1441), + [sym_tuple] = STATE(1441), + [sym_dictionary] = STATE(1441), + [sym_list_comprehension] = STATE(1441), + [sym_dictionary_comprehension] = STATE(1441), + [sym_set_comprehension] = STATE(1441), + [sym_generator_expression] = STATE(1441), + [sym_parenthesized_expression] = STATE(1441), + [sym_concatenated_string] = STATE(1441), + [sym_string] = STATE(1081), + [sym_await] = STATE(1441), + [sym_identifier] = ACTIONS(755), + [anon_sym_DOT] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_COMMA] = ACTIONS(686), + [anon_sym_as] = ACTIONS(645), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_print] = ACTIONS(761), + [anon_sym_GT_GT] = ACTIONS(686), + [anon_sym_COLON_EQ] = ACTIONS(280), + [anon_sym_if] = ACTIONS(645), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_match] = ACTIONS(763), + [anon_sym_async] = ACTIONS(761), + [anon_sym_for] = ACTIONS(650), + [anon_sym_in] = ACTIONS(645), + [anon_sym_STAR_STAR] = ACTIONS(686), + [anon_sym_exec] = ACTIONS(761), + [anon_sym_type] = ACTIONS(763), + [anon_sym_LBRACK] = ACTIONS(765), + [anon_sym_RBRACK] = ACTIONS(686), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_not] = ACTIONS(645), + [anon_sym_and] = ACTIONS(645), + [anon_sym_or] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_PERCENT] = ACTIONS(686), + [anon_sym_SLASH_SLASH] = ACTIONS(686), + [anon_sym_AMP] = ACTIONS(686), + [anon_sym_CARET] = ACTIONS(686), + [anon_sym_LT_LT] = ACTIONS(686), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_is] = ACTIONS(645), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_LT_EQ] = ACTIONS(686), + [anon_sym_EQ_EQ] = ACTIONS(686), + [anon_sym_BANG_EQ] = ACTIONS(686), + [anon_sym_GT_EQ] = ACTIONS(686), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_LT_GT] = ACTIONS(686), + [sym_ellipsis] = ACTIONS(771), + [sym_integer] = ACTIONS(755), + [sym_float] = ACTIONS(771), + [anon_sym_await] = ACTIONS(773), + [sym_true] = ACTIONS(755), + [sym_false] = ACTIONS(755), + [sym_none] = ACTIONS(755), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(708), - }, - [163] = { - [sym_list_splat_pattern] = STATE(1325), - [sym_primary_expression] = STATE(1053), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), - [sym_identifier] = ACTIONS(324), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_print] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(279), - [anon_sym_else] = ACTIONS(279), - [anon_sym_match] = ACTIONS(680), - [anon_sym_async] = ACTIONS(678), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(678), - [anon_sym_type] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(316), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(316), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(322), - [sym_integer] = ACTIONS(324), - [sym_float] = ACTIONS(322), - [anon_sym_await] = ACTIONS(686), - [sym_true] = ACTIONS(324), - [sym_false] = ACTIONS(324), - [sym_none] = ACTIONS(324), + [sym_string_start] = ACTIONS(775), + }, + [STATE(162)] = { + [sym_list_splat_pattern] = STATE(1320), + [sym_primary_expression] = STATE(1056), + [sym_binary_operator] = STATE(1331), + [sym_unary_operator] = STATE(1331), + [sym_attribute] = STATE(1331), + [sym_subscript] = STATE(1331), + [sym_call] = STATE(1331), + [sym_list] = STATE(1331), + [sym_set] = STATE(1331), + [sym_tuple] = STATE(1331), + [sym_dictionary] = STATE(1331), + [sym_list_comprehension] = STATE(1331), + [sym_dictionary_comprehension] = STATE(1331), + [sym_set_comprehension] = STATE(1331), + [sym_generator_expression] = STATE(1331), + [sym_parenthesized_expression] = STATE(1331), + [sym_concatenated_string] = STATE(1331), + [sym_string] = STATE(985), + [sym_await] = STATE(1331), + [sym_identifier] = ACTIONS(777), + [anon_sym_DOT] = ACTIONS(267), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(265), + [anon_sym_COMMA] = ACTIONS(265), + [anon_sym_as] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_print] = ACTIONS(783), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_COLON_EQ] = ACTIONS(280), + [anon_sym_if] = ACTIONS(267), + [anon_sym_match] = ACTIONS(785), + [anon_sym_async] = ACTIONS(783), + [anon_sym_for] = ACTIONS(267), + [anon_sym_in] = ACTIONS(267), + [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_exec] = ACTIONS(783), + [anon_sym_type] = ACTIONS(785), + [anon_sym_EQ] = ACTIONS(787), + [anon_sym_LBRACK] = ACTIONS(789), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_not] = ACTIONS(267), + [anon_sym_and] = ACTIONS(267), + [anon_sym_or] = ACTIONS(267), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_TILDE] = ACTIONS(791), + [anon_sym_is] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(265), + [anon_sym_EQ_EQ] = ACTIONS(265), + [anon_sym_BANG_EQ] = ACTIONS(265), + [anon_sym_GT_EQ] = ACTIONS(265), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_LT_GT] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(795), + [sym_integer] = ACTIONS(777), + [sym_float] = ACTIONS(795), + [anon_sym_await] = ACTIONS(797), + [sym_true] = ACTIONS(777), + [sym_false] = ACTIONS(777), + [sym_none] = ACTIONS(777), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(328), - }, - [164] = { - [sym_list_splat_pattern] = STATE(1249), - [sym_primary_expression] = STATE(1014), - [sym_binary_operator] = STATE(1198), - [sym_unary_operator] = STATE(1198), - [sym_attribute] = STATE(1198), - [sym_subscript] = STATE(1198), - [sym_call] = STATE(1198), - [sym_list] = STATE(1198), - [sym_set] = STATE(1198), - [sym_tuple] = STATE(1198), - [sym_dictionary] = STATE(1198), - [sym_list_comprehension] = STATE(1198), - [sym_dictionary_comprehension] = STATE(1198), - [sym_set_comprehension] = STATE(1198), - [sym_generator_expression] = STATE(1198), - [sym_parenthesized_expression] = STATE(1198), - [sym_concatenated_string] = STATE(1198), - [sym_string] = STATE(983), - [sym_await] = STATE(1198), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(669), - [anon_sym_LPAREN] = ACTIONS(690), - [anon_sym_COMMA] = ACTIONS(710), - [anon_sym_as] = ACTIONS(669), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_print] = ACTIONS(694), - [anon_sym_GT_GT] = ACTIONS(710), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(669), - [anon_sym_COLON] = ACTIONS(674), - [anon_sym_match] = ACTIONS(696), - [anon_sym_async] = ACTIONS(694), - [anon_sym_for] = ACTIONS(674), - [anon_sym_in] = ACTIONS(669), - [anon_sym_STAR_STAR] = ACTIONS(710), - [anon_sym_exec] = ACTIONS(694), - [anon_sym_type] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(698), - [anon_sym_AT] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(700), - [anon_sym_PIPE] = ACTIONS(710), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_RBRACE] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(700), - [anon_sym_not] = ACTIONS(669), - [anon_sym_and] = ACTIONS(669), - [anon_sym_or] = ACTIONS(669), - [anon_sym_SLASH] = ACTIONS(669), - [anon_sym_PERCENT] = ACTIONS(710), - [anon_sym_SLASH_SLASH] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(710), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_LT_LT] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(700), - [anon_sym_is] = ACTIONS(669), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_LT_EQ] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(710), - [anon_sym_BANG_EQ] = ACTIONS(710), - [anon_sym_GT_EQ] = ACTIONS(710), - [anon_sym_GT] = ACTIONS(669), - [anon_sym_LT_GT] = ACTIONS(710), - [sym_ellipsis] = ACTIONS(704), - [sym_integer] = ACTIONS(688), - [sym_float] = ACTIONS(704), - [anon_sym_await] = ACTIONS(706), - [sym_true] = ACTIONS(688), - [sym_false] = ACTIONS(688), - [sym_none] = ACTIONS(688), + [sym_string_start] = ACTIONS(799), + }, + [STATE(163)] = { + [sym_list_splat_pattern] = STATE(1320), + [sym_primary_expression] = STATE(1056), + [sym_binary_operator] = STATE(1331), + [sym_unary_operator] = STATE(1331), + [sym_attribute] = STATE(1331), + [sym_subscript] = STATE(1331), + [sym_call] = STATE(1331), + [sym_list] = STATE(1331), + [sym_set] = STATE(1331), + [sym_tuple] = STATE(1331), + [sym_dictionary] = STATE(1331), + [sym_list_comprehension] = STATE(1331), + [sym_dictionary_comprehension] = STATE(1331), + [sym_set_comprehension] = STATE(1331), + [sym_generator_expression] = STATE(1331), + [sym_parenthesized_expression] = STATE(1331), + [sym_concatenated_string] = STATE(1331), + [sym_string] = STATE(985), + [sym_await] = STATE(1331), + [sym_identifier] = ACTIONS(777), + [anon_sym_DOT] = ACTIONS(267), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(265), + [anon_sym_COMMA] = ACTIONS(265), + [anon_sym_as] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_print] = ACTIONS(783), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_COLON_EQ] = ACTIONS(280), + [anon_sym_if] = ACTIONS(267), + [anon_sym_match] = ACTIONS(785), + [anon_sym_async] = ACTIONS(783), + [anon_sym_for] = ACTIONS(267), + [anon_sym_in] = ACTIONS(267), + [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_exec] = ACTIONS(783), + [anon_sym_type] = ACTIONS(785), + [anon_sym_LBRACK] = ACTIONS(789), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_not] = ACTIONS(267), + [anon_sym_and] = ACTIONS(267), + [anon_sym_or] = ACTIONS(267), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_TILDE] = ACTIONS(791), + [anon_sym_is] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(265), + [anon_sym_EQ_EQ] = ACTIONS(265), + [anon_sym_BANG_EQ] = ACTIONS(265), + [anon_sym_GT_EQ] = ACTIONS(265), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_LT_GT] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(795), + [sym_integer] = ACTIONS(777), + [sym_float] = ACTIONS(795), + [anon_sym_await] = ACTIONS(797), + [sym_true] = ACTIONS(777), + [sym_false] = ACTIONS(777), + [sym_none] = ACTIONS(777), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(708), - }, - [165] = { - [sym_list_splat_pattern] = STATE(1229), - [sym_primary_expression] = STATE(999), - [sym_binary_operator] = STATE(1152), - [sym_unary_operator] = STATE(1152), - [sym_attribute] = STATE(1152), - [sym_subscript] = STATE(1152), - [sym_call] = STATE(1152), - [sym_list] = STATE(1152), - [sym_set] = STATE(1152), - [sym_tuple] = STATE(1152), - [sym_dictionary] = STATE(1152), - [sym_list_comprehension] = STATE(1152), - [sym_dictionary_comprehension] = STATE(1152), - [sym_set_comprehension] = STATE(1152), - [sym_generator_expression] = STATE(1152), - [sym_parenthesized_expression] = STATE(1152), - [sym_concatenated_string] = STATE(1152), - [sym_string] = STATE(980), - [sym_await] = STATE(1152), - [sym_identifier] = ACTIONS(713), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(715), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(717), - [anon_sym_print] = ACTIONS(719), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(279), - [anon_sym_match] = ACTIONS(721), - [anon_sym_async] = ACTIONS(719), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(719), - [anon_sym_type] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(725), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(727), - [anon_sym_RBRACE] = ACTIONS(277), - [anon_sym_PLUS] = ACTIONS(725), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(725), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(729), - [sym_integer] = ACTIONS(713), - [sym_float] = ACTIONS(729), - [anon_sym_await] = ACTIONS(731), - [sym_true] = ACTIONS(713), - [sym_false] = ACTIONS(713), - [sym_none] = ACTIONS(713), + [sym_string_start] = ACTIONS(799), + }, + [STATE(164)] = { + [sym_list_splat_pattern] = STATE(1301), + [sym_primary_expression] = STATE(1071), + [sym_binary_operator] = STATE(1381), + [sym_unary_operator] = STATE(1381), + [sym_attribute] = STATE(1381), + [sym_subscript] = STATE(1381), + [sym_call] = STATE(1381), + [sym_list] = STATE(1381), + [sym_set] = STATE(1381), + [sym_tuple] = STATE(1381), + [sym_dictionary] = STATE(1381), + [sym_list_comprehension] = STATE(1381), + [sym_dictionary_comprehension] = STATE(1381), + [sym_set_comprehension] = STATE(1381), + [sym_generator_expression] = STATE(1381), + [sym_parenthesized_expression] = STATE(1381), + [sym_concatenated_string] = STATE(1381), + [sym_string] = STATE(995), + [sym_await] = STATE(1381), + [sym_identifier] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(686), + [anon_sym_COMMA] = ACTIONS(686), + [anon_sym_as] = ACTIONS(645), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_print] = ACTIONS(717), + [anon_sym_GT_GT] = ACTIONS(686), + [anon_sym_COLON_EQ] = ACTIONS(280), + [anon_sym_if] = ACTIONS(645), + [anon_sym_match] = ACTIONS(719), + [anon_sym_async] = ACTIONS(717), + [anon_sym_for] = ACTIONS(650), + [anon_sym_in] = ACTIONS(645), + [anon_sym_STAR_STAR] = ACTIONS(686), + [anon_sym_exec] = ACTIONS(717), + [anon_sym_type] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_PIPE] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_not] = ACTIONS(645), + [anon_sym_and] = ACTIONS(645), + [anon_sym_or] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_PERCENT] = ACTIONS(686), + [anon_sym_SLASH_SLASH] = ACTIONS(686), + [anon_sym_AMP] = ACTIONS(686), + [anon_sym_CARET] = ACTIONS(686), + [anon_sym_LT_LT] = ACTIONS(686), + [anon_sym_TILDE] = ACTIONS(723), + [anon_sym_is] = ACTIONS(645), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_LT_EQ] = ACTIONS(686), + [anon_sym_EQ_EQ] = ACTIONS(686), + [anon_sym_BANG_EQ] = ACTIONS(686), + [anon_sym_GT_EQ] = ACTIONS(686), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_LT_GT] = ACTIONS(686), + [sym_ellipsis] = ACTIONS(727), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(727), + [anon_sym_await] = ACTIONS(729), + [sym_true] = ACTIONS(711), + [sym_false] = ACTIONS(711), + [sym_none] = ACTIONS(711), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(733), - }, - [166] = { - [sym_list_splat_pattern] = STATE(1451), - [sym_primary_expression] = STATE(1252), - [sym_binary_operator] = STATE(1462), - [sym_unary_operator] = STATE(1462), - [sym_attribute] = STATE(1462), - [sym_subscript] = STATE(1462), - [sym_call] = STATE(1462), - [sym_list] = STATE(1462), - [sym_set] = STATE(1462), - [sym_tuple] = STATE(1462), - [sym_dictionary] = STATE(1462), - [sym_list_comprehension] = STATE(1462), - [sym_dictionary_comprehension] = STATE(1462), - [sym_set_comprehension] = STATE(1462), - [sym_generator_expression] = STATE(1462), - [sym_parenthesized_expression] = STATE(1462), - [sym_concatenated_string] = STATE(1462), - [sym_string] = STATE(1110), - [sym_await] = STATE(1462), - [sym_identifier] = ACTIONS(735), - [anon_sym_DOT] = ACTIONS(669), - [anon_sym_LPAREN] = ACTIONS(737), - [anon_sym_COMMA] = ACTIONS(710), - [anon_sym_as] = ACTIONS(669), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_print] = ACTIONS(741), - [anon_sym_GT_GT] = ACTIONS(710), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(669), - [anon_sym_COLON] = ACTIONS(674), - [anon_sym_match] = ACTIONS(743), - [anon_sym_async] = ACTIONS(741), - [anon_sym_for] = ACTIONS(674), - [anon_sym_in] = ACTIONS(669), - [anon_sym_STAR_STAR] = ACTIONS(710), - [anon_sym_exec] = ACTIONS(741), - [anon_sym_type] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(745), - [anon_sym_RBRACK] = ACTIONS(710), - [anon_sym_AT] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(710), - [anon_sym_LBRACE] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_not] = ACTIONS(669), - [anon_sym_and] = ACTIONS(669), - [anon_sym_or] = ACTIONS(669), - [anon_sym_SLASH] = ACTIONS(669), - [anon_sym_PERCENT] = ACTIONS(710), - [anon_sym_SLASH_SLASH] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(710), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_LT_LT] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(747), - [anon_sym_is] = ACTIONS(669), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_LT_EQ] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(710), - [anon_sym_BANG_EQ] = ACTIONS(710), - [anon_sym_GT_EQ] = ACTIONS(710), - [anon_sym_GT] = ACTIONS(669), - [anon_sym_LT_GT] = ACTIONS(710), - [sym_ellipsis] = ACTIONS(751), - [sym_integer] = ACTIONS(735), - [sym_float] = ACTIONS(751), - [anon_sym_await] = ACTIONS(753), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_none] = ACTIONS(735), + [sym_string_start] = ACTIONS(731), + }, + [STATE(165)] = { + [sym_list_splat_pattern] = STATE(1283), + [sym_primary_expression] = STATE(991), + [sym_binary_operator] = STATE(1280), + [sym_unary_operator] = STATE(1280), + [sym_attribute] = STATE(1280), + [sym_subscript] = STATE(1280), + [sym_call] = STATE(1280), + [sym_list] = STATE(1280), + [sym_set] = STATE(1280), + [sym_tuple] = STATE(1280), + [sym_dictionary] = STATE(1280), + [sym_list_comprehension] = STATE(1280), + [sym_dictionary_comprehension] = STATE(1280), + [sym_set_comprehension] = STATE(1280), + [sym_generator_expression] = STATE(1280), + [sym_parenthesized_expression] = STATE(1280), + [sym_concatenated_string] = STATE(1280), + [sym_string] = STATE(969), + [sym_await] = STATE(1280), + [sym_identifier] = ACTIONS(689), + [anon_sym_DOT] = ACTIONS(267), + [anon_sym_LPAREN] = ACTIONS(691), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_as] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(693), + [anon_sym_print] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_COLON_EQ] = ACTIONS(280), + [anon_sym_if] = ACTIONS(267), + [anon_sym_match] = ACTIONS(697), + [anon_sym_async] = ACTIONS(695), + [anon_sym_for] = ACTIONS(267), + [anon_sym_in] = ACTIONS(267), + [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_exec] = ACTIONS(695), + [anon_sym_type] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_RBRACK] = ACTIONS(272), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(703), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_not] = ACTIONS(267), + [anon_sym_and] = ACTIONS(267), + [anon_sym_or] = ACTIONS(267), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_is] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(265), + [anon_sym_EQ_EQ] = ACTIONS(265), + [anon_sym_BANG_EQ] = ACTIONS(265), + [anon_sym_GT_EQ] = ACTIONS(265), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_LT_GT] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(705), + [sym_integer] = ACTIONS(689), + [sym_float] = ACTIONS(705), + [anon_sym_await] = ACTIONS(707), + [sym_true] = ACTIONS(689), + [sym_false] = ACTIONS(689), + [sym_none] = ACTIONS(689), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(755), - }, - [167] = { - [sym_list_splat_pattern] = STATE(1390), - [sym_primary_expression] = STATE(1139), - [sym_binary_operator] = STATE(1389), - [sym_unary_operator] = STATE(1389), - [sym_attribute] = STATE(1389), - [sym_subscript] = STATE(1389), - [sym_call] = STATE(1389), - [sym_list] = STATE(1389), - [sym_set] = STATE(1389), - [sym_tuple] = STATE(1389), - [sym_dictionary] = STATE(1389), - [sym_list_comprehension] = STATE(1389), - [sym_dictionary_comprehension] = STATE(1389), - [sym_set_comprehension] = STATE(1389), - [sym_generator_expression] = STATE(1389), - [sym_parenthesized_expression] = STATE(1389), - [sym_concatenated_string] = STATE(1389), - [sym_string] = STATE(1044), - [sym_await] = STATE(1389), - [sym_identifier] = ACTIONS(757), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(759), - [anon_sym_RPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(761), - [anon_sym_print] = ACTIONS(763), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(765), - [anon_sym_async] = ACTIONS(763), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(763), - [anon_sym_type] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(771), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(775), - [sym_integer] = ACTIONS(757), - [sym_float] = ACTIONS(775), - [anon_sym_await] = ACTIONS(777), - [sym_true] = ACTIONS(757), - [sym_false] = ACTIONS(757), - [sym_none] = ACTIONS(757), + [sym_string_start] = ACTIONS(709), + }, + [STATE(166)] = { + [sym_list_splat_pattern] = STATE(1372), + [sym_primary_expression] = STATE(1116), + [sym_binary_operator] = STATE(1377), + [sym_unary_operator] = STATE(1377), + [sym_attribute] = STATE(1377), + [sym_subscript] = STATE(1377), + [sym_call] = STATE(1377), + [sym_list] = STATE(1377), + [sym_set] = STATE(1377), + [sym_tuple] = STATE(1377), + [sym_dictionary] = STATE(1377), + [sym_list_comprehension] = STATE(1377), + [sym_dictionary_comprehension] = STATE(1377), + [sym_set_comprehension] = STATE(1377), + [sym_generator_expression] = STATE(1377), + [sym_parenthesized_expression] = STATE(1377), + [sym_concatenated_string] = STATE(1377), + [sym_string] = STATE(984), + [sym_await] = STATE(1377), + [sym_identifier] = ACTIONS(312), + [anon_sym_DOT] = ACTIONS(267), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_COMMA] = ACTIONS(265), + [anon_sym_as] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_print] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_if] = ACTIONS(267), + [anon_sym_COLON] = ACTIONS(265), + [anon_sym_else] = ACTIONS(267), + [anon_sym_match] = ACTIONS(656), + [anon_sym_async] = ACTIONS(654), + [anon_sym_in] = ACTIONS(267), + [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_exec] = ACTIONS(654), + [anon_sym_type] = ACTIONS(656), + [anon_sym_EQ] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(658), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(304), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(299), + [anon_sym_PLUS] = ACTIONS(304), + [anon_sym_not] = ACTIONS(267), + [anon_sym_and] = ACTIONS(267), + [anon_sym_or] = ACTIONS(267), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_TILDE] = ACTIONS(304), + [anon_sym_is] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(265), + [anon_sym_EQ_EQ] = ACTIONS(265), + [anon_sym_BANG_EQ] = ACTIONS(265), + [anon_sym_GT_EQ] = ACTIONS(265), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_LT_GT] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(310), + [sym_integer] = ACTIONS(312), + [sym_float] = ACTIONS(310), + [anon_sym_await] = ACTIONS(662), + [sym_true] = ACTIONS(312), + [sym_false] = ACTIONS(312), + [sym_none] = ACTIONS(312), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(779), - }, - [168] = { - [sym_list_splat_pattern] = STATE(1325), - [sym_primary_expression] = STATE(1053), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), - [sym_identifier] = ACTIONS(324), - [anon_sym_DOT] = ACTIONS(669), - [anon_sym_LPAREN] = ACTIONS(672), - [anon_sym_RPAREN] = ACTIONS(667), - [anon_sym_COMMA] = ACTIONS(667), - [anon_sym_as] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_print] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(710), - [anon_sym_if] = ACTIONS(674), - [anon_sym_COLON] = ACTIONS(667), - [anon_sym_match] = ACTIONS(680), - [anon_sym_async] = ACTIONS(678), - [anon_sym_for] = ACTIONS(674), - [anon_sym_in] = ACTIONS(674), - [anon_sym_STAR_STAR] = ACTIONS(710), - [anon_sym_exec] = ACTIONS(678), - [anon_sym_type] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_AT] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(710), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(316), - [anon_sym_not] = ACTIONS(674), - [anon_sym_and] = ACTIONS(674), - [anon_sym_or] = ACTIONS(674), - [anon_sym_SLASH] = ACTIONS(669), - [anon_sym_PERCENT] = ACTIONS(710), - [anon_sym_SLASH_SLASH] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(710), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_LT_LT] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(316), - [anon_sym_is] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(674), - [anon_sym_LT_EQ] = ACTIONS(667), - [anon_sym_EQ_EQ] = ACTIONS(667), - [anon_sym_BANG_EQ] = ACTIONS(667), - [anon_sym_GT_EQ] = ACTIONS(667), - [anon_sym_GT] = ACTIONS(674), - [anon_sym_LT_GT] = ACTIONS(667), - [sym_ellipsis] = ACTIONS(322), - [sym_integer] = ACTIONS(324), - [sym_float] = ACTIONS(322), - [anon_sym_await] = ACTIONS(686), - [sym_true] = ACTIONS(324), - [sym_false] = ACTIONS(324), - [sym_none] = ACTIONS(324), + [sym_string_start] = ACTIONS(316), + }, + [STATE(167)] = { + [sym_list_splat_pattern] = STATE(1320), + [sym_primary_expression] = STATE(1056), + [sym_binary_operator] = STATE(1331), + [sym_unary_operator] = STATE(1331), + [sym_attribute] = STATE(1331), + [sym_subscript] = STATE(1331), + [sym_call] = STATE(1331), + [sym_list] = STATE(1331), + [sym_set] = STATE(1331), + [sym_tuple] = STATE(1331), + [sym_dictionary] = STATE(1331), + [sym_list_comprehension] = STATE(1331), + [sym_dictionary_comprehension] = STATE(1331), + [sym_set_comprehension] = STATE(1331), + [sym_generator_expression] = STATE(1331), + [sym_parenthesized_expression] = STATE(1331), + [sym_concatenated_string] = STATE(1331), + [sym_string] = STATE(985), + [sym_await] = STATE(1331), + [sym_identifier] = ACTIONS(777), + [anon_sym_DOT] = ACTIONS(267), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(272), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_as] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_print] = ACTIONS(783), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_COLON_EQ] = ACTIONS(280), + [anon_sym_if] = ACTIONS(267), + [anon_sym_match] = ACTIONS(785), + [anon_sym_async] = ACTIONS(783), + [anon_sym_for] = ACTIONS(267), + [anon_sym_in] = ACTIONS(267), + [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_exec] = ACTIONS(783), + [anon_sym_type] = ACTIONS(785), + [anon_sym_LBRACK] = ACTIONS(789), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_not] = ACTIONS(267), + [anon_sym_and] = ACTIONS(267), + [anon_sym_or] = ACTIONS(267), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_TILDE] = ACTIONS(791), + [anon_sym_is] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(265), + [anon_sym_EQ_EQ] = ACTIONS(265), + [anon_sym_BANG_EQ] = ACTIONS(265), + [anon_sym_GT_EQ] = ACTIONS(265), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_LT_GT] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(795), + [sym_integer] = ACTIONS(777), + [sym_float] = ACTIONS(795), + [anon_sym_await] = ACTIONS(797), + [sym_true] = ACTIONS(777), + [sym_false] = ACTIONS(777), + [sym_none] = ACTIONS(777), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(328), - }, - [169] = { - [sym_list_splat_pattern] = STATE(1316), - [sym_primary_expression] = STATE(1097), - [sym_binary_operator] = STATE(1418), - [sym_unary_operator] = STATE(1418), - [sym_attribute] = STATE(1418), - [sym_subscript] = STATE(1418), - [sym_call] = STATE(1418), - [sym_list] = STATE(1418), - [sym_set] = STATE(1418), - [sym_tuple] = STATE(1418), - [sym_dictionary] = STATE(1418), - [sym_list_comprehension] = STATE(1418), - [sym_dictionary_comprehension] = STATE(1418), - [sym_set_comprehension] = STATE(1418), - [sym_generator_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym_string] = STATE(1034), - [sym_await] = STATE(1418), - [sym_identifier] = ACTIONS(781), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_RPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(785), - [anon_sym_print] = ACTIONS(787), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(279), - [anon_sym_match] = ACTIONS(789), - [anon_sym_async] = ACTIONS(787), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(791), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(795), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(793), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(797), - [sym_integer] = ACTIONS(781), - [sym_float] = ACTIONS(797), - [anon_sym_await] = ACTIONS(799), - [sym_true] = ACTIONS(781), - [sym_false] = ACTIONS(781), - [sym_none] = ACTIONS(781), + [sym_string_start] = ACTIONS(799), + }, + [STATE(168)] = { + [sym_list_splat_pattern] = STATE(1301), + [sym_primary_expression] = STATE(1071), + [sym_binary_operator] = STATE(1381), + [sym_unary_operator] = STATE(1381), + [sym_attribute] = STATE(1381), + [sym_subscript] = STATE(1381), + [sym_call] = STATE(1381), + [sym_list] = STATE(1381), + [sym_set] = STATE(1381), + [sym_tuple] = STATE(1381), + [sym_dictionary] = STATE(1381), + [sym_list_comprehension] = STATE(1381), + [sym_dictionary_comprehension] = STATE(1381), + [sym_set_comprehension] = STATE(1381), + [sym_generator_expression] = STATE(1381), + [sym_parenthesized_expression] = STATE(1381), + [sym_concatenated_string] = STATE(1381), + [sym_string] = STATE(995), + [sym_await] = STATE(1381), + [sym_identifier] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(267), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(265), + [anon_sym_COMMA] = ACTIONS(265), + [anon_sym_as] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_print] = ACTIONS(717), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_COLON_EQ] = ACTIONS(280), + [anon_sym_if] = ACTIONS(267), + [anon_sym_match] = ACTIONS(719), + [anon_sym_async] = ACTIONS(717), + [anon_sym_in] = ACTIONS(267), + [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_exec] = ACTIONS(717), + [anon_sym_type] = ACTIONS(719), + [anon_sym_EQ] = ACTIONS(787), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_not] = ACTIONS(267), + [anon_sym_and] = ACTIONS(267), + [anon_sym_or] = ACTIONS(267), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_TILDE] = ACTIONS(723), + [anon_sym_is] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(265), + [anon_sym_EQ_EQ] = ACTIONS(265), + [anon_sym_BANG_EQ] = ACTIONS(265), + [anon_sym_GT_EQ] = ACTIONS(265), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_LT_GT] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(727), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(727), + [anon_sym_await] = ACTIONS(729), + [sym_true] = ACTIONS(711), + [sym_false] = ACTIONS(711), + [sym_none] = ACTIONS(711), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(801), - }, - [170] = { - [sym_list_splat_pattern] = STATE(1200), - [sym_primary_expression] = STATE(1011), - [sym_binary_operator] = STATE(1226), - [sym_unary_operator] = STATE(1226), - [sym_attribute] = STATE(1226), - [sym_subscript] = STATE(1226), - [sym_call] = STATE(1226), - [sym_list] = STATE(1226), - [sym_set] = STATE(1226), - [sym_tuple] = STATE(1226), - [sym_dictionary] = STATE(1226), - [sym_list_comprehension] = STATE(1226), - [sym_dictionary_comprehension] = STATE(1226), - [sym_set_comprehension] = STATE(1226), - [sym_generator_expression] = STATE(1226), - [sym_parenthesized_expression] = STATE(1226), - [sym_concatenated_string] = STATE(1226), - [sym_string] = STATE(977), - [sym_await] = STATE(1226), - [sym_identifier] = ACTIONS(803), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_print] = ACTIONS(809), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(279), - [anon_sym_match] = ACTIONS(811), - [anon_sym_async] = ACTIONS(809), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(809), - [anon_sym_type] = ACTIONS(811), - [anon_sym_LBRACK] = ACTIONS(813), - [anon_sym_RBRACK] = ACTIONS(277), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(819), - [sym_integer] = ACTIONS(803), - [sym_float] = ACTIONS(819), - [anon_sym_await] = ACTIONS(821), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_none] = ACTIONS(803), + [sym_string_start] = ACTIONS(731), + }, + [STATE(169)] = { + [sym_list_splat_pattern] = STATE(1372), + [sym_primary_expression] = STATE(1116), + [sym_binary_operator] = STATE(1377), + [sym_unary_operator] = STATE(1377), + [sym_attribute] = STATE(1377), + [sym_subscript] = STATE(1377), + [sym_call] = STATE(1377), + [sym_list] = STATE(1377), + [sym_set] = STATE(1377), + [sym_tuple] = STATE(1377), + [sym_dictionary] = STATE(1377), + [sym_list_comprehension] = STATE(1377), + [sym_dictionary_comprehension] = STATE(1377), + [sym_set_comprehension] = STATE(1377), + [sym_generator_expression] = STATE(1377), + [sym_parenthesized_expression] = STATE(1377), + [sym_concatenated_string] = STATE(1377), + [sym_string] = STATE(984), + [sym_await] = STATE(1377), + [sym_identifier] = ACTIONS(312), + [anon_sym_SEMI] = ACTIONS(308), + [anon_sym_DOT] = ACTIONS(267), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_COMMA] = ACTIONS(308), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_print] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(267), + [anon_sym_COLON] = ACTIONS(308), + [anon_sym_match] = ACTIONS(656), + [anon_sym_async] = ACTIONS(654), + [anon_sym_STAR_STAR] = ACTIONS(267), + [anon_sym_exec] = ACTIONS(654), + [anon_sym_type] = ACTIONS(656), + [anon_sym_EQ] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(658), + [anon_sym_AT] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_PIPE] = ACTIONS(267), + [anon_sym_LBRACE] = ACTIONS(299), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(267), + [anon_sym_SLASH_SLASH] = ACTIONS(267), + [anon_sym_AMP] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_LT_LT] = ACTIONS(267), + [anon_sym_TILDE] = ACTIONS(304), + [anon_sym_PLUS_EQ] = ACTIONS(308), + [anon_sym_DASH_EQ] = ACTIONS(308), + [anon_sym_STAR_EQ] = ACTIONS(308), + [anon_sym_SLASH_EQ] = ACTIONS(308), + [anon_sym_AT_EQ] = ACTIONS(308), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(308), + [anon_sym_PERCENT_EQ] = ACTIONS(308), + [anon_sym_STAR_STAR_EQ] = ACTIONS(308), + [anon_sym_GT_GT_EQ] = ACTIONS(308), + [anon_sym_LT_LT_EQ] = ACTIONS(308), + [anon_sym_AMP_EQ] = ACTIONS(308), + [anon_sym_CARET_EQ] = ACTIONS(308), + [anon_sym_PIPE_EQ] = ACTIONS(308), + [sym_ellipsis] = ACTIONS(310), + [sym_integer] = ACTIONS(312), + [sym_float] = ACTIONS(310), + [anon_sym_await] = ACTIONS(662), + [sym_true] = ACTIONS(312), + [sym_false] = ACTIONS(312), + [sym_none] = ACTIONS(312), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(823), + [sym__newline] = ACTIONS(308), + [sym_string_start] = ACTIONS(316), }, - [171] = { - [sym_list_splat_pattern] = STATE(1249), + [STATE(170)] = { + [sym_list_splat_pattern] = STATE(1259), [sym_primary_expression] = STATE(1014), - [sym_binary_operator] = STATE(1198), - [sym_unary_operator] = STATE(1198), - [sym_attribute] = STATE(1198), - [sym_subscript] = STATE(1198), - [sym_call] = STATE(1198), - [sym_list] = STATE(1198), - [sym_set] = STATE(1198), - [sym_tuple] = STATE(1198), - [sym_dictionary] = STATE(1198), - [sym_list_comprehension] = STATE(1198), - [sym_dictionary_comprehension] = STATE(1198), - [sym_set_comprehension] = STATE(1198), - [sym_generator_expression] = STATE(1198), - [sym_parenthesized_expression] = STATE(1198), - [sym_concatenated_string] = STATE(1198), - [sym_string] = STATE(983), - [sym_await] = STATE(1198), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(690), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_print] = ACTIONS(694), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_match] = ACTIONS(696), - [anon_sym_async] = ACTIONS(694), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(694), - [anon_sym_type] = ACTIONS(696), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(698), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(700), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_RBRACE] = ACTIONS(277), - [anon_sym_PLUS] = ACTIONS(700), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(700), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(704), - [sym_type_conversion] = ACTIONS(277), - [sym_integer] = ACTIONS(688), - [sym_float] = ACTIONS(704), - [anon_sym_await] = ACTIONS(706), - [sym_true] = ACTIONS(688), - [sym_false] = ACTIONS(688), - [sym_none] = ACTIONS(688), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(708), - }, - [172] = { - [sym_list_splat_pattern] = STATE(1316), - [sym_primary_expression] = STATE(1097), - [sym_binary_operator] = STATE(1418), - [sym_unary_operator] = STATE(1418), - [sym_attribute] = STATE(1418), - [sym_subscript] = STATE(1418), - [sym_call] = STATE(1418), - [sym_list] = STATE(1418), - [sym_set] = STATE(1418), - [sym_tuple] = STATE(1418), - [sym_dictionary] = STATE(1418), - [sym_list_comprehension] = STATE(1418), - [sym_dictionary_comprehension] = STATE(1418), - [sym_set_comprehension] = STATE(1418), - [sym_generator_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym_string] = STATE(1034), - [sym_await] = STATE(1418), - [sym_identifier] = ACTIONS(781), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_RPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(785), - [anon_sym_print] = ACTIONS(787), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(789), - [anon_sym_async] = ACTIONS(787), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_EQ] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(791), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(795), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(793), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(797), - [sym_integer] = ACTIONS(781), - [sym_float] = ACTIONS(797), - [anon_sym_await] = ACTIONS(799), - [sym_true] = ACTIONS(781), - [sym_false] = ACTIONS(781), - [sym_none] = ACTIONS(781), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(801), - }, - [173] = { - [sym_list_splat_pattern] = STATE(1325), - [sym_primary_expression] = STATE(1053), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), - [sym_identifier] = ACTIONS(324), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_print] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_else] = ACTIONS(279), - [anon_sym_match] = ACTIONS(680), - [anon_sym_async] = ACTIONS(678), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(678), - [anon_sym_type] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(316), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(316), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(322), - [sym_integer] = ACTIONS(324), - [sym_float] = ACTIONS(322), - [anon_sym_await] = ACTIONS(686), - [sym_true] = ACTIONS(324), - [sym_false] = ACTIONS(324), - [sym_none] = ACTIONS(324), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(328), - }, - [174] = { - [sym_list_splat_pattern] = STATE(1390), - [sym_primary_expression] = STATE(1139), - [sym_binary_operator] = STATE(1389), - [sym_unary_operator] = STATE(1389), - [sym_attribute] = STATE(1389), - [sym_subscript] = STATE(1389), - [sym_call] = STATE(1389), - [sym_list] = STATE(1389), - [sym_set] = STATE(1389), - [sym_tuple] = STATE(1389), - [sym_dictionary] = STATE(1389), - [sym_list_comprehension] = STATE(1389), - [sym_dictionary_comprehension] = STATE(1389), - [sym_set_comprehension] = STATE(1389), - [sym_generator_expression] = STATE(1389), - [sym_parenthesized_expression] = STATE(1389), - [sym_concatenated_string] = STATE(1389), - [sym_string] = STATE(1044), - [sym_await] = STATE(1389), - [sym_identifier] = ACTIONS(757), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(759), - [anon_sym_RPAREN] = ACTIONS(284), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(761), - [anon_sym_print] = ACTIONS(763), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(765), - [anon_sym_async] = ACTIONS(763), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(763), - [anon_sym_type] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(771), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(775), - [sym_integer] = ACTIONS(757), - [sym_float] = ACTIONS(775), - [anon_sym_await] = ACTIONS(777), - [sym_true] = ACTIONS(757), - [sym_false] = ACTIONS(757), - [sym_none] = ACTIONS(757), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(779), - }, - [175] = { - [sym_list_splat_pattern] = STATE(1390), - [sym_primary_expression] = STATE(1139), - [sym_binary_operator] = STATE(1389), - [sym_unary_operator] = STATE(1389), - [sym_attribute] = STATE(1389), - [sym_subscript] = STATE(1389), - [sym_call] = STATE(1389), - [sym_list] = STATE(1389), - [sym_set] = STATE(1389), - [sym_tuple] = STATE(1389), - [sym_dictionary] = STATE(1389), - [sym_list_comprehension] = STATE(1389), - [sym_dictionary_comprehension] = STATE(1389), - [sym_set_comprehension] = STATE(1389), - [sym_generator_expression] = STATE(1389), - [sym_parenthesized_expression] = STATE(1389), - [sym_concatenated_string] = STATE(1389), - [sym_string] = STATE(1044), - [sym_await] = STATE(1389), - [sym_identifier] = ACTIONS(757), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(759), - [anon_sym_RPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(761), - [anon_sym_print] = ACTIONS(763), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(765), - [anon_sym_async] = ACTIONS(763), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(763), - [anon_sym_type] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(771), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(775), - [sym_integer] = ACTIONS(757), - [sym_float] = ACTIONS(775), - [anon_sym_await] = ACTIONS(777), - [sym_true] = ACTIONS(757), - [sym_false] = ACTIONS(757), - [sym_none] = ACTIONS(757), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(779), - }, - [176] = { - [sym_list_splat_pattern] = STATE(1200), - [sym_primary_expression] = STATE(1011), - [sym_binary_operator] = STATE(1226), - [sym_unary_operator] = STATE(1226), - [sym_attribute] = STATE(1226), - [sym_subscript] = STATE(1226), - [sym_call] = STATE(1226), - [sym_list] = STATE(1226), - [sym_set] = STATE(1226), - [sym_tuple] = STATE(1226), - [sym_dictionary] = STATE(1226), - [sym_list_comprehension] = STATE(1226), - [sym_dictionary_comprehension] = STATE(1226), - [sym_set_comprehension] = STATE(1226), - [sym_generator_expression] = STATE(1226), - [sym_parenthesized_expression] = STATE(1226), - [sym_concatenated_string] = STATE(1226), - [sym_string] = STATE(977), - [sym_await] = STATE(1226), - [sym_identifier] = ACTIONS(803), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_print] = ACTIONS(809), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_match] = ACTIONS(811), - [anon_sym_async] = ACTIONS(809), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(809), - [anon_sym_type] = ACTIONS(811), - [anon_sym_LBRACK] = ACTIONS(813), - [anon_sym_RBRACK] = ACTIONS(277), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(819), - [sym_integer] = ACTIONS(803), - [sym_float] = ACTIONS(819), - [anon_sym_await] = ACTIONS(821), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_none] = ACTIONS(803), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(823), - }, - [177] = { - [sym_list_splat_pattern] = STATE(1200), - [sym_primary_expression] = STATE(1011), - [sym_binary_operator] = STATE(1226), - [sym_unary_operator] = STATE(1226), - [sym_attribute] = STATE(1226), - [sym_subscript] = STATE(1226), - [sym_call] = STATE(1226), - [sym_list] = STATE(1226), - [sym_set] = STATE(1226), - [sym_tuple] = STATE(1226), - [sym_dictionary] = STATE(1226), - [sym_list_comprehension] = STATE(1226), - [sym_dictionary_comprehension] = STATE(1226), - [sym_set_comprehension] = STATE(1226), - [sym_generator_expression] = STATE(1226), - [sym_parenthesized_expression] = STATE(1226), - [sym_concatenated_string] = STATE(1226), - [sym_string] = STATE(977), - [sym_await] = STATE(1226), - [sym_identifier] = ACTIONS(803), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_print] = ACTIONS(809), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(811), - [anon_sym_async] = ACTIONS(809), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(809), - [anon_sym_type] = ACTIONS(811), - [anon_sym_LBRACK] = ACTIONS(813), - [anon_sym_RBRACK] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(819), - [sym_integer] = ACTIONS(803), - [sym_float] = ACTIONS(819), - [anon_sym_await] = ACTIONS(821), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_none] = ACTIONS(803), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(823), - }, - [178] = { - [sym_list_splat_pattern] = STATE(1325), - [sym_primary_expression] = STATE(1053), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), - [sym_identifier] = ACTIONS(324), - [anon_sym_DOT] = ACTIONS(669), - [anon_sym_LPAREN] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(667), - [anon_sym_as] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_print] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(710), - [anon_sym_if] = ACTIONS(674), - [anon_sym_COLON] = ACTIONS(667), - [anon_sym_else] = ACTIONS(674), - [anon_sym_match] = ACTIONS(680), - [anon_sym_async] = ACTIONS(678), - [anon_sym_in] = ACTIONS(674), - [anon_sym_STAR_STAR] = ACTIONS(710), - [anon_sym_exec] = ACTIONS(678), - [anon_sym_type] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_AT] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(710), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(316), - [anon_sym_not] = ACTIONS(674), - [anon_sym_and] = ACTIONS(674), - [anon_sym_or] = ACTIONS(674), - [anon_sym_SLASH] = ACTIONS(669), - [anon_sym_PERCENT] = ACTIONS(710), - [anon_sym_SLASH_SLASH] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(710), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_LT_LT] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(316), - [anon_sym_is] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(674), - [anon_sym_LT_EQ] = ACTIONS(667), - [anon_sym_EQ_EQ] = ACTIONS(667), - [anon_sym_BANG_EQ] = ACTIONS(667), - [anon_sym_GT_EQ] = ACTIONS(667), - [anon_sym_GT] = ACTIONS(674), - [anon_sym_LT_GT] = ACTIONS(667), - [sym_ellipsis] = ACTIONS(322), - [sym_integer] = ACTIONS(324), - [sym_float] = ACTIONS(322), - [anon_sym_await] = ACTIONS(686), - [sym_true] = ACTIONS(324), - [sym_false] = ACTIONS(324), - [sym_none] = ACTIONS(324), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(328), - }, - [179] = { - [sym_list_splat_pattern] = STATE(1316), - [sym_primary_expression] = STATE(1097), - [sym_binary_operator] = STATE(1418), - [sym_unary_operator] = STATE(1418), - [sym_attribute] = STATE(1418), - [sym_subscript] = STATE(1418), - [sym_call] = STATE(1418), - [sym_list] = STATE(1418), - [sym_set] = STATE(1418), - [sym_tuple] = STATE(1418), - [sym_dictionary] = STATE(1418), - [sym_list_comprehension] = STATE(1418), - [sym_dictionary_comprehension] = STATE(1418), - [sym_set_comprehension] = STATE(1418), - [sym_generator_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym_string] = STATE(1034), - [sym_await] = STATE(1418), - [sym_identifier] = ACTIONS(781), - [anon_sym_DOT] = ACTIONS(669), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_RPAREN] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(710), - [anon_sym_as] = ACTIONS(669), - [anon_sym_STAR] = ACTIONS(785), - [anon_sym_print] = ACTIONS(787), - [anon_sym_GT_GT] = ACTIONS(710), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(669), - [anon_sym_match] = ACTIONS(789), - [anon_sym_async] = ACTIONS(787), - [anon_sym_for] = ACTIONS(674), - [anon_sym_in] = ACTIONS(669), - [anon_sym_STAR_STAR] = ACTIONS(710), - [anon_sym_exec] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_LBRACK] = ACTIONS(791), - [anon_sym_AT] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(710), - [anon_sym_LBRACE] = ACTIONS(795), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_not] = ACTIONS(669), - [anon_sym_and] = ACTIONS(669), - [anon_sym_or] = ACTIONS(669), - [anon_sym_SLASH] = ACTIONS(669), - [anon_sym_PERCENT] = ACTIONS(710), - [anon_sym_SLASH_SLASH] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(710), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_LT_LT] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(793), - [anon_sym_is] = ACTIONS(669), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_LT_EQ] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(710), - [anon_sym_BANG_EQ] = ACTIONS(710), - [anon_sym_GT_EQ] = ACTIONS(710), - [anon_sym_GT] = ACTIONS(669), - [anon_sym_LT_GT] = ACTIONS(710), - [sym_ellipsis] = ACTIONS(797), - [sym_integer] = ACTIONS(781), - [sym_float] = ACTIONS(797), - [anon_sym_await] = ACTIONS(799), - [sym_true] = ACTIONS(781), - [sym_false] = ACTIONS(781), - [sym_none] = ACTIONS(781), + [sym_binary_operator] = STATE(1180), + [sym_unary_operator] = STATE(1180), + [sym_attribute] = STATE(1180), + [sym_subscript] = STATE(1180), + [sym_call] = STATE(1180), + [sym_list] = STATE(1180), + [sym_set] = STATE(1180), + [sym_tuple] = STATE(1180), + [sym_dictionary] = STATE(1180), + [sym_list_comprehension] = STATE(1180), + [sym_dictionary_comprehension] = STATE(1180), + [sym_set_comprehension] = STATE(1180), + [sym_generator_expression] = STATE(1180), + [sym_parenthesized_expression] = STATE(1180), + [sym_concatenated_string] = STATE(1180), + [sym_string] = STATE(958), + [sym_await] = STATE(1180), + [sym_identifier] = ACTIONS(733), + [anon_sym_DOT] = ACTIONS(267), + [anon_sym_LPAREN] = ACTIONS(735), + [anon_sym_COMMA] = ACTIONS(265), + [anon_sym_as] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(737), + [anon_sym_print] = ACTIONS(739), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_if] = ACTIONS(267), + [anon_sym_COLON] = ACTIONS(265), + [anon_sym_match] = ACTIONS(741), + [anon_sym_async] = ACTIONS(739), + [anon_sym_for] = ACTIONS(267), + [anon_sym_in] = ACTIONS(267), + [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_exec] = ACTIONS(739), + [anon_sym_type] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(745), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_RBRACE] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(745), + [anon_sym_not] = ACTIONS(267), + [anon_sym_and] = ACTIONS(267), + [anon_sym_or] = ACTIONS(267), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_is] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(265), + [anon_sym_EQ_EQ] = ACTIONS(265), + [anon_sym_BANG_EQ] = ACTIONS(265), + [anon_sym_GT_EQ] = ACTIONS(265), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_LT_GT] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(749), + [sym_integer] = ACTIONS(733), + [sym_float] = ACTIONS(749), + [anon_sym_await] = ACTIONS(751), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_none] = ACTIONS(733), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(801), - }, - [180] = { - [sym_list_splat_pattern] = STATE(1325), - [sym_primary_expression] = STATE(1053), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), - [sym_identifier] = ACTIONS(324), - [anon_sym_SEMI] = ACTIONS(320), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(320), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_print] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(320), - [anon_sym_match] = ACTIONS(680), - [anon_sym_async] = ACTIONS(678), - [anon_sym_STAR_STAR] = ACTIONS(279), - [anon_sym_exec] = ACTIONS(678), - [anon_sym_type] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(320), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(684), - [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(684), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(279), - [anon_sym_SLASH_SLASH] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(279), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(316), - [anon_sym_PLUS_EQ] = ACTIONS(320), - [anon_sym_DASH_EQ] = ACTIONS(320), - [anon_sym_STAR_EQ] = ACTIONS(320), - [anon_sym_SLASH_EQ] = ACTIONS(320), - [anon_sym_AT_EQ] = ACTIONS(320), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(320), - [anon_sym_PERCENT_EQ] = ACTIONS(320), - [anon_sym_STAR_STAR_EQ] = ACTIONS(320), - [anon_sym_GT_GT_EQ] = ACTIONS(320), - [anon_sym_LT_LT_EQ] = ACTIONS(320), - [anon_sym_AMP_EQ] = ACTIONS(320), - [anon_sym_CARET_EQ] = ACTIONS(320), - [anon_sym_PIPE_EQ] = ACTIONS(320), - [sym_ellipsis] = ACTIONS(322), - [sym_integer] = ACTIONS(324), - [sym_float] = ACTIONS(322), - [anon_sym_await] = ACTIONS(686), - [sym_true] = ACTIONS(324), - [sym_false] = ACTIONS(324), - [sym_none] = ACTIONS(324), + [sym_string_start] = ACTIONS(753), + }, + [STATE(171)] = { + [sym_list_splat_pattern] = STATE(1283), + [sym_primary_expression] = STATE(991), + [sym_binary_operator] = STATE(1280), + [sym_unary_operator] = STATE(1280), + [sym_attribute] = STATE(1280), + [sym_subscript] = STATE(1280), + [sym_call] = STATE(1280), + [sym_list] = STATE(1280), + [sym_set] = STATE(1280), + [sym_tuple] = STATE(1280), + [sym_dictionary] = STATE(1280), + [sym_list_comprehension] = STATE(1280), + [sym_dictionary_comprehension] = STATE(1280), + [sym_set_comprehension] = STATE(1280), + [sym_generator_expression] = STATE(1280), + [sym_parenthesized_expression] = STATE(1280), + [sym_concatenated_string] = STATE(1280), + [sym_string] = STATE(969), + [sym_await] = STATE(1280), + [sym_identifier] = ACTIONS(689), + [anon_sym_DOT] = ACTIONS(267), + [anon_sym_LPAREN] = ACTIONS(691), + [anon_sym_COMMA] = ACTIONS(265), + [anon_sym_as] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(693), + [anon_sym_print] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_if] = ACTIONS(267), + [anon_sym_COLON] = ACTIONS(265), + [anon_sym_match] = ACTIONS(697), + [anon_sym_async] = ACTIONS(695), + [anon_sym_for] = ACTIONS(267), + [anon_sym_in] = ACTIONS(267), + [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_exec] = ACTIONS(695), + [anon_sym_type] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_RBRACK] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(703), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_not] = ACTIONS(267), + [anon_sym_and] = ACTIONS(267), + [anon_sym_or] = ACTIONS(267), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_is] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(265), + [anon_sym_EQ_EQ] = ACTIONS(265), + [anon_sym_BANG_EQ] = ACTIONS(265), + [anon_sym_GT_EQ] = ACTIONS(265), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_LT_GT] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(705), + [sym_integer] = ACTIONS(689), + [sym_float] = ACTIONS(705), + [anon_sym_await] = ACTIONS(707), + [sym_true] = ACTIONS(689), + [sym_false] = ACTIONS(689), + [sym_none] = ACTIONS(689), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(320), - [sym_string_start] = ACTIONS(328), - }, - [181] = { - [sym_list_splat_pattern] = STATE(1229), - [sym_primary_expression] = STATE(999), - [sym_binary_operator] = STATE(1152), - [sym_unary_operator] = STATE(1152), - [sym_attribute] = STATE(1152), - [sym_subscript] = STATE(1152), - [sym_call] = STATE(1152), - [sym_list] = STATE(1152), - [sym_set] = STATE(1152), - [sym_tuple] = STATE(1152), - [sym_dictionary] = STATE(1152), - [sym_list_comprehension] = STATE(1152), - [sym_dictionary_comprehension] = STATE(1152), - [sym_set_comprehension] = STATE(1152), - [sym_generator_expression] = STATE(1152), - [sym_parenthesized_expression] = STATE(1152), - [sym_concatenated_string] = STATE(1152), - [sym_string] = STATE(980), - [sym_await] = STATE(1152), - [sym_identifier] = ACTIONS(713), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(715), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(717), - [anon_sym_print] = ACTIONS(719), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_match] = ACTIONS(721), - [anon_sym_async] = ACTIONS(719), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(719), - [anon_sym_type] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(725), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(727), - [anon_sym_RBRACE] = ACTIONS(277), - [anon_sym_PLUS] = ACTIONS(725), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(725), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(729), - [sym_integer] = ACTIONS(713), - [sym_float] = ACTIONS(729), - [anon_sym_await] = ACTIONS(731), - [sym_true] = ACTIONS(713), - [sym_false] = ACTIONS(713), - [sym_none] = ACTIONS(713), + [sym_string_start] = ACTIONS(709), + }, + [STATE(172)] = { + [sym_list_splat_pattern] = STATE(1372), + [sym_primary_expression] = STATE(1116), + [sym_binary_operator] = STATE(1377), + [sym_unary_operator] = STATE(1377), + [sym_attribute] = STATE(1377), + [sym_subscript] = STATE(1377), + [sym_call] = STATE(1377), + [sym_list] = STATE(1377), + [sym_set] = STATE(1377), + [sym_tuple] = STATE(1377), + [sym_dictionary] = STATE(1377), + [sym_list_comprehension] = STATE(1377), + [sym_dictionary_comprehension] = STATE(1377), + [sym_set_comprehension] = STATE(1377), + [sym_generator_expression] = STATE(1377), + [sym_parenthesized_expression] = STATE(1377), + [sym_concatenated_string] = STATE(1377), + [sym_string] = STATE(984), + [sym_await] = STATE(1377), + [sym_identifier] = ACTIONS(312), + [anon_sym_DOT] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_COMMA] = ACTIONS(643), + [anon_sym_as] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_print] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(686), + [anon_sym_if] = ACTIONS(650), + [anon_sym_COLON] = ACTIONS(643), + [anon_sym_else] = ACTIONS(650), + [anon_sym_match] = ACTIONS(656), + [anon_sym_async] = ACTIONS(654), + [anon_sym_in] = ACTIONS(650), + [anon_sym_STAR_STAR] = ACTIONS(686), + [anon_sym_exec] = ACTIONS(654), + [anon_sym_type] = ACTIONS(656), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_LBRACK] = ACTIONS(658), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(304), + [anon_sym_PIPE] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(299), + [anon_sym_PLUS] = ACTIONS(304), + [anon_sym_not] = ACTIONS(650), + [anon_sym_and] = ACTIONS(650), + [anon_sym_or] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_PERCENT] = ACTIONS(686), + [anon_sym_SLASH_SLASH] = ACTIONS(686), + [anon_sym_AMP] = ACTIONS(686), + [anon_sym_CARET] = ACTIONS(686), + [anon_sym_LT_LT] = ACTIONS(686), + [anon_sym_TILDE] = ACTIONS(304), + [anon_sym_is] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_LT_EQ] = ACTIONS(643), + [anon_sym_EQ_EQ] = ACTIONS(643), + [anon_sym_BANG_EQ] = ACTIONS(643), + [anon_sym_GT_EQ] = ACTIONS(643), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT_GT] = ACTIONS(643), + [sym_ellipsis] = ACTIONS(310), + [sym_integer] = ACTIONS(312), + [sym_float] = ACTIONS(310), + [anon_sym_await] = ACTIONS(662), + [sym_true] = ACTIONS(312), + [sym_false] = ACTIONS(312), + [sym_none] = ACTIONS(312), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(733), - }, - [182] = { - [sym_list_splat_pattern] = STATE(1325), - [sym_primary_expression] = STATE(1053), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), - [sym_identifier] = ACTIONS(324), - [anon_sym_DOT] = ACTIONS(669), - [anon_sym_LPAREN] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(667), - [anon_sym_as] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_print] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(710), - [anon_sym_if] = ACTIONS(674), - [anon_sym_COLON] = ACTIONS(667), - [anon_sym_match] = ACTIONS(680), - [anon_sym_async] = ACTIONS(678), - [anon_sym_for] = ACTIONS(674), - [anon_sym_in] = ACTIONS(674), - [anon_sym_STAR_STAR] = ACTIONS(710), - [anon_sym_exec] = ACTIONS(678), - [anon_sym_type] = ACTIONS(680), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_RBRACK] = ACTIONS(667), - [anon_sym_AT] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(710), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(316), - [anon_sym_not] = ACTIONS(674), - [anon_sym_and] = ACTIONS(674), - [anon_sym_or] = ACTIONS(674), - [anon_sym_SLASH] = ACTIONS(669), - [anon_sym_PERCENT] = ACTIONS(710), - [anon_sym_SLASH_SLASH] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(710), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_LT_LT] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(316), - [anon_sym_is] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(674), - [anon_sym_LT_EQ] = ACTIONS(667), - [anon_sym_EQ_EQ] = ACTIONS(667), - [anon_sym_BANG_EQ] = ACTIONS(667), - [anon_sym_GT_EQ] = ACTIONS(667), - [anon_sym_GT] = ACTIONS(674), - [anon_sym_LT_GT] = ACTIONS(667), - [sym_ellipsis] = ACTIONS(322), - [sym_integer] = ACTIONS(324), - [sym_float] = ACTIONS(322), - [anon_sym_await] = ACTIONS(686), - [sym_true] = ACTIONS(324), - [sym_false] = ACTIONS(324), - [sym_none] = ACTIONS(324), + [sym_string_start] = ACTIONS(316), + }, + [STATE(173)] = { + [sym_list_splat_pattern] = STATE(1372), + [sym_primary_expression] = STATE(1116), + [sym_binary_operator] = STATE(1377), + [sym_unary_operator] = STATE(1377), + [sym_attribute] = STATE(1377), + [sym_subscript] = STATE(1377), + [sym_call] = STATE(1377), + [sym_list] = STATE(1377), + [sym_set] = STATE(1377), + [sym_tuple] = STATE(1377), + [sym_dictionary] = STATE(1377), + [sym_list_comprehension] = STATE(1377), + [sym_dictionary_comprehension] = STATE(1377), + [sym_set_comprehension] = STATE(1377), + [sym_generator_expression] = STATE(1377), + [sym_parenthesized_expression] = STATE(1377), + [sym_concatenated_string] = STATE(1377), + [sym_string] = STATE(984), + [sym_await] = STATE(1377), + [sym_identifier] = ACTIONS(312), + [anon_sym_DOT] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_COMMA] = ACTIONS(643), + [anon_sym_as] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_print] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(686), + [anon_sym_if] = ACTIONS(650), + [anon_sym_COLON] = ACTIONS(643), + [anon_sym_match] = ACTIONS(656), + [anon_sym_async] = ACTIONS(654), + [anon_sym_for] = ACTIONS(650), + [anon_sym_in] = ACTIONS(650), + [anon_sym_STAR_STAR] = ACTIONS(686), + [anon_sym_exec] = ACTIONS(654), + [anon_sym_type] = ACTIONS(656), + [anon_sym_LBRACK] = ACTIONS(658), + [anon_sym_RBRACK] = ACTIONS(643), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(304), + [anon_sym_PIPE] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(299), + [anon_sym_PLUS] = ACTIONS(304), + [anon_sym_not] = ACTIONS(650), + [anon_sym_and] = ACTIONS(650), + [anon_sym_or] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_PERCENT] = ACTIONS(686), + [anon_sym_SLASH_SLASH] = ACTIONS(686), + [anon_sym_AMP] = ACTIONS(686), + [anon_sym_CARET] = ACTIONS(686), + [anon_sym_LT_LT] = ACTIONS(686), + [anon_sym_TILDE] = ACTIONS(304), + [anon_sym_is] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_LT_EQ] = ACTIONS(643), + [anon_sym_EQ_EQ] = ACTIONS(643), + [anon_sym_BANG_EQ] = ACTIONS(643), + [anon_sym_GT_EQ] = ACTIONS(643), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT_GT] = ACTIONS(643), + [sym_ellipsis] = ACTIONS(310), + [sym_integer] = ACTIONS(312), + [sym_float] = ACTIONS(310), + [anon_sym_await] = ACTIONS(662), + [sym_true] = ACTIONS(312), + [sym_false] = ACTIONS(312), + [sym_none] = ACTIONS(312), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(328), - }, - [183] = { - [sym_list_splat_pattern] = STATE(1451), - [sym_primary_expression] = STATE(1252), - [sym_binary_operator] = STATE(1462), - [sym_unary_operator] = STATE(1462), - [sym_attribute] = STATE(1462), - [sym_subscript] = STATE(1462), - [sym_call] = STATE(1462), - [sym_list] = STATE(1462), - [sym_set] = STATE(1462), - [sym_tuple] = STATE(1462), - [sym_dictionary] = STATE(1462), - [sym_list_comprehension] = STATE(1462), - [sym_dictionary_comprehension] = STATE(1462), - [sym_set_comprehension] = STATE(1462), - [sym_generator_expression] = STATE(1462), - [sym_parenthesized_expression] = STATE(1462), - [sym_concatenated_string] = STATE(1462), - [sym_string] = STATE(1110), - [sym_await] = STATE(1462), - [sym_identifier] = ACTIONS(735), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(737), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_print] = ACTIONS(741), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(279), - [anon_sym_match] = ACTIONS(743), - [anon_sym_async] = ACTIONS(741), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(741), - [anon_sym_type] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(745), - [anon_sym_RBRACK] = ACTIONS(277), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(747), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(751), - [sym_integer] = ACTIONS(735), - [sym_float] = ACTIONS(751), - [anon_sym_await] = ACTIONS(753), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_none] = ACTIONS(735), + [sym_string_start] = ACTIONS(316), + }, + [STATE(174)] = { + [sym_list_splat_pattern] = STATE(1444), + [sym_primary_expression] = STATE(1202), + [sym_binary_operator] = STATE(1441), + [sym_unary_operator] = STATE(1441), + [sym_attribute] = STATE(1441), + [sym_subscript] = STATE(1441), + [sym_call] = STATE(1441), + [sym_list] = STATE(1441), + [sym_set] = STATE(1441), + [sym_tuple] = STATE(1441), + [sym_dictionary] = STATE(1441), + [sym_list_comprehension] = STATE(1441), + [sym_dictionary_comprehension] = STATE(1441), + [sym_set_comprehension] = STATE(1441), + [sym_generator_expression] = STATE(1441), + [sym_parenthesized_expression] = STATE(1441), + [sym_concatenated_string] = STATE(1441), + [sym_string] = STATE(1081), + [sym_await] = STATE(1441), + [sym_identifier] = ACTIONS(755), + [anon_sym_DOT] = ACTIONS(267), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_COMMA] = ACTIONS(265), + [anon_sym_as] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_print] = ACTIONS(761), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_COLON_EQ] = ACTIONS(280), + [anon_sym_if] = ACTIONS(267), + [anon_sym_COLON] = ACTIONS(267), + [anon_sym_match] = ACTIONS(763), + [anon_sym_async] = ACTIONS(761), + [anon_sym_in] = ACTIONS(267), + [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_exec] = ACTIONS(761), + [anon_sym_type] = ACTIONS(763), + [anon_sym_LBRACK] = ACTIONS(765), + [anon_sym_RBRACK] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_not] = ACTIONS(267), + [anon_sym_and] = ACTIONS(267), + [anon_sym_or] = ACTIONS(267), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_is] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(265), + [anon_sym_EQ_EQ] = ACTIONS(265), + [anon_sym_BANG_EQ] = ACTIONS(265), + [anon_sym_GT_EQ] = ACTIONS(265), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_LT_GT] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(771), + [sym_integer] = ACTIONS(755), + [sym_float] = ACTIONS(771), + [anon_sym_await] = ACTIONS(773), + [sym_true] = ACTIONS(755), + [sym_false] = ACTIONS(755), + [sym_none] = ACTIONS(755), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(755), - }, - [184] = { - [sym_list_splat_pattern] = STATE(1316), - [sym_primary_expression] = STATE(1097), - [sym_binary_operator] = STATE(1418), - [sym_unary_operator] = STATE(1418), - [sym_attribute] = STATE(1418), - [sym_subscript] = STATE(1418), - [sym_call] = STATE(1418), - [sym_list] = STATE(1418), - [sym_set] = STATE(1418), - [sym_tuple] = STATE(1418), - [sym_dictionary] = STATE(1418), - [sym_list_comprehension] = STATE(1418), - [sym_dictionary_comprehension] = STATE(1418), - [sym_set_comprehension] = STATE(1418), - [sym_generator_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym_string] = STATE(1034), - [sym_await] = STATE(1418), - [sym_identifier] = ACTIONS(781), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_RPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(785), - [anon_sym_print] = ACTIONS(787), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_match] = ACTIONS(789), - [anon_sym_async] = ACTIONS(787), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(791), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(795), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(793), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(797), - [sym_integer] = ACTIONS(781), - [sym_float] = ACTIONS(797), - [anon_sym_await] = ACTIONS(799), - [sym_true] = ACTIONS(781), - [sym_false] = ACTIONS(781), - [sym_none] = ACTIONS(781), + [sym_string_start] = ACTIONS(775), + }, + [STATE(175)] = { + [sym_list_splat_pattern] = STATE(1301), + [sym_primary_expression] = STATE(1071), + [sym_binary_operator] = STATE(1381), + [sym_unary_operator] = STATE(1381), + [sym_attribute] = STATE(1381), + [sym_subscript] = STATE(1381), + [sym_call] = STATE(1381), + [sym_list] = STATE(1381), + [sym_set] = STATE(1381), + [sym_tuple] = STATE(1381), + [sym_dictionary] = STATE(1381), + [sym_list_comprehension] = STATE(1381), + [sym_dictionary_comprehension] = STATE(1381), + [sym_set_comprehension] = STATE(1381), + [sym_generator_expression] = STATE(1381), + [sym_parenthesized_expression] = STATE(1381), + [sym_concatenated_string] = STATE(1381), + [sym_string] = STATE(995), + [sym_await] = STATE(1381), + [sym_identifier] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(267), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(265), + [anon_sym_COMMA] = ACTIONS(265), + [anon_sym_as] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_print] = ACTIONS(717), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_if] = ACTIONS(267), + [anon_sym_COLON] = ACTIONS(265), + [anon_sym_match] = ACTIONS(719), + [anon_sym_async] = ACTIONS(717), + [anon_sym_in] = ACTIONS(267), + [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_exec] = ACTIONS(717), + [anon_sym_type] = ACTIONS(719), + [anon_sym_EQ] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_not] = ACTIONS(267), + [anon_sym_and] = ACTIONS(267), + [anon_sym_or] = ACTIONS(267), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_TILDE] = ACTIONS(723), + [anon_sym_is] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(265), + [anon_sym_EQ_EQ] = ACTIONS(265), + [anon_sym_BANG_EQ] = ACTIONS(265), + [anon_sym_GT_EQ] = ACTIONS(265), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_LT_GT] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(727), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(727), + [anon_sym_await] = ACTIONS(729), + [sym_true] = ACTIONS(711), + [sym_false] = ACTIONS(711), + [sym_none] = ACTIONS(711), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(801), - }, - [185] = { - [sym_list_splat_pattern] = STATE(1390), - [sym_primary_expression] = STATE(1139), - [sym_binary_operator] = STATE(1389), - [sym_unary_operator] = STATE(1389), - [sym_attribute] = STATE(1389), - [sym_subscript] = STATE(1389), - [sym_call] = STATE(1389), - [sym_list] = STATE(1389), - [sym_set] = STATE(1389), - [sym_tuple] = STATE(1389), - [sym_dictionary] = STATE(1389), - [sym_list_comprehension] = STATE(1389), - [sym_dictionary_comprehension] = STATE(1389), - [sym_set_comprehension] = STATE(1389), - [sym_generator_expression] = STATE(1389), - [sym_parenthesized_expression] = STATE(1389), - [sym_concatenated_string] = STATE(1389), - [sym_string] = STATE(1044), - [sym_await] = STATE(1389), - [sym_identifier] = ACTIONS(757), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(759), - [anon_sym_RPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(761), - [anon_sym_print] = ACTIONS(763), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(765), - [anon_sym_async] = ACTIONS(763), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(763), - [anon_sym_type] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(771), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(775), - [sym_integer] = ACTIONS(757), - [sym_float] = ACTIONS(775), - [anon_sym_await] = ACTIONS(777), - [sym_true] = ACTIONS(757), - [sym_false] = ACTIONS(757), - [sym_none] = ACTIONS(757), + [sym_string_start] = ACTIONS(731), + }, + [STATE(176)] = { + [sym_list_splat_pattern] = STATE(1320), + [sym_primary_expression] = STATE(1056), + [sym_binary_operator] = STATE(1331), + [sym_unary_operator] = STATE(1331), + [sym_attribute] = STATE(1331), + [sym_subscript] = STATE(1331), + [sym_call] = STATE(1331), + [sym_list] = STATE(1331), + [sym_set] = STATE(1331), + [sym_tuple] = STATE(1331), + [sym_dictionary] = STATE(1331), + [sym_list_comprehension] = STATE(1331), + [sym_dictionary_comprehension] = STATE(1331), + [sym_set_comprehension] = STATE(1331), + [sym_generator_expression] = STATE(1331), + [sym_parenthesized_expression] = STATE(1331), + [sym_concatenated_string] = STATE(1331), + [sym_string] = STATE(985), + [sym_await] = STATE(1331), + [sym_identifier] = ACTIONS(777), + [anon_sym_DOT] = ACTIONS(267), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(265), + [anon_sym_COMMA] = ACTIONS(265), + [anon_sym_as] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_print] = ACTIONS(783), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_if] = ACTIONS(267), + [anon_sym_match] = ACTIONS(785), + [anon_sym_async] = ACTIONS(783), + [anon_sym_for] = ACTIONS(267), + [anon_sym_in] = ACTIONS(267), + [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_exec] = ACTIONS(783), + [anon_sym_type] = ACTIONS(785), + [anon_sym_LBRACK] = ACTIONS(789), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_not] = ACTIONS(267), + [anon_sym_and] = ACTIONS(267), + [anon_sym_or] = ACTIONS(267), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_TILDE] = ACTIONS(791), + [anon_sym_is] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(265), + [anon_sym_EQ_EQ] = ACTIONS(265), + [anon_sym_BANG_EQ] = ACTIONS(265), + [anon_sym_GT_EQ] = ACTIONS(265), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_LT_GT] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(795), + [sym_integer] = ACTIONS(777), + [sym_float] = ACTIONS(795), + [anon_sym_await] = ACTIONS(797), + [sym_true] = ACTIONS(777), + [sym_false] = ACTIONS(777), + [sym_none] = ACTIONS(777), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(779), - }, - [186] = { - [sym_list_splat_pattern] = STATE(1451), - [sym_primary_expression] = STATE(1252), - [sym_binary_operator] = STATE(1462), - [sym_unary_operator] = STATE(1462), - [sym_attribute] = STATE(1462), - [sym_subscript] = STATE(1462), - [sym_call] = STATE(1462), - [sym_list] = STATE(1462), - [sym_set] = STATE(1462), - [sym_tuple] = STATE(1462), - [sym_dictionary] = STATE(1462), - [sym_list_comprehension] = STATE(1462), - [sym_dictionary_comprehension] = STATE(1462), - [sym_set_comprehension] = STATE(1462), - [sym_generator_expression] = STATE(1462), - [sym_parenthesized_expression] = STATE(1462), - [sym_concatenated_string] = STATE(1462), - [sym_string] = STATE(1110), - [sym_await] = STATE(1462), - [sym_identifier] = ACTIONS(735), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(737), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_print] = ACTIONS(741), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_match] = ACTIONS(743), - [anon_sym_async] = ACTIONS(741), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(741), - [anon_sym_type] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(745), - [anon_sym_RBRACK] = ACTIONS(277), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(747), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(751), - [sym_integer] = ACTIONS(735), - [sym_float] = ACTIONS(751), - [anon_sym_await] = ACTIONS(753), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_none] = ACTIONS(735), + [sym_string_start] = ACTIONS(799), + }, + [STATE(177)] = { + [sym_list_splat_pattern] = STATE(1444), + [sym_primary_expression] = STATE(1202), + [sym_binary_operator] = STATE(1441), + [sym_unary_operator] = STATE(1441), + [sym_attribute] = STATE(1441), + [sym_subscript] = STATE(1441), + [sym_call] = STATE(1441), + [sym_list] = STATE(1441), + [sym_set] = STATE(1441), + [sym_tuple] = STATE(1441), + [sym_dictionary] = STATE(1441), + [sym_list_comprehension] = STATE(1441), + [sym_dictionary_comprehension] = STATE(1441), + [sym_set_comprehension] = STATE(1441), + [sym_generator_expression] = STATE(1441), + [sym_parenthesized_expression] = STATE(1441), + [sym_concatenated_string] = STATE(1441), + [sym_string] = STATE(1081), + [sym_await] = STATE(1441), + [sym_identifier] = ACTIONS(755), + [anon_sym_DOT] = ACTIONS(267), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_COMMA] = ACTIONS(265), + [anon_sym_as] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_print] = ACTIONS(761), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_if] = ACTIONS(267), + [anon_sym_COLON] = ACTIONS(265), + [anon_sym_match] = ACTIONS(763), + [anon_sym_async] = ACTIONS(761), + [anon_sym_in] = ACTIONS(267), + [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_exec] = ACTIONS(761), + [anon_sym_type] = ACTIONS(763), + [anon_sym_LBRACK] = ACTIONS(765), + [anon_sym_RBRACK] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_not] = ACTIONS(267), + [anon_sym_and] = ACTIONS(267), + [anon_sym_or] = ACTIONS(267), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_is] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(265), + [anon_sym_EQ_EQ] = ACTIONS(265), + [anon_sym_BANG_EQ] = ACTIONS(265), + [anon_sym_GT_EQ] = ACTIONS(265), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_LT_GT] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(771), + [sym_integer] = ACTIONS(755), + [sym_float] = ACTIONS(771), + [anon_sym_await] = ACTIONS(773), + [sym_true] = ACTIONS(755), + [sym_false] = ACTIONS(755), + [sym_none] = ACTIONS(755), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(755), - }, - [187] = { - [sym_list_splat_pattern] = STATE(1325), - [sym_primary_expression] = STATE(1053), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), - [sym_identifier] = ACTIONS(324), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(320), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_print] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(320), - [anon_sym_match] = ACTIONS(680), - [anon_sym_async] = ACTIONS(678), - [anon_sym_STAR_STAR] = ACTIONS(279), - [anon_sym_exec] = ACTIONS(678), - [anon_sym_type] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(320), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(684), - [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(684), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(279), - [anon_sym_SLASH_SLASH] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(279), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(316), - [anon_sym_PLUS_EQ] = ACTIONS(320), - [anon_sym_DASH_EQ] = ACTIONS(320), - [anon_sym_STAR_EQ] = ACTIONS(320), - [anon_sym_SLASH_EQ] = ACTIONS(320), - [anon_sym_AT_EQ] = ACTIONS(320), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(320), - [anon_sym_PERCENT_EQ] = ACTIONS(320), - [anon_sym_STAR_STAR_EQ] = ACTIONS(320), - [anon_sym_GT_GT_EQ] = ACTIONS(320), - [anon_sym_LT_LT_EQ] = ACTIONS(320), - [anon_sym_AMP_EQ] = ACTIONS(320), - [anon_sym_CARET_EQ] = ACTIONS(320), - [anon_sym_PIPE_EQ] = ACTIONS(320), - [sym_ellipsis] = ACTIONS(322), - [sym_integer] = ACTIONS(324), - [sym_float] = ACTIONS(322), - [anon_sym_await] = ACTIONS(686), - [sym_true] = ACTIONS(324), - [sym_false] = ACTIONS(324), - [sym_none] = ACTIONS(324), + [sym_string_start] = ACTIONS(775), + }, + [STATE(178)] = { + [sym_list_splat_pattern] = STATE(1372), + [sym_primary_expression] = STATE(1116), + [sym_binary_operator] = STATE(1377), + [sym_unary_operator] = STATE(1377), + [sym_attribute] = STATE(1377), + [sym_subscript] = STATE(1377), + [sym_call] = STATE(1377), + [sym_list] = STATE(1377), + [sym_set] = STATE(1377), + [sym_tuple] = STATE(1377), + [sym_dictionary] = STATE(1377), + [sym_list_comprehension] = STATE(1377), + [sym_dictionary_comprehension] = STATE(1377), + [sym_set_comprehension] = STATE(1377), + [sym_generator_expression] = STATE(1377), + [sym_parenthesized_expression] = STATE(1377), + [sym_concatenated_string] = STATE(1377), + [sym_string] = STATE(984), + [sym_await] = STATE(1377), + [sym_identifier] = ACTIONS(312), + [anon_sym_DOT] = ACTIONS(267), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_COMMA] = ACTIONS(308), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_print] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(267), + [anon_sym_COLON] = ACTIONS(308), + [anon_sym_match] = ACTIONS(656), + [anon_sym_async] = ACTIONS(654), + [anon_sym_STAR_STAR] = ACTIONS(267), + [anon_sym_exec] = ACTIONS(654), + [anon_sym_type] = ACTIONS(656), + [anon_sym_EQ] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(658), + [anon_sym_AT] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_PIPE] = ACTIONS(267), + [anon_sym_LBRACE] = ACTIONS(299), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(267), + [anon_sym_SLASH_SLASH] = ACTIONS(267), + [anon_sym_AMP] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_LT_LT] = ACTIONS(267), + [anon_sym_TILDE] = ACTIONS(304), + [anon_sym_PLUS_EQ] = ACTIONS(308), + [anon_sym_DASH_EQ] = ACTIONS(308), + [anon_sym_STAR_EQ] = ACTIONS(308), + [anon_sym_SLASH_EQ] = ACTIONS(308), + [anon_sym_AT_EQ] = ACTIONS(308), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(308), + [anon_sym_PERCENT_EQ] = ACTIONS(308), + [anon_sym_STAR_STAR_EQ] = ACTIONS(308), + [anon_sym_GT_GT_EQ] = ACTIONS(308), + [anon_sym_LT_LT_EQ] = ACTIONS(308), + [anon_sym_AMP_EQ] = ACTIONS(308), + [anon_sym_CARET_EQ] = ACTIONS(308), + [anon_sym_PIPE_EQ] = ACTIONS(308), + [sym_ellipsis] = ACTIONS(310), + [sym_integer] = ACTIONS(312), + [sym_float] = ACTIONS(310), + [anon_sym_await] = ACTIONS(662), + [sym_true] = ACTIONS(312), + [sym_false] = ACTIONS(312), + [sym_none] = ACTIONS(312), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(328), - }, - [188] = { - [sym_list_splat_pattern] = STATE(1325), - [sym_primary_expression] = STATE(1053), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), - [sym_identifier] = ACTIONS(324), - [anon_sym_DOT] = ACTIONS(669), - [anon_sym_LPAREN] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_print] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(669), - [anon_sym_COLON] = ACTIONS(667), - [anon_sym_match] = ACTIONS(680), - [anon_sym_async] = ACTIONS(678), - [anon_sym_STAR_STAR] = ACTIONS(669), - [anon_sym_exec] = ACTIONS(678), - [anon_sym_type] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_AT] = ACTIONS(669), - [anon_sym_DASH] = ACTIONS(684), - [anon_sym_PIPE] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(684), - [anon_sym_SLASH] = ACTIONS(669), - [anon_sym_PERCENT] = ACTIONS(669), - [anon_sym_SLASH_SLASH] = ACTIONS(669), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_CARET] = ACTIONS(669), - [anon_sym_LT_LT] = ACTIONS(669), - [anon_sym_TILDE] = ACTIONS(316), - [anon_sym_PLUS_EQ] = ACTIONS(667), - [anon_sym_DASH_EQ] = ACTIONS(667), - [anon_sym_STAR_EQ] = ACTIONS(667), - [anon_sym_SLASH_EQ] = ACTIONS(667), - [anon_sym_AT_EQ] = ACTIONS(667), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(667), - [anon_sym_PERCENT_EQ] = ACTIONS(667), - [anon_sym_STAR_STAR_EQ] = ACTIONS(667), - [anon_sym_GT_GT_EQ] = ACTIONS(667), - [anon_sym_LT_LT_EQ] = ACTIONS(667), - [anon_sym_AMP_EQ] = ACTIONS(667), - [anon_sym_CARET_EQ] = ACTIONS(667), - [anon_sym_PIPE_EQ] = ACTIONS(667), - [sym_ellipsis] = ACTIONS(322), - [sym_integer] = ACTIONS(324), - [sym_float] = ACTIONS(322), - [anon_sym_await] = ACTIONS(686), - [sym_true] = ACTIONS(324), - [sym_false] = ACTIONS(324), - [sym_none] = ACTIONS(324), + [sym_string_start] = ACTIONS(316), + }, + [STATE(179)] = { + [sym_list_splat_pattern] = STATE(1372), + [sym_primary_expression] = STATE(1116), + [sym_binary_operator] = STATE(1377), + [sym_unary_operator] = STATE(1377), + [sym_attribute] = STATE(1377), + [sym_subscript] = STATE(1377), + [sym_call] = STATE(1377), + [sym_list] = STATE(1377), + [sym_set] = STATE(1377), + [sym_tuple] = STATE(1377), + [sym_dictionary] = STATE(1377), + [sym_list_comprehension] = STATE(1377), + [sym_dictionary_comprehension] = STATE(1377), + [sym_set_comprehension] = STATE(1377), + [sym_generator_expression] = STATE(1377), + [sym_parenthesized_expression] = STATE(1377), + [sym_concatenated_string] = STATE(1377), + [sym_string] = STATE(984), + [sym_await] = STATE(1377), + [sym_identifier] = ACTIONS(312), + [anon_sym_DOT] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_COMMA] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_print] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(645), + [anon_sym_COLON] = ACTIONS(643), + [anon_sym_match] = ACTIONS(656), + [anon_sym_async] = ACTIONS(654), + [anon_sym_STAR_STAR] = ACTIONS(645), + [anon_sym_exec] = ACTIONS(654), + [anon_sym_type] = ACTIONS(656), + [anon_sym_EQ] = ACTIONS(643), + [anon_sym_LBRACK] = ACTIONS(658), + [anon_sym_AT] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_PIPE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(299), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_PERCENT] = ACTIONS(645), + [anon_sym_SLASH_SLASH] = ACTIONS(645), + [anon_sym_AMP] = ACTIONS(645), + [anon_sym_CARET] = ACTIONS(645), + [anon_sym_LT_LT] = ACTIONS(645), + [anon_sym_TILDE] = ACTIONS(304), + [anon_sym_PLUS_EQ] = ACTIONS(643), + [anon_sym_DASH_EQ] = ACTIONS(643), + [anon_sym_STAR_EQ] = ACTIONS(643), + [anon_sym_SLASH_EQ] = ACTIONS(643), + [anon_sym_AT_EQ] = ACTIONS(643), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(643), + [anon_sym_PERCENT_EQ] = ACTIONS(643), + [anon_sym_STAR_STAR_EQ] = ACTIONS(643), + [anon_sym_GT_GT_EQ] = ACTIONS(643), + [anon_sym_LT_LT_EQ] = ACTIONS(643), + [anon_sym_AMP_EQ] = ACTIONS(643), + [anon_sym_CARET_EQ] = ACTIONS(643), + [anon_sym_PIPE_EQ] = ACTIONS(643), + [sym_ellipsis] = ACTIONS(310), + [sym_integer] = ACTIONS(312), + [sym_float] = ACTIONS(310), + [anon_sym_await] = ACTIONS(662), + [sym_true] = ACTIONS(312), + [sym_false] = ACTIONS(312), + [sym_none] = ACTIONS(312), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(328), - }, - [189] = { - [sym_named_expression] = STATE(1695), - [sym__named_expression_lhs] = STATE(2649), - [sym_list_splat] = STATE(2377), - [sym_parenthesized_list_splat] = STATE(2377), - [sym_list_splat_pattern] = STATE(1200), - [sym_as_pattern] = STATE(1695), - [sym_expression] = STATE(1663), - [sym_primary_expression] = STATE(928), - [sym_not_operator] = STATE(1695), - [sym_boolean_operator] = STATE(1695), - [sym_binary_operator] = STATE(1226), - [sym_unary_operator] = STATE(1226), - [sym_comparison_operator] = STATE(1695), - [sym_lambda] = STATE(1695), - [sym_yield] = STATE(2377), - [sym_attribute] = STATE(1226), - [sym_subscript] = STATE(1226), - [sym_call] = STATE(1226), - [sym_type] = STATE(1950), - [sym_splat_type] = STATE(2064), - [sym_generic_type] = STATE(2064), - [sym_union_type] = STATE(2064), - [sym_constrained_type] = STATE(2064), - [sym_member_type] = STATE(2064), - [sym_list] = STATE(1226), - [sym_set] = STATE(1226), - [sym_tuple] = STATE(1226), - [sym_dictionary] = STATE(1226), - [sym_list_comprehension] = STATE(1226), - [sym_dictionary_comprehension] = STATE(1226), - [sym_set_comprehension] = STATE(1226), - [sym_generator_expression] = STATE(1226), - [sym_parenthesized_expression] = STATE(1226), - [sym__collection_elements] = STATE(2685), - [sym_conditional_expression] = STATE(1695), - [sym_concatenated_string] = STATE(1226), - [sym_string] = STATE(977), - [sym_await] = STATE(1226), - [sym_identifier] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(827), - [anon_sym_STAR] = ACTIONS(829), - [anon_sym_print] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_async] = ACTIONS(831), - [anon_sym_STAR_STAR] = ACTIONS(835), - [anon_sym_exec] = ACTIONS(831), - [anon_sym_type] = ACTIONS(837), - [anon_sym_LBRACK] = ACTIONS(813), - [anon_sym_RBRACK] = ACTIONS(839), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_not] = ACTIONS(841), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_lambda] = ACTIONS(843), - [anon_sym_yield] = ACTIONS(845), - [sym_ellipsis] = ACTIONS(819), - [sym_integer] = ACTIONS(803), - [sym_float] = ACTIONS(819), - [anon_sym_await] = ACTIONS(847), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_none] = ACTIONS(803), + [sym_string_start] = ACTIONS(316), + }, + [STATE(180)] = { + [sym_named_expression] = STATE(1710), + [sym__named_expression_lhs] = STATE(2716), + [sym_list_splat] = STATE(2280), + [sym_parenthesized_list_splat] = STATE(2280), + [sym_list_splat_pattern] = STATE(1283), + [sym_as_pattern] = STATE(1710), + [sym_expression] = STATE(1645), + [sym_primary_expression] = STATE(857), + [sym_not_operator] = STATE(1710), + [sym_boolean_operator] = STATE(1710), + [sym_binary_operator] = STATE(1280), + [sym_unary_operator] = STATE(1280), + [sym_comparison_operator] = STATE(1710), + [sym_lambda] = STATE(1710), + [sym_yield] = STATE(2280), + [sym_attribute] = STATE(1280), + [sym_subscript] = STATE(1280), + [sym_call] = STATE(1280), + [sym_type] = STATE(1931), + [sym_splat_type] = STATE(2046), + [sym_generic_type] = STATE(2046), + [sym_union_type] = STATE(2046), + [sym_constrained_type] = STATE(2046), + [sym_member_type] = STATE(2046), + [sym_list] = STATE(1280), + [sym_set] = STATE(1280), + [sym_tuple] = STATE(1280), + [sym_dictionary] = STATE(1280), + [sym_list_comprehension] = STATE(1280), + [sym_dictionary_comprehension] = STATE(1280), + [sym_set_comprehension] = STATE(1280), + [sym_generator_expression] = STATE(1280), + [sym_parenthesized_expression] = STATE(1280), + [sym__collection_elements] = STATE(2689), + [sym_conditional_expression] = STATE(1710), + [sym_concatenated_string] = STATE(1280), + [sym_string] = STATE(969), + [sym_await] = STATE(1280), + [sym_identifier] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(803), + [anon_sym_STAR] = ACTIONS(805), + [anon_sym_print] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_async] = ACTIONS(807), + [anon_sym_STAR_STAR] = ACTIONS(811), + [anon_sym_exec] = ACTIONS(807), + [anon_sym_type] = ACTIONS(813), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_RBRACK] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_LBRACE] = ACTIONS(703), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_not] = ACTIONS(817), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_lambda] = ACTIONS(819), + [anon_sym_yield] = ACTIONS(821), + [sym_ellipsis] = ACTIONS(705), + [sym_integer] = ACTIONS(689), + [sym_float] = ACTIONS(705), + [anon_sym_await] = ACTIONS(823), + [sym_true] = ACTIONS(689), + [sym_false] = ACTIONS(689), + [sym_none] = ACTIONS(689), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(823), + [sym_string_start] = ACTIONS(709), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 30, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, - anon_sym_LBRACE, - ACTIONS(733), 1, - sym_string_start, - ACTIONS(849), 1, + [0] = 28, + ACTIONS(9), 1, sym_identifier, - ACTIONS(851), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(853), 1, - anon_sym_COMMA, - ACTIONS(855), 1, + ACTIONS(17), 1, anon_sym_STAR, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(863), 1, - anon_sym_RBRACE, - ACTIONS(865), 1, + ACTIONS(61), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(869), 1, + ACTIONS(73), 1, anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(79), 1, anon_sym_await, - STATE(964), 1, + ACTIONS(81), 1, + sym_string_start, + STATE(628), 1, + sym_list_splat_pattern, + STATE(949), 1, sym_primary_expression, - STATE(980), 1, + STATE(954), 1, sym_string, - STATE(1229), 1, - sym_list_splat_pattern, - STATE(1673), 1, + STATE(1623), 1, + sym_pattern, + STATE(1634), 1, + sym_pattern_list, + STATE(1816), 1, sym_expression, - STATE(1852), 1, - sym_pair, - STATE(2347), 1, - sym_dictionary_splat, - STATE(2645), 1, + STATE(2616), 1, sym__named_expression_lhs, - STATE(2690), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(405), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + STATE(638), 2, + sym_attribute, + sym_subscript, + STATE(1626), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(407), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2475), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(713), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(2547), 5, + sym_expression_list, + sym_assignment, + sym_augmented_assignment, + sym__right_hand_side, + sym_yield, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -28976,11 +28026,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1099), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -28993,79 +28041,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [124] = 31, - ACTIONS(773), 1, + [120] = 30, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(817), 1, + anon_sym_not, + ACTIONS(819), 1, + anon_sym_lambda, + ACTIONS(821), 1, + anon_sym_yield, + ACTIONS(825), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(827), 1, anon_sym_LPAREN, - ACTIONS(877), 1, - anon_sym_RPAREN, - ACTIONS(879), 1, + ACTIONS(829), 1, anon_sym_STAR, - ACTIONS(885), 1, + ACTIONS(835), 1, anon_sym_LBRACK, - ACTIONS(887), 1, - anon_sym_not, - ACTIONS(889), 1, - anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(837), 1, + anon_sym_RBRACK, + ACTIONS(839), 1, anon_sym_await, - STATE(972), 1, + STATE(857), 1, sym_primary_expression, - STATE(1044), 1, + STATE(969), 1, sym_string, - STATE(1391), 1, + STATE(1341), 1, sym_list_splat_pattern, - STATE(1708), 1, + STATE(1714), 1, sym_expression, - STATE(2376), 1, - sym_yield, - STATE(2424), 1, + STATE(2283), 1, sym_pattern, - STATE(2684), 1, - sym__named_expression_lhs, - STATE(2773), 1, + STATE(2648), 1, sym__patterns, - STATE(2790), 1, + STATE(2700), 1, sym__collection_elements, + STATE(2716), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - STATE(1393), 2, + STATE(1352), 2, sym_attribute, sym_subscript, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2597), 2, + STATE(2487), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(771), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2280), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29073,7 +28120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 14, + STATE(1280), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29088,78 +28135,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [250] = 30, - ACTIONS(817), 1, + [244] = 30, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(845), 1, + ACTIONS(821), 1, anon_sym_yield, - ACTIONS(895), 1, + ACTIONS(825), 1, sym_identifier, - ACTIONS(897), 1, + ACTIONS(827), 1, anon_sym_LPAREN, - ACTIONS(899), 1, + ACTIONS(829), 1, anon_sym_STAR, - ACTIONS(905), 1, + ACTIONS(835), 1, anon_sym_LBRACK, - ACTIONS(907), 1, - anon_sym_RBRACK, - ACTIONS(909), 1, + ACTIONS(839), 1, anon_sym_await, - STATE(928), 1, + ACTIONS(841), 1, + anon_sym_RBRACK, + STATE(857), 1, sym_primary_expression, - STATE(977), 1, + STATE(969), 1, sym_string, - STATE(1416), 1, + STATE(1341), 1, sym_list_splat_pattern, - STATE(1723), 1, + STATE(1714), 1, sym_expression, - STATE(2378), 1, + STATE(2283), 1, sym_pattern, - STATE(2649), 1, - sym__named_expression_lhs, - STATE(2685), 1, - sym__collection_elements, - STATE(2713), 1, + STATE(2648), 1, sym__patterns, + STATE(2700), 1, + sym__collection_elements, + STATE(2716), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(903), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - STATE(1423), 2, + STATE(1352), 2, sym_attribute, sym_subscript, - STATE(2596), 2, + STATE(2487), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(815), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(901), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2280), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(803), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29167,7 +28214,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 14, + STATE(1280), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29182,76 +28229,171 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [374] = 30, - ACTIONS(723), 1, + [368] = 28, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + anon_sym_STAR, + ACTIONS(61), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(73), 1, + anon_sym_yield, + ACTIONS(79), 1, + anon_sym_await, + ACTIONS(81), 1, sym_string_start, - ACTIONS(849), 1, + STATE(628), 1, + sym_list_splat_pattern, + STATE(949), 1, + sym_primary_expression, + STATE(954), 1, + sym_string, + STATE(1623), 1, + sym_pattern, + STATE(1634), 1, + sym_pattern_list, + STATE(1816), 1, + sym_expression, + STATE(2616), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(405), 2, + anon_sym_match, + anon_sym_type, + STATE(638), 2, + sym_attribute, + sym_subscript, + STATE(1626), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(65), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(407), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(2485), 5, + sym_expression_list, + sym_assignment, + sym_augmented_assignment, + sym__right_hand_side, + sym_yield, + STATE(1649), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1099), 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, + [488] = 31, + ACTIONS(793), 1, + anon_sym_LBRACE, + ACTIONS(799), 1, + sym_string_start, + ACTIONS(843), 1, sym_identifier, - ACTIONS(851), 1, + ACTIONS(845), 1, anon_sym_LPAREN, - ACTIONS(855), 1, + ACTIONS(847), 1, + anon_sym_RPAREN, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(865), 1, + ACTIONS(855), 1, + anon_sym_LBRACK, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(869), 1, + ACTIONS(861), 1, anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(863), 1, anon_sym_await, - ACTIONS(911), 1, - anon_sym_COMMA, - ACTIONS(913), 1, - anon_sym_RBRACE, - STATE(964), 1, + STATE(950), 1, sym_primary_expression, - STATE(980), 1, + STATE(985), 1, sym_string, - STATE(1229), 1, + STATE(1340), 1, sym_list_splat_pattern, - STATE(1678), 1, + STATE(1717), 1, sym_expression, - STATE(1882), 1, - sym_pair, - STATE(2254), 1, - sym_dictionary_splat, - STATE(2645), 1, + STATE(2289), 1, + sym_pattern, + STATE(2316), 1, + sym_yield, + STATE(2615), 1, + sym__patterns, + STATE(2698), 1, sym__named_expression_lhs, - STATE(2752), 1, + STATE(2737), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + STATE(1343), 2, + sym_attribute, + sym_subscript, + STATE(2287), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2546), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2475), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(713), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29259,11 +28401,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1331), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -29276,76 +28416,80 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [498] = 30, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [614] = 32, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(851), 1, + ACTIONS(845), 1, anon_sym_LPAREN, - ACTIONS(855), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(865), 1, + ACTIONS(855), 1, + anon_sym_LBRACK, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(869), 1, + ACTIONS(861), 1, anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(863), 1, anon_sym_await, - ACTIONS(915), 1, - anon_sym_COMMA, - ACTIONS(917), 1, - anon_sym_RBRACE, - STATE(964), 1, + ACTIONS(865), 1, + anon_sym_RPAREN, + STATE(950), 1, sym_primary_expression, - STATE(980), 1, + STATE(985), 1, sym_string, - STATE(1229), 1, + STATE(1340), 1, sym_list_splat_pattern, - STATE(1675), 1, + STATE(1676), 1, sym_expression, - STATE(1857), 1, - sym_pair, - STATE(2480), 1, - sym_dictionary_splat, - STATE(2645), 1, + STATE(2273), 1, + sym_yield, + STATE(2289), 1, + sym_pattern, + STATE(2466), 1, + sym_list_splat, + STATE(2467), 1, + sym_parenthesized_list_splat, + STATE(2698), 1, sym__named_expression_lhs, - STATE(2729), 1, + STATE(2743), 1, sym__collection_elements, + STATE(2756), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + STATE(1343), 2, + sym_attribute, + sym_subscript, + STATE(2546), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2475), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(713), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29353,11 +28497,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1331), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -29370,79 +28512,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [622] = 31, - ACTIONS(773), 1, + [742] = 31, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(845), 1, anon_sym_LPAREN, - ACTIONS(879), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(885), 1, + ACTIONS(855), 1, anon_sym_LBRACK, - ACTIONS(887), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(861), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(863), 1, anon_sym_await, - ACTIONS(919), 1, + ACTIONS(867), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(950), 1, sym_primary_expression, - STATE(1044), 1, + STATE(985), 1, sym_string, - STATE(1391), 1, + STATE(1340), 1, sym_list_splat_pattern, - STATE(1692), 1, + STATE(1665), 1, sym_expression, - STATE(2424), 1, + STATE(2289), 1, sym_pattern, - STATE(2499), 1, + STATE(2352), 1, sym_yield, - STATE(2684), 1, - sym__named_expression_lhs, - STATE(2694), 1, - sym__patterns, - STATE(2778), 1, + STATE(2602), 1, sym__collection_elements, + STATE(2615), 1, + sym__patterns, + STATE(2698), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - STATE(1393), 2, + STATE(1343), 2, sym_attribute, sym_subscript, - STATE(2368), 2, + STATE(2287), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2597), 2, + STATE(2546), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(771), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29450,7 +28592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 14, + STATE(1331), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29465,78 +28607,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [748] = 30, - ACTIONS(817), 1, + [868] = 30, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(845), 1, + ACTIONS(821), 1, anon_sym_yield, - ACTIONS(895), 1, + ACTIONS(825), 1, sym_identifier, - ACTIONS(897), 1, + ACTIONS(827), 1, anon_sym_LPAREN, - ACTIONS(899), 1, + ACTIONS(829), 1, anon_sym_STAR, - ACTIONS(905), 1, + ACTIONS(835), 1, anon_sym_LBRACK, - ACTIONS(909), 1, + ACTIONS(839), 1, anon_sym_await, - ACTIONS(921), 1, + ACTIONS(869), 1, anon_sym_RBRACK, - STATE(928), 1, + STATE(857), 1, sym_primary_expression, - STATE(977), 1, + STATE(969), 1, sym_string, - STATE(1416), 1, + STATE(1341), 1, sym_list_splat_pattern, - STATE(1725), 1, + STATE(1707), 1, sym_expression, - STATE(2378), 1, + STATE(2283), 1, sym_pattern, - STATE(2649), 1, - sym__named_expression_lhs, - STATE(2652), 1, + STATE(2648), 1, sym__patterns, - STATE(2724), 1, + STATE(2689), 1, sym__collection_elements, + STATE(2716), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(903), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - STATE(1423), 2, + STATE(1352), 2, sym_attribute, sym_subscript, - STATE(2596), 2, + STATE(2487), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(815), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(901), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2280), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(803), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29544,7 +28686,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 14, + STATE(1280), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29559,76 +28701,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [872] = 30, - ACTIONS(723), 1, + [992] = 30, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(871), 1, sym_identifier, - ACTIONS(851), 1, + ACTIONS(873), 1, anon_sym_LPAREN, - ACTIONS(855), 1, + ACTIONS(875), 1, + anon_sym_COMMA, + ACTIONS(877), 1, anon_sym_STAR, - ACTIONS(861), 1, + ACTIONS(883), 1, anon_sym_STAR_STAR, - ACTIONS(865), 1, + ACTIONS(885), 1, + anon_sym_RBRACE, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(869), 1, + ACTIONS(891), 1, anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(923), 1, - anon_sym_COMMA, - ACTIONS(925), 1, - anon_sym_RBRACE, - STATE(964), 1, + STATE(893), 1, sym_primary_expression, - STATE(980), 1, + STATE(958), 1, sym_string, - STATE(1229), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1681), 1, + STATE(1655), 1, sym_expression, - STATE(1879), 1, + STATE(1856), 1, sym_pair, - STATE(2306), 1, + STATE(2234), 1, sym_dictionary_splat, + STATE(2644), 1, + sym__collection_elements, STATE(2645), 1, sym__named_expression_lhs, - STATE(2740), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(879), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2475), 3, + STATE(2372), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(713), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29636,7 +28778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29653,80 +28795,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [996] = 32, - ACTIONS(773), 1, + [1116] = 31, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(845), 1, anon_sym_LPAREN, - ACTIONS(879), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(885), 1, + ACTIONS(855), 1, anon_sym_LBRACK, - ACTIONS(887), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(861), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(863), 1, anon_sym_await, - ACTIONS(927), 1, + ACTIONS(895), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(950), 1, sym_primary_expression, - STATE(1044), 1, + STATE(985), 1, sym_string, - STATE(1391), 1, + STATE(1340), 1, sym_list_splat_pattern, - STATE(1698), 1, + STATE(1718), 1, sym_expression, - STATE(2304), 1, - sym_yield, - STATE(2424), 1, + STATE(2289), 1, sym_pattern, - STATE(2488), 1, - sym_list_splat, - STATE(2489), 1, - sym_parenthesized_list_splat, - STATE(2684), 1, - sym__named_expression_lhs, - STATE(2691), 1, - sym__collection_elements, - STATE(2692), 1, + STATE(2476), 1, + sym_yield, + STATE(2615), 1, sym__patterns, + STATE(2641), 1, + sym__collection_elements, + STATE(2698), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - STATE(1393), 2, + STATE(1343), 2, sym_attribute, sym_subscript, - STATE(2597), 2, + STATE(2287), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2546), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(771), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29734,7 +28875,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 14, + STATE(1331), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29749,19 +28890,21 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1124] = 32, - ACTIONS(773), 1, + [1242] = 30, + ACTIONS(743), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(871), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(873), 1, anon_sym_LPAREN, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_STAR, - ACTIONS(885), 1, - anon_sym_LBRACK, + ACTIONS(883), 1, + anon_sym_STAR_STAR, ACTIONS(887), 1, anon_sym_not, ACTIONS(889), 1, @@ -29770,59 +28913,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_yield, ACTIONS(893), 1, anon_sym_await, - ACTIONS(929), 1, - anon_sym_RPAREN, - STATE(972), 1, + ACTIONS(897), 1, + anon_sym_COMMA, + ACTIONS(899), 1, + anon_sym_RBRACE, + STATE(893), 1, sym_primary_expression, - STATE(1044), 1, + STATE(958), 1, sym_string, - STATE(1391), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1685), 1, + STATE(1650), 1, sym_expression, - STATE(2269), 1, - sym_list_splat, - STATE(2271), 1, - sym_parenthesized_list_splat, - STATE(2424), 1, - sym_pattern, - STATE(2470), 1, - sym_yield, - STATE(2684), 1, - sym__named_expression_lhs, - STATE(2694), 1, - sym__patterns, - STATE(2704), 1, + STATE(1829), 1, + sym_pair, + STATE(2284), 1, + sym_dictionary_splat, + STATE(2629), 1, sym__collection_elements, + STATE(2645), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - STATE(1393), 2, - sym_attribute, - sym_subscript, - STATE(2597), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(771), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(879), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2372), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29830,9 +28967,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 14, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -29845,79 +28984,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1252] = 31, - ACTIONS(773), 1, + [1366] = 31, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(845), 1, anon_sym_LPAREN, - ACTIONS(879), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(885), 1, + ACTIONS(855), 1, anon_sym_LBRACK, - ACTIONS(887), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(861), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(863), 1, anon_sym_await, - ACTIONS(931), 1, + ACTIONS(901), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(950), 1, sym_primary_expression, - STATE(1044), 1, + STATE(985), 1, sym_string, - STATE(1391), 1, + STATE(1340), 1, sym_list_splat_pattern, - STATE(1692), 1, + STATE(1718), 1, sym_expression, - STATE(2424), 1, + STATE(2289), 1, sym_pattern, - STATE(2499), 1, + STATE(2476), 1, sym_yield, - STATE(2684), 1, + STATE(2641), 1, + sym__collection_elements, + STATE(2698), 1, sym__named_expression_lhs, - STATE(2773), 1, + STATE(2709), 1, sym__patterns, - STATE(2778), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - STATE(1393), 2, + STATE(1343), 2, sym_attribute, sym_subscript, - STATE(2368), 2, + STATE(2287), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2597), 2, + STATE(2546), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(771), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29925,7 +29064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 14, + STATE(1331), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29940,78 +29079,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1378] = 30, - ACTIONS(817), 1, + [1492] = 30, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(845), 1, + ACTIONS(821), 1, anon_sym_yield, - ACTIONS(895), 1, + ACTIONS(825), 1, sym_identifier, - ACTIONS(897), 1, + ACTIONS(827), 1, anon_sym_LPAREN, - ACTIONS(899), 1, + ACTIONS(829), 1, anon_sym_STAR, - ACTIONS(905), 1, + ACTIONS(835), 1, anon_sym_LBRACK, - ACTIONS(909), 1, + ACTIONS(839), 1, anon_sym_await, - ACTIONS(933), 1, + ACTIONS(903), 1, anon_sym_RBRACK, - STATE(928), 1, + STATE(857), 1, sym_primary_expression, - STATE(977), 1, + STATE(969), 1, sym_string, - STATE(1416), 1, + STATE(1341), 1, sym_list_splat_pattern, - STATE(1728), 1, + STATE(1709), 1, sym_expression, - STATE(2378), 1, + STATE(2283), 1, sym_pattern, - STATE(2649), 1, - sym__named_expression_lhs, - STATE(2713), 1, + STATE(2678), 1, sym__patterns, - STATE(2799), 1, + STATE(2716), 1, + sym__named_expression_lhs, + STATE(2775), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(903), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - STATE(1423), 2, + STATE(1352), 2, sym_attribute, sym_subscript, - STATE(2596), 2, + STATE(2487), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(815), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(901), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2280), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(803), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30019,7 +29158,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 14, + STATE(1280), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30034,76 +29173,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1502] = 30, - ACTIONS(723), 1, + [1616] = 30, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(871), 1, sym_identifier, - ACTIONS(851), 1, + ACTIONS(873), 1, anon_sym_LPAREN, - ACTIONS(855), 1, + ACTIONS(877), 1, anon_sym_STAR, - ACTIONS(861), 1, + ACTIONS(883), 1, anon_sym_STAR_STAR, - ACTIONS(865), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(869), 1, + ACTIONS(891), 1, anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(935), 1, + ACTIONS(905), 1, anon_sym_COMMA, - ACTIONS(937), 1, + ACTIONS(907), 1, anon_sym_RBRACE, - STATE(964), 1, + STATE(893), 1, sym_primary_expression, - STATE(980), 1, + STATE(958), 1, sym_string, - STATE(1229), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1667), 1, + STATE(1657), 1, sym_expression, - STATE(1870), 1, + STATE(1860), 1, sym_pair, - STATE(2349), 1, + STATE(2276), 1, sym_dictionary_splat, STATE(2645), 1, sym__named_expression_lhs, - STATE(2674), 1, + STATE(2740), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(879), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2475), 3, + STATE(2372), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(713), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30111,7 +29250,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30128,79 +29267,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1626] = 31, - ACTIONS(773), 1, + [1740] = 30, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(817), 1, + anon_sym_not, + ACTIONS(819), 1, + anon_sym_lambda, + ACTIONS(821), 1, + anon_sym_yield, + ACTIONS(825), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(827), 1, anon_sym_LPAREN, - ACTIONS(879), 1, + ACTIONS(829), 1, anon_sym_STAR, - ACTIONS(885), 1, + ACTIONS(835), 1, anon_sym_LBRACK, - ACTIONS(887), 1, - anon_sym_not, - ACTIONS(889), 1, - anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(839), 1, anon_sym_await, - ACTIONS(939), 1, - anon_sym_RPAREN, - STATE(972), 1, + ACTIONS(909), 1, + anon_sym_RBRACK, + STATE(857), 1, sym_primary_expression, - STATE(1044), 1, + STATE(969), 1, sym_string, - STATE(1391), 1, + STATE(1341), 1, sym_list_splat_pattern, - STATE(1692), 1, + STATE(1705), 1, sym_expression, - STATE(2424), 1, + STATE(2283), 1, sym_pattern, - STATE(2499), 1, - sym_yield, - STATE(2684), 1, + STATE(2716), 1, sym__named_expression_lhs, - STATE(2692), 1, + STATE(2718), 1, sym__patterns, - STATE(2778), 1, + STATE(2719), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - STATE(1393), 2, + STATE(1352), 2, sym_attribute, sym_subscript, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2597), 2, + STATE(2487), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(771), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2280), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30208,7 +29346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 14, + STATE(1280), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30223,78 +29361,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1752] = 30, - ACTIONS(817), 1, + [1864] = 31, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(841), 1, - anon_sym_not, ACTIONS(843), 1, - anon_sym_lambda, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(895), 1, sym_identifier, - ACTIONS(897), 1, + ACTIONS(845), 1, anon_sym_LPAREN, - ACTIONS(899), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(905), 1, + ACTIONS(855), 1, anon_sym_LBRACK, - ACTIONS(909), 1, + ACTIONS(857), 1, + anon_sym_not, + ACTIONS(859), 1, + anon_sym_lambda, + ACTIONS(861), 1, + anon_sym_yield, + ACTIONS(863), 1, anon_sym_await, - ACTIONS(941), 1, - anon_sym_RBRACK, - STATE(928), 1, + ACTIONS(911), 1, + anon_sym_RPAREN, + STATE(950), 1, sym_primary_expression, - STATE(977), 1, + STATE(985), 1, sym_string, - STATE(1416), 1, + STATE(1340), 1, sym_list_splat_pattern, - STATE(1723), 1, + STATE(1718), 1, sym_expression, - STATE(2378), 1, + STATE(2289), 1, sym_pattern, - STATE(2649), 1, - sym__named_expression_lhs, - STATE(2685), 1, - sym__collection_elements, - STATE(2718), 1, + STATE(2476), 1, + sym_yield, + STATE(2615), 1, sym__patterns, + STATE(2641), 1, + sym__collection_elements, + STATE(2698), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(903), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - STATE(1423), 2, + STATE(1343), 2, sym_attribute, sym_subscript, - STATE(2596), 2, + STATE(2287), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2546), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(815), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(901), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(803), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30302,7 +29441,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 14, + STATE(1331), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30317,172 +29456,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1876] = 30, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [1990] = 30, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(851), 1, - anon_sym_LPAREN, - ACTIONS(855), 1, - anon_sym_STAR, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(865), 1, - anon_sym_not, - ACTIONS(867), 1, - anon_sym_lambda, - ACTIONS(869), 1, - anon_sym_yield, - ACTIONS(871), 1, - anon_sym_await, - ACTIONS(943), 1, - anon_sym_COMMA, - ACTIONS(945), 1, - anon_sym_RBRACE, - STATE(964), 1, - sym_primary_expression, - STATE(980), 1, - sym_string, - STATE(1229), 1, - sym_list_splat_pattern, - STATE(1665), 1, - sym_expression, - STATE(1851), 1, - sym_pair, - STATE(2379), 1, - sym_dictionary_splat, - STATE(2645), 1, - sym__named_expression_lhs, - STATE(2656), 1, - sym__collection_elements, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(729), 2, - sym_ellipsis, - sym_float, - ACTIONS(859), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(725), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(857), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - STATE(2475), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(713), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1787), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1152), 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, - [2000] = 30, ACTIONS(817), 1, - anon_sym_LBRACE, - ACTIONS(823), 1, - sym_string_start, - ACTIONS(841), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(845), 1, + ACTIONS(821), 1, anon_sym_yield, - ACTIONS(895), 1, + ACTIONS(825), 1, sym_identifier, - ACTIONS(897), 1, + ACTIONS(827), 1, anon_sym_LPAREN, - ACTIONS(899), 1, + ACTIONS(829), 1, anon_sym_STAR, - ACTIONS(905), 1, + ACTIONS(835), 1, anon_sym_LBRACK, - ACTIONS(909), 1, + ACTIONS(839), 1, anon_sym_await, - ACTIONS(947), 1, + ACTIONS(913), 1, anon_sym_RBRACK, - STATE(928), 1, + STATE(857), 1, sym_primary_expression, - STATE(977), 1, + STATE(969), 1, sym_string, - STATE(1416), 1, + STATE(1341), 1, sym_list_splat_pattern, - STATE(1732), 1, + STATE(1713), 1, sym_expression, - STATE(2378), 1, + STATE(2283), 1, sym_pattern, - STATE(2649), 1, - sym__named_expression_lhs, - STATE(2713), 1, - sym__patterns, - STATE(2761), 1, + STATE(2614), 1, sym__collection_elements, + STATE(2648), 1, + sym__patterns, + STATE(2716), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(903), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - STATE(1423), 2, + STATE(1352), 2, sym_attribute, sym_subscript, - STATE(2596), 2, + STATE(2487), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(815), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(901), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2280), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(803), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30490,7 +29535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 14, + STATE(1280), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30505,19 +29550,21 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2124] = 31, - ACTIONS(773), 1, + [2114] = 30, + ACTIONS(743), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(871), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(873), 1, anon_sym_LPAREN, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_STAR, - ACTIONS(885), 1, - anon_sym_LBRACK, + ACTIONS(883), 1, + anon_sym_STAR_STAR, ACTIONS(887), 1, anon_sym_not, ACTIONS(889), 1, @@ -30526,58 +29573,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_yield, ACTIONS(893), 1, anon_sym_await, - ACTIONS(949), 1, - anon_sym_RPAREN, - STATE(972), 1, + ACTIONS(915), 1, + anon_sym_COMMA, + ACTIONS(917), 1, + anon_sym_RBRACE, + STATE(893), 1, sym_primary_expression, - STATE(1044), 1, + STATE(958), 1, sym_string, - STATE(1391), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1692), 1, + STATE(1659), 1, sym_expression, - STATE(2424), 1, - sym_pattern, - STATE(2499), 1, - sym_yield, - STATE(2673), 1, - sym__patterns, - STATE(2684), 1, + STATE(1868), 1, + sym_pair, + STATE(2324), 1, + sym_dictionary_splat, + STATE(2645), 1, sym__named_expression_lhs, - STATE(2778), 1, + STATE(2683), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - STATE(1393), 2, - sym_attribute, - sym_subscript, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2597), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(771), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(879), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2372), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30585,9 +29627,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 14, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -30600,78 +29644,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2250] = 30, - ACTIONS(817), 1, - anon_sym_LBRACE, - ACTIONS(823), 1, - sym_string_start, - ACTIONS(841), 1, - anon_sym_not, - ACTIONS(843), 1, - anon_sym_lambda, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(895), 1, + [2238] = 28, + ACTIONS(9), 1, sym_identifier, - ACTIONS(897), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(899), 1, + ACTIONS(17), 1, anon_sym_STAR, - ACTIONS(905), 1, + ACTIONS(61), 1, anon_sym_LBRACK, - ACTIONS(909), 1, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(73), 1, + anon_sym_yield, + ACTIONS(79), 1, anon_sym_await, - ACTIONS(951), 1, - anon_sym_RBRACK, - STATE(928), 1, + ACTIONS(81), 1, + sym_string_start, + STATE(628), 1, + sym_list_splat_pattern, + STATE(949), 1, sym_primary_expression, - STATE(977), 1, + STATE(954), 1, sym_string, - STATE(1416), 1, - sym_list_splat_pattern, - STATE(1723), 1, - sym_expression, - STATE(2378), 1, + STATE(1623), 1, sym_pattern, - STATE(2649), 1, + STATE(1634), 1, + sym_pattern_list, + STATE(1816), 1, + sym_expression, + STATE(2616), 1, sym__named_expression_lhs, - STATE(2685), 1, - sym__collection_elements, - STATE(2713), 1, - sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(903), 2, + ACTIONS(405), 2, anon_sym_match, anon_sym_type, - STATE(1423), 2, + STATE(638), 2, sym_attribute, sym_subscript, - STATE(2596), 2, + STATE(1626), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(815), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(901), 3, + ACTIONS(407), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(803), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(2538), 5, + sym_expression_list, + sym_assignment, + sym_augmented_assignment, + sym__right_hand_side, + sym_yield, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30679,7 +29721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 14, + STATE(1099), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30694,76 +29736,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2374] = 30, - ACTIONS(723), 1, + [2358] = 30, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(871), 1, sym_identifier, - ACTIONS(851), 1, + ACTIONS(873), 1, anon_sym_LPAREN, - ACTIONS(855), 1, + ACTIONS(877), 1, anon_sym_STAR, - ACTIONS(861), 1, + ACTIONS(883), 1, anon_sym_STAR_STAR, - ACTIONS(865), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(869), 1, + ACTIONS(891), 1, anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(953), 1, + ACTIONS(919), 1, anon_sym_COMMA, - ACTIONS(955), 1, + ACTIONS(921), 1, anon_sym_RBRACE, - STATE(964), 1, + STATE(893), 1, sym_primary_expression, - STATE(980), 1, + STATE(958), 1, sym_string, - STATE(1229), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1671), 1, + STATE(1656), 1, sym_expression, - STATE(1889), 1, + STATE(1836), 1, sym_pair, - STATE(2406), 1, + STATE(2461), 1, sym_dictionary_splat, STATE(2645), 1, sym__named_expression_lhs, - STATE(2654), 1, + STATE(2725), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(879), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2475), 3, + STATE(2372), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(713), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30771,7 +29813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30788,79 +29830,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2498] = 31, - ACTIONS(773), 1, + [2482] = 31, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(845), 1, anon_sym_LPAREN, - ACTIONS(879), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(885), 1, + ACTIONS(855), 1, anon_sym_LBRACK, - ACTIONS(887), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(861), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(863), 1, anon_sym_await, - ACTIONS(957), 1, + ACTIONS(923), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(950), 1, sym_primary_expression, - STATE(1044), 1, + STATE(985), 1, sym_string, - STATE(1391), 1, + STATE(1340), 1, sym_list_splat_pattern, - STATE(1700), 1, + STATE(1718), 1, sym_expression, - STATE(2424), 1, + STATE(2289), 1, sym_pattern, - STATE(2428), 1, + STATE(2476), 1, sym_yield, - STATE(2659), 1, + STATE(2641), 1, sym__collection_elements, - STATE(2684), 1, + STATE(2698), 1, sym__named_expression_lhs, - STATE(2773), 1, + STATE(2756), 1, sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - STATE(1393), 2, + STATE(1343), 2, sym_attribute, sym_subscript, - STATE(2368), 2, + STATE(2287), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2597), 2, + STATE(2546), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(771), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30868,7 +29910,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 14, + STATE(1331), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30883,79 +29925,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2624] = 31, - ACTIONS(773), 1, + [2608] = 30, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(817), 1, + anon_sym_not, + ACTIONS(819), 1, + anon_sym_lambda, + ACTIONS(821), 1, + anon_sym_yield, + ACTIONS(825), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(827), 1, anon_sym_LPAREN, - ACTIONS(879), 1, + ACTIONS(829), 1, anon_sym_STAR, - ACTIONS(885), 1, + ACTIONS(835), 1, anon_sym_LBRACK, - ACTIONS(887), 1, - anon_sym_not, - ACTIONS(889), 1, - anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(839), 1, anon_sym_await, - ACTIONS(959), 1, - anon_sym_RPAREN, - STATE(972), 1, + ACTIONS(925), 1, + anon_sym_RBRACK, + STATE(857), 1, sym_primary_expression, - STATE(1044), 1, + STATE(969), 1, sym_string, - STATE(1391), 1, + STATE(1341), 1, sym_list_splat_pattern, - STATE(1692), 1, + STATE(1707), 1, sym_expression, - STATE(2424), 1, + STATE(2283), 1, sym_pattern, - STATE(2499), 1, - sym_yield, - STATE(2684), 1, + STATE(2689), 1, + sym__collection_elements, + STATE(2716), 1, sym__named_expression_lhs, - STATE(2773), 1, + STATE(2718), 1, sym__patterns, - STATE(2778), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - STATE(1393), 2, + STATE(1352), 2, sym_attribute, sym_subscript, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2597), 2, + STATE(2487), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(771), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2280), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30963,7 +30004,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 14, + STATE(1280), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30978,76 +30019,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2750] = 28, - ACTIONS(9), 1, + [2732] = 30, + ACTIONS(743), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, + anon_sym_LBRACE, + ACTIONS(753), 1, + sym_string_start, + ACTIONS(871), 1, sym_identifier, - ACTIONS(15), 1, + ACTIONS(873), 1, anon_sym_LPAREN, - ACTIONS(17), 1, + ACTIONS(877), 1, anon_sym_STAR, - ACTIONS(61), 1, - anon_sym_LBRACK, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(883), 1, + anon_sym_STAR_STAR, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(891), 1, anon_sym_yield, - ACTIONS(79), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(81), 1, - sym_string_start, - STATE(645), 1, - sym_list_splat_pattern, - STATE(968), 1, + ACTIONS(927), 1, + anon_sym_COMMA, + ACTIONS(929), 1, + anon_sym_RBRACE, + STATE(893), 1, sym_primary_expression, - STATE(969), 1, + STATE(958), 1, sym_string, - STATE(1641), 1, - sym_pattern_list, - STATE(1651), 1, - sym_pattern, - STATE(1827), 1, + STATE(1259), 1, + sym_list_splat_pattern, + STATE(1660), 1, sym_expression, - STATE(2672), 1, + STATE(1855), 1, + sym_pair, + STATE(2356), 1, + sym_dictionary_splat, + STATE(2632), 1, + sym__collection_elements, + STATE(2645), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(417), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - STATE(646), 2, - sym_attribute, - sym_subscript, - STATE(1650), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(65), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(419), 3, + ACTIONS(879), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + STATE(2372), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2583), 5, - sym_expression_list, - sym_assignment, - sym_augmented_assignment, - sym__right_hand_side, - sym_yield, - STATE(1679), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31055,9 +30096,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 14, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -31070,79 +30113,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2870] = 31, - ACTIONS(773), 1, + [2856] = 31, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(845), 1, anon_sym_LPAREN, - ACTIONS(879), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(885), 1, + ACTIONS(855), 1, anon_sym_LBRACK, - ACTIONS(887), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(861), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(863), 1, anon_sym_await, - ACTIONS(961), 1, + ACTIONS(931), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(950), 1, sym_primary_expression, - STATE(1044), 1, + STATE(985), 1, sym_string, - STATE(1391), 1, + STATE(1340), 1, sym_list_splat_pattern, - STATE(1692), 1, + STATE(1718), 1, sym_expression, - STATE(2424), 1, + STATE(2289), 1, sym_pattern, - STATE(2499), 1, + STATE(2476), 1, sym_yield, - STATE(2650), 1, - sym__patterns, - STATE(2684), 1, - sym__named_expression_lhs, - STATE(2778), 1, + STATE(2641), 1, sym__collection_elements, + STATE(2698), 1, + sym__named_expression_lhs, + STATE(2726), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - STATE(1393), 2, + STATE(1343), 2, sym_attribute, sym_subscript, - STATE(2368), 2, + STATE(2287), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2597), 2, + STATE(2546), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(771), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31150,7 +30193,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 14, + STATE(1331), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31165,78 +30208,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2996] = 30, - ACTIONS(817), 1, + [2982] = 30, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(845), 1, + ACTIONS(821), 1, anon_sym_yield, - ACTIONS(895), 1, + ACTIONS(825), 1, sym_identifier, - ACTIONS(897), 1, + ACTIONS(827), 1, anon_sym_LPAREN, - ACTIONS(899), 1, + ACTIONS(829), 1, anon_sym_STAR, - ACTIONS(905), 1, + ACTIONS(835), 1, anon_sym_LBRACK, - ACTIONS(909), 1, + ACTIONS(839), 1, anon_sym_await, - ACTIONS(963), 1, + ACTIONS(933), 1, anon_sym_RBRACK, - STATE(928), 1, + STATE(857), 1, sym_primary_expression, - STATE(977), 1, + STATE(969), 1, sym_string, - STATE(1416), 1, + STATE(1341), 1, sym_list_splat_pattern, - STATE(1723), 1, + STATE(1707), 1, sym_expression, - STATE(2378), 1, + STATE(2283), 1, sym_pattern, - STATE(2649), 1, - sym__named_expression_lhs, - STATE(2652), 1, + STATE(2648), 1, sym__patterns, - STATE(2685), 1, + STATE(2689), 1, sym__collection_elements, + STATE(2716), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(903), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - STATE(1423), 2, + STATE(1352), 2, sym_attribute, sym_subscript, - STATE(2596), 2, + STATE(2487), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(815), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(901), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2280), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(803), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31244,7 +30287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 14, + STATE(1280), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31259,76 +30302,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3120] = 30, - ACTIONS(723), 1, + [3106] = 30, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(871), 1, sym_identifier, - ACTIONS(851), 1, + ACTIONS(873), 1, anon_sym_LPAREN, - ACTIONS(855), 1, + ACTIONS(877), 1, anon_sym_STAR, - ACTIONS(861), 1, + ACTIONS(883), 1, anon_sym_STAR_STAR, - ACTIONS(865), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(869), 1, + ACTIONS(891), 1, anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(965), 1, + ACTIONS(935), 1, anon_sym_COMMA, - ACTIONS(967), 1, + ACTIONS(937), 1, anon_sym_RBRACE, - STATE(964), 1, + STATE(893), 1, sym_primary_expression, - STATE(980), 1, + STATE(958), 1, sym_string, - STATE(1229), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1674), 1, + STATE(1661), 1, sym_expression, - STATE(1871), 1, + STATE(1869), 1, sym_pair, - STATE(2433), 1, + STATE(2379), 1, sym_dictionary_splat, - STATE(2622), 1, - sym__collection_elements, STATE(2645), 1, sym__named_expression_lhs, + STATE(2665), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(879), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2475), 3, + STATE(2372), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(713), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31336,7 +30379,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31353,78 +30396,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3244] = 30, - ACTIONS(817), 1, + [3230] = 31, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(841), 1, - anon_sym_not, ACTIONS(843), 1, - anon_sym_lambda, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(895), 1, sym_identifier, - ACTIONS(897), 1, + ACTIONS(845), 1, anon_sym_LPAREN, - ACTIONS(899), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(905), 1, + ACTIONS(855), 1, anon_sym_LBRACK, - ACTIONS(909), 1, + ACTIONS(857), 1, + anon_sym_not, + ACTIONS(859), 1, + anon_sym_lambda, + ACTIONS(861), 1, + anon_sym_yield, + ACTIONS(863), 1, anon_sym_await, - ACTIONS(969), 1, - anon_sym_RBRACK, - STATE(928), 1, + ACTIONS(939), 1, + anon_sym_RPAREN, + STATE(950), 1, sym_primary_expression, - STATE(977), 1, + STATE(985), 1, sym_string, - STATE(1416), 1, + STATE(1340), 1, sym_list_splat_pattern, - STATE(1721), 1, + STATE(1718), 1, sym_expression, - STATE(2378), 1, + STATE(2289), 1, sym_pattern, - STATE(2649), 1, - sym__named_expression_lhs, - STATE(2718), 1, - sym__patterns, - STATE(2723), 1, + STATE(2476), 1, + sym_yield, + STATE(2641), 1, sym__collection_elements, + STATE(2655), 1, + sym__patterns, + STATE(2698), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(903), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - STATE(1423), 2, + STATE(1343), 2, sym_attribute, sym_subscript, - STATE(2596), 2, + STATE(2287), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2546), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(815), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(901), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(803), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31432,7 +30476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 14, + STATE(1331), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31447,76 +30491,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3368] = 28, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(15), 1, - anon_sym_LPAREN, - ACTIONS(17), 1, - anon_sym_STAR, - ACTIONS(61), 1, - anon_sym_LBRACK, - ACTIONS(67), 1, + [3356] = 30, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(821), 1, anon_sym_yield, - ACTIONS(79), 1, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(827), 1, + anon_sym_LPAREN, + ACTIONS(829), 1, + anon_sym_STAR, + ACTIONS(835), 1, + anon_sym_LBRACK, + ACTIONS(839), 1, anon_sym_await, - ACTIONS(81), 1, - sym_string_start, - STATE(645), 1, - sym_list_splat_pattern, - STATE(968), 1, + ACTIONS(941), 1, + anon_sym_RBRACK, + STATE(857), 1, sym_primary_expression, STATE(969), 1, sym_string, - STATE(1641), 1, - sym_pattern_list, - STATE(1651), 1, - sym_pattern, - STATE(1827), 1, + STATE(1341), 1, + sym_list_splat_pattern, + STATE(1707), 1, sym_expression, - STATE(2672), 1, + STATE(2283), 1, + sym_pattern, + STATE(2678), 1, + sym__patterns, + STATE(2689), 1, + sym__collection_elements, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(417), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - STATE(646), 2, + STATE(1352), 2, sym_attribute, sym_subscript, - STATE(1650), 2, + STATE(2487), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(65), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(419), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + STATE(2280), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2578), 5, - sym_expression_list, - sym_assignment, - sym_augmented_assignment, - sym__right_hand_side, - sym_yield, - STATE(1679), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31524,7 +30570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 14, + STATE(1280), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31539,76 +30585,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3488] = 28, - ACTIONS(9), 1, + [3480] = 30, + ACTIONS(743), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, + anon_sym_LBRACE, + ACTIONS(753), 1, + sym_string_start, + ACTIONS(871), 1, sym_identifier, - ACTIONS(15), 1, + ACTIONS(873), 1, anon_sym_LPAREN, - ACTIONS(17), 1, + ACTIONS(877), 1, anon_sym_STAR, - ACTIONS(61), 1, - anon_sym_LBRACK, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(883), 1, + anon_sym_STAR_STAR, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(891), 1, anon_sym_yield, - ACTIONS(79), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(81), 1, - sym_string_start, - STATE(645), 1, - sym_list_splat_pattern, - STATE(968), 1, + ACTIONS(943), 1, + anon_sym_COMMA, + ACTIONS(945), 1, + anon_sym_RBRACE, + STATE(893), 1, sym_primary_expression, - STATE(969), 1, + STATE(958), 1, sym_string, - STATE(1641), 1, - sym_pattern_list, - STATE(1651), 1, - sym_pattern, - STATE(1827), 1, + STATE(1259), 1, + sym_list_splat_pattern, + STATE(1662), 1, sym_expression, - STATE(2672), 1, + STATE(1833), 1, + sym_pair, + STATE(2403), 1, + sym_dictionary_splat, + STATE(2596), 1, + sym__collection_elements, + STATE(2645), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(417), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - STATE(646), 2, - sym_attribute, - sym_subscript, - STATE(1650), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(65), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(419), 3, + ACTIONS(879), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + STATE(2372), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2608), 5, - sym_expression_list, - sym_assignment, - sym_augmented_assignment, - sym__right_hand_side, - sym_yield, - STATE(1679), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31616,9 +30662,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 14, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -31631,79 +30679,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3608] = 31, - ACTIONS(773), 1, + [3604] = 31, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(845), 1, anon_sym_LPAREN, - ACTIONS(879), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(885), 1, + ACTIONS(855), 1, anon_sym_LBRACK, - ACTIONS(887), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(861), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(863), 1, anon_sym_await, - ACTIONS(971), 1, + ACTIONS(947), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(950), 1, sym_primary_expression, - STATE(1044), 1, + STATE(985), 1, sym_string, - STATE(1391), 1, + STATE(1340), 1, sym_list_splat_pattern, - STATE(1700), 1, + STATE(1717), 1, sym_expression, - STATE(2424), 1, + STATE(2289), 1, sym_pattern, - STATE(2428), 1, + STATE(2316), 1, sym_yield, - STATE(2659), 1, - sym__collection_elements, - STATE(2684), 1, - sym__named_expression_lhs, - STATE(2773), 1, + STATE(2615), 1, sym__patterns, + STATE(2698), 1, + sym__named_expression_lhs, + STATE(2737), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - STATE(1393), 2, + STATE(1343), 2, sym_attribute, sym_subscript, - STATE(2368), 2, + STATE(2287), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2597), 2, + STATE(2546), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(771), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31711,7 +30759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 14, + STATE(1331), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31726,78 +30774,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3734] = 30, - ACTIONS(817), 1, + [3730] = 30, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(845), 1, + ACTIONS(821), 1, anon_sym_yield, - ACTIONS(895), 1, + ACTIONS(825), 1, sym_identifier, - ACTIONS(897), 1, + ACTIONS(827), 1, anon_sym_LPAREN, - ACTIONS(899), 1, + ACTIONS(829), 1, anon_sym_STAR, - ACTIONS(905), 1, + ACTIONS(835), 1, anon_sym_LBRACK, - ACTIONS(909), 1, + ACTIONS(839), 1, anon_sym_await, - ACTIONS(973), 1, + ACTIONS(949), 1, anon_sym_RBRACK, - STATE(928), 1, + STATE(857), 1, sym_primary_expression, - STATE(977), 1, + STATE(969), 1, sym_string, - STATE(1416), 1, + STATE(1341), 1, sym_list_splat_pattern, - STATE(1723), 1, + STATE(1707), 1, sym_expression, - STATE(2378), 1, + STATE(2283), 1, sym_pattern, - STATE(2649), 1, - sym__named_expression_lhs, - STATE(2685), 1, + STATE(2689), 1, sym__collection_elements, - STATE(2719), 1, + STATE(2716), 1, + sym__named_expression_lhs, + STATE(2774), 1, sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(903), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - STATE(1423), 2, + STATE(1352), 2, sym_attribute, sym_subscript, - STATE(2596), 2, + STATE(2487), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(815), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(901), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2280), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(803), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31805,7 +30853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 14, + STATE(1280), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31820,78 +30868,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3858] = 30, - ACTIONS(817), 1, + [3854] = 30, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(845), 1, + ACTIONS(821), 1, anon_sym_yield, - ACTIONS(895), 1, + ACTIONS(825), 1, sym_identifier, - ACTIONS(897), 1, + ACTIONS(827), 1, anon_sym_LPAREN, - ACTIONS(899), 1, + ACTIONS(829), 1, anon_sym_STAR, - ACTIONS(905), 1, + ACTIONS(835), 1, anon_sym_LBRACK, - ACTIONS(909), 1, + ACTIONS(839), 1, anon_sym_await, - ACTIONS(975), 1, + ACTIONS(951), 1, anon_sym_RBRACK, - STATE(928), 1, + STATE(857), 1, sym_primary_expression, - STATE(977), 1, + STATE(969), 1, sym_string, - STATE(1416), 1, + STATE(1341), 1, sym_list_splat_pattern, - STATE(1723), 1, + STATE(1707), 1, sym_expression, - STATE(2378), 1, + STATE(2283), 1, sym_pattern, - STATE(2649), 1, - sym__named_expression_lhs, - STATE(2665), 1, + STATE(2664), 1, sym__patterns, - STATE(2685), 1, + STATE(2689), 1, sym__collection_elements, + STATE(2716), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(903), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - STATE(1423), 2, + STATE(1352), 2, sym_attribute, sym_subscript, - STATE(2596), 2, + STATE(2487), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(815), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(901), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2280), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(803), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31899,7 +30947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 14, + STATE(1280), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31914,78 +30962,80 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3982] = 30, - ACTIONS(817), 1, + [3978] = 32, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(841), 1, - anon_sym_not, ACTIONS(843), 1, - anon_sym_lambda, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(895), 1, sym_identifier, - ACTIONS(897), 1, + ACTIONS(845), 1, anon_sym_LPAREN, - ACTIONS(899), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(905), 1, + ACTIONS(855), 1, anon_sym_LBRACK, - ACTIONS(909), 1, + ACTIONS(857), 1, + anon_sym_not, + ACTIONS(859), 1, + anon_sym_lambda, + ACTIONS(861), 1, + anon_sym_yield, + ACTIONS(863), 1, anon_sym_await, - ACTIONS(977), 1, - anon_sym_RBRACK, - STATE(928), 1, + ACTIONS(953), 1, + anon_sym_RPAREN, + STATE(950), 1, sym_primary_expression, - STATE(977), 1, + STATE(985), 1, sym_string, - STATE(1416), 1, + STATE(1340), 1, sym_list_splat_pattern, - STATE(1732), 1, + STATE(1678), 1, sym_expression, - STATE(2378), 1, + STATE(2289), 1, sym_pattern, - STATE(2649), 1, + STATE(2318), 1, + sym_list_splat, + STATE(2325), 1, + sym_parenthesized_list_splat, + STATE(2456), 1, + sym_yield, + STATE(2698), 1, sym__named_expression_lhs, - STATE(2713), 1, + STATE(2709), 1, sym__patterns, - STATE(2761), 1, + STATE(2712), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(903), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - STATE(1423), 2, + STATE(1343), 2, sym_attribute, sym_subscript, - STATE(2596), 2, + STATE(2546), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(815), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(901), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(803), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31993,7 +31043,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 14, + STATE(1331), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -32009,58 +31059,58 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4106] = 22, - ACTIONS(311), 1, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(304), 1, anon_sym_TILDE, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(979), 1, + ACTIONS(955), 1, sym_identifier, - ACTIONS(983), 1, + ACTIONS(959), 1, anon_sym_LPAREN, - ACTIONS(985), 1, + ACTIONS(961), 1, anon_sym_STAR, - ACTIONS(991), 1, + ACTIONS(967), 1, anon_sym_LBRACK, - ACTIONS(993), 1, + ACTIONS(969), 1, anon_sym_await, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1370), 1, + STATE(1345), 1, sym_list_splat_pattern, - STATE(1614), 1, + STATE(1593), 1, sym_pattern, - STATE(1616), 1, + STATE(1598), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(684), 2, + ACTIONS(660), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(989), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - STATE(1371), 2, + STATE(1346), 2, sym_attribute, sym_subscript, - STATE(1628), 2, + STATE(1597), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(987), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -32075,7 +31125,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(981), 17, + ACTIONS(957), 17, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -32094,58 +31144,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, [4213] = 22, - ACTIONS(311), 1, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(304), 1, anon_sym_TILDE, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(979), 1, + ACTIONS(955), 1, sym_identifier, - ACTIONS(983), 1, + ACTIONS(959), 1, anon_sym_LPAREN, - ACTIONS(985), 1, + ACTIONS(961), 1, anon_sym_STAR, - ACTIONS(991), 1, + ACTIONS(967), 1, anon_sym_LBRACK, - ACTIONS(993), 1, + ACTIONS(969), 1, anon_sym_await, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1370), 1, + STATE(1345), 1, sym_list_splat_pattern, - STATE(1614), 1, + STATE(1593), 1, sym_pattern, - STATE(1616), 1, + STATE(1598), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(684), 2, + ACTIONS(660), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(989), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - STATE(1371), 2, + STATE(1346), 2, sym_attribute, sym_subscript, - STATE(1628), 2, + STATE(1597), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(987), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -32160,7 +31210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(995), 17, + ACTIONS(971), 17, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -32179,72 +31229,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, [4320] = 27, - ACTIONS(702), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(869), 1, + ACTIONS(891), 1, anon_sym_yield, - ACTIONS(997), 1, + ACTIONS(973), 1, sym_identifier, - ACTIONS(999), 1, + ACTIONS(975), 1, anon_sym_LPAREN, - ACTIONS(1001), 1, + ACTIONS(977), 1, anon_sym_STAR, - ACTIONS(1007), 1, + ACTIONS(983), 1, anon_sym_LBRACK, - ACTIONS(1009), 1, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(1013), 1, + ACTIONS(989), 1, anon_sym_await, - STATE(927), 1, + STATE(901), 1, sym_primary_expression, - STATE(983), 1, + STATE(975), 1, sym_string, - STATE(1153), 1, + STATE(1181), 1, sym_list_splat_pattern, - STATE(1737), 1, + STATE(1720), 1, sym_expression, - STATE(2559), 1, + STATE(2579), 1, sym_pattern, - STATE(2781), 1, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(1005), 2, + ACTIONS(981), 2, anon_sym_match, anon_sym_type, - STATE(1154), 2, + STATE(1183), 2, sym_attribute, sym_subscript, - STATE(1650), 2, + STATE(1626), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(700), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1003), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2070), 4, + STATE(2057), 4, sym_expression_list, sym_pattern_list, sym_yield, sym__f_expression, - STATE(1760), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32252,7 +31302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 14, + STATE(1279), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -32268,70 +31318,70 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4436] = 27, - ACTIONS(737), 1, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(811), 1, anon_sym_STAR_STAR, - ACTIONS(1015), 1, + ACTIONS(991), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(993), 1, anon_sym_STAR, - ACTIONS(1021), 1, + ACTIONS(997), 1, anon_sym_match, - ACTIONS(1023), 1, + ACTIONS(999), 1, anon_sym_type, - ACTIONS(1025), 1, + ACTIONS(1001), 1, anon_sym_RBRACK, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1756), 1, sym_expression, - STATE(2079), 1, + STATE(2040), 1, sym_type, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, + STATE(2046), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32339,7 +31389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32357,70 +31407,70 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4552] = 27, - ACTIONS(737), 1, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(811), 1, anon_sym_STAR_STAR, - ACTIONS(1015), 1, + ACTIONS(991), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(993), 1, anon_sym_STAR, - ACTIONS(1021), 1, + ACTIONS(997), 1, anon_sym_match, - ACTIONS(1023), 1, + ACTIONS(999), 1, anon_sym_type, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1033), 1, + ACTIONS(1009), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1756), 1, sym_expression, - STATE(2079), 1, + STATE(2040), 1, sym_type, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, + STATE(2046), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32428,7 +31478,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32446,70 +31496,70 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4668] = 27, - ACTIONS(737), 1, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(811), 1, anon_sym_STAR_STAR, - ACTIONS(1015), 1, + ACTIONS(991), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(993), 1, anon_sym_STAR, - ACTIONS(1021), 1, + ACTIONS(997), 1, anon_sym_match, - ACTIONS(1023), 1, + ACTIONS(999), 1, anon_sym_type, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1035), 1, + ACTIONS(1011), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1756), 1, sym_expression, - STATE(2079), 1, + STATE(2040), 1, sym_type, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, + STATE(2046), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32517,7 +31567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32535,70 +31585,70 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4784] = 27, - ACTIONS(737), 1, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(811), 1, anon_sym_STAR_STAR, - ACTIONS(1015), 1, + ACTIONS(991), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(993), 1, anon_sym_STAR, - ACTIONS(1021), 1, + ACTIONS(997), 1, anon_sym_match, - ACTIONS(1023), 1, + ACTIONS(999), 1, anon_sym_type, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1037), 1, + ACTIONS(1013), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1756), 1, sym_expression, - STATE(2079), 1, + STATE(2040), 1, sym_type, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, + STATE(2046), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32606,7 +31656,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32624,70 +31674,70 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4900] = 27, - ACTIONS(737), 1, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(811), 1, anon_sym_STAR_STAR, - ACTIONS(1015), 1, + ACTIONS(991), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(993), 1, anon_sym_STAR, - ACTIONS(1021), 1, + ACTIONS(997), 1, anon_sym_match, - ACTIONS(1023), 1, + ACTIONS(999), 1, anon_sym_type, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1039), 1, + ACTIONS(1015), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1756), 1, sym_expression, - STATE(2079), 1, + STATE(2040), 1, sym_type, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, + STATE(2046), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32695,7 +31745,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32713,70 +31763,70 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [5016] = 27, - ACTIONS(737), 1, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(811), 1, anon_sym_STAR_STAR, - ACTIONS(1015), 1, + ACTIONS(991), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(993), 1, anon_sym_STAR, - ACTIONS(1021), 1, + ACTIONS(997), 1, anon_sym_match, - ACTIONS(1023), 1, + ACTIONS(999), 1, anon_sym_type, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1041), 1, + ACTIONS(1017), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1756), 1, sym_expression, - STATE(2079), 1, + STATE(2040), 1, sym_type, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, + STATE(2046), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32784,7 +31834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32802,72 +31852,70 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [5132] = 27, - ACTIONS(702), 1, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(869), 1, - anon_sym_yield, - ACTIONS(997), 1, + ACTIONS(811), 1, + anon_sym_STAR_STAR, + ACTIONS(991), 1, sym_identifier, - ACTIONS(999), 1, - anon_sym_LPAREN, - ACTIONS(1001), 1, + ACTIONS(993), 1, anon_sym_STAR, - ACTIONS(1007), 1, - anon_sym_LBRACK, - ACTIONS(1009), 1, + ACTIONS(997), 1, + anon_sym_match, + ACTIONS(999), 1, + anon_sym_type, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1013), 1, + ACTIONS(1007), 1, anon_sym_await, - STATE(927), 1, + ACTIONS(1019), 1, + anon_sym_RBRACK, + STATE(963), 1, sym_primary_expression, - STATE(983), 1, + STATE(1081), 1, sym_string, - STATE(1153), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1737), 1, + STATE(1756), 1, sym_expression, - STATE(2559), 1, - sym_pattern, - STATE(2781), 1, + STATE(2040), 1, + sym_type, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1005), 2, - anon_sym_match, - anon_sym_type, - STATE(1154), 2, - sym_attribute, - sym_subscript, - STATE(1650), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(700), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1003), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2034), 4, - sym_expression_list, - sym_pattern_list, - sym_yield, - sym__f_expression, - STATE(1760), 7, + STATE(2046), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32875,9 +31923,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 14, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -32891,70 +31941,70 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [5248] = 27, - ACTIONS(737), 1, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(811), 1, anon_sym_STAR_STAR, - ACTIONS(1015), 1, + ACTIONS(991), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(993), 1, anon_sym_STAR, - ACTIONS(1021), 1, + ACTIONS(997), 1, anon_sym_match, - ACTIONS(1023), 1, + ACTIONS(999), 1, anon_sym_type, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1043), 1, + ACTIONS(1021), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1756), 1, sym_expression, - STATE(2079), 1, + STATE(2040), 1, sym_type, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, + STATE(2046), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32962,7 +32012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32980,70 +32030,72 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [5364] = 27, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(835), 1, - anon_sym_STAR_STAR, - ACTIONS(1015), 1, + ACTIONS(891), 1, + anon_sym_yield, + ACTIONS(973), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(975), 1, + anon_sym_LPAREN, + ACTIONS(977), 1, anon_sym_STAR, - ACTIONS(1021), 1, - anon_sym_match, - ACTIONS(1023), 1, - anon_sym_type, - ACTIONS(1027), 1, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(989), 1, anon_sym_await, - ACTIONS(1045), 1, - anon_sym_RBRACK, - STATE(992), 1, + STATE(901), 1, sym_primary_expression, - STATE(1110), 1, + STATE(975), 1, sym_string, - STATE(1451), 1, + STATE(1181), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1720), 1, sym_expression, - STATE(2079), 1, - sym_type, - STATE(2786), 1, + STATE(2579), 1, + sym_pattern, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(981), 2, + anon_sym_match, + anon_sym_type, + STATE(1183), 2, + sym_attribute, + sym_subscript, + STATE(1626), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1768), 7, + STATE(1999), 4, + sym_expression_list, + sym_pattern_list, + sym_yield, + sym__f_expression, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33051,11 +32103,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1279), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -33069,68 +32119,68 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [5480] = 26, - ACTIONS(737), 1, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(811), 1, anon_sym_STAR_STAR, - ACTIONS(1015), 1, + ACTIONS(991), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(993), 1, anon_sym_STAR, - ACTIONS(1021), 1, + ACTIONS(997), 1, anon_sym_match, - ACTIONS(1023), 1, + ACTIONS(999), 1, anon_sym_type, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1756), 1, sym_expression, - STATE(2011), 1, + STATE(1931), 1, sym_type, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, + STATE(2046), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33138,7 +32188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33156,68 +32206,68 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [5593] = 26, - ACTIONS(275), 1, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(721), 1, + anon_sym_LBRACK, + ACTIONS(725), 1, + anon_sym_LBRACE, + ACTIONS(731), 1, + sym_string_start, + ACTIONS(1023), 1, sym_identifier, - ACTIONS(297), 1, + ACTIONS(1025), 1, + anon_sym_STAR, + ACTIONS(1029), 1, anon_sym_match, - ACTIONS(302), 1, + ACTIONS(1031), 1, + anon_sym_STAR_STAR, + ACTIONS(1033), 1, anon_sym_type, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(345), 1, - anon_sym_STAR_STAR, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1047), 1, - anon_sym_STAR, - ACTIONS(1049), 1, - anon_sym_not, - STATE(971), 1, + STATE(953), 1, sym_primary_expression, - STATE(1025), 1, + STATE(995), 1, sym_string, - STATE(1325), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1733), 1, sym_expression, - STATE(2477), 1, + STATE(1967), 1, sym_type, - STATE(2678), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1027), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2098), 5, + STATE(1922), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1738), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33225,7 +32275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33243,68 +32293,68 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [5706] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(399), 1, - anon_sym_match, - ACTIONS(410), 1, - anon_sym_await, - ACTIONS(653), 1, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(725), 1, + anon_sym_LBRACE, + ACTIONS(731), 1, + sym_string_start, + ACTIONS(1023), 1, sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1025), 1, anon_sym_STAR, - ACTIONS(1055), 1, + ACTIONS(1029), 1, + anon_sym_match, + ACTIONS(1031), 1, anon_sym_STAR_STAR, - ACTIONS(1057), 1, + ACTIONS(1033), 1, anon_sym_type, - STATE(870), 1, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, + anon_sym_lambda, + ACTIONS(1039), 1, + anon_sym_await, + STATE(953), 1, sym_primary_expression, - STATE(969), 1, + STATE(995), 1, sym_string, - STATE(1135), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1740), 1, + STATE(1733), 1, sym_expression, - STATE(1920), 1, + STATE(1881), 1, sym_type, - STATE(2672), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1027), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1952), 5, + STATE(1922), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1679), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33312,7 +32362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33338,33 +32388,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym_string_start, - ACTIONS(399), 1, + ACTIONS(387), 1, anon_sym_match, - ACTIONS(410), 1, + ACTIONS(398), 1, anon_sym_await, - ACTIONS(653), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(1041), 1, sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1043), 1, anon_sym_STAR, - ACTIONS(1055), 1, + ACTIONS(1045), 1, anon_sym_STAR_STAR, - ACTIONS(1057), 1, + ACTIONS(1047), 1, anon_sym_type, - STATE(870), 1, + STATE(845), 1, sym_primary_expression, - STATE(969), 1, + STATE(954), 1, sym_string, - STATE(1135), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1740), 1, + STATE(1724), 1, sym_expression, - STATE(1922), 1, + STATE(1991), 1, sym_type, - STATE(2672), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -33376,7 +32426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -33385,13 +32435,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1952), 5, + STATE(1973), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1679), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33399,7 +32449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33416,71 +32466,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5932] = 28, - ACTIONS(769), 1, - anon_sym_LBRACK, - ACTIONS(773), 1, + [5932] = 26, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(285), 1, + anon_sym_match, + ACTIONS(290), 1, + anon_sym_type, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(306), 1, + anon_sym_lambda, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(333), 1, + anon_sym_STAR_STAR, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1049), 1, anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(889), 1, - anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1063), 1, - anon_sym_RPAREN, - ACTIONS(1069), 1, - anon_sym_await, - STATE(972), 1, + STATE(952), 1, sym_primary_expression, - STATE(1044), 1, + STATE(984), 1, sym_string, - STATE(1390), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1693), 1, + STATE(1762), 1, sym_expression, - STATE(2326), 1, - sym_with_item, - STATE(2499), 1, - sym_yield, - STATE(2684), 1, + STATE(1996), 1, + sym_type, + STATE(2729), 1, sym__named_expression_lhs, - STATE(2778), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, - anon_sym_match, - anon_sym_type, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(771), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(2074), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33488,7 +32536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33505,69 +32553,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6049] = 26, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(297), 1, - anon_sym_match, - ACTIONS(302), 1, - anon_sym_type, - ACTIONS(311), 1, + [6045] = 27, + ACTIONS(721), 1, + anon_sym_LBRACK, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(345), 1, - anon_sym_STAR_STAR, - ACTIONS(672), 1, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, + anon_sym_lambda, + ACTIONS(1053), 1, + sym_identifier, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(1057), 1, + anon_sym_RPAREN, + ACTIONS(1059), 1, + anon_sym_COMMA, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1049), 1, - anon_sym_not, - STATE(971), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, + anon_sym_await, + STATE(953), 1, sym_primary_expression, - STATE(1025), 1, + STATE(995), 1, sym_string, - STATE(1325), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1827), 1, sym_expression, - STATE(2356), 1, - sym_type, - STATE(2678), 1, + STATE(2242), 1, + sym_parenthesized_list_splat, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1065), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1063), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2241), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2098), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1738), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33575,7 +32624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33592,69 +32641,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6162] = 26, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(791), 1, - anon_sym_LBRACK, - ACTIONS(795), 1, - anon_sym_LBRACE, - ACTIONS(801), 1, - sym_string_start, - ACTIONS(1071), 1, + [6160] = 26, + ACTIONS(263), 1, sym_identifier, - ACTIONS(1073), 1, - anon_sym_STAR, - ACTIONS(1077), 1, + ACTIONS(285), 1, anon_sym_match, - ACTIONS(1079), 1, - anon_sym_STAR_STAR, - ACTIONS(1081), 1, + ACTIONS(290), 1, anon_sym_type, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(314), 1, anon_sym_await, - STATE(967), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(333), 1, + anon_sym_STAR_STAR, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1049), 1, + anon_sym_STAR, + ACTIONS(1051), 1, + anon_sym_not, + STATE(952), 1, sym_primary_expression, - STATE(1034), 1, + STATE(984), 1, sym_string, - STATE(1316), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1746), 1, + STATE(1762), 1, sym_expression, - STATE(1997), 1, + STATE(2402), 1, sym_type, - STATE(2630), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(793), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1919), 5, + STATE(2074), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1748), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33662,7 +32711,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33679,69 +32728,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6275] = 26, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, + [6273] = 28, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(835), 1, - anon_sym_STAR_STAR, - ACTIONS(1015), 1, - sym_identifier, - ACTIONS(1017), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(1021), 1, - anon_sym_match, - ACTIONS(1023), 1, - anon_sym_type, - ACTIONS(1027), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(861), 1, + anon_sym_yield, + ACTIONS(1071), 1, + sym_identifier, + ACTIONS(1073), 1, + anon_sym_LPAREN, + ACTIONS(1075), 1, + anon_sym_RPAREN, + ACTIONS(1081), 1, anon_sym_await, - STATE(992), 1, + STATE(950), 1, sym_primary_expression, - STATE(1110), 1, + STATE(985), 1, sym_string, - STATE(1451), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1687), 1, sym_expression, - STATE(2101), 1, - sym_type, - STATE(2786), 1, + STATE(2474), 1, + sym_with_item, + STATE(2476), 1, + sym_yield, + STATE(2641), 1, + sym__collection_elements, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(1079), 2, + anon_sym_match, + anon_sym_type, + STATE(2287), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1768), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33749,7 +32800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33766,81 +32817,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6388] = 26, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(791), 1, - anon_sym_LBRACK, - ACTIONS(795), 1, + [6390] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(304), 1, + anon_sym_TILDE, + ACTIONS(316), 1, sym_string_start, - ACTIONS(1071), 1, - sym_identifier, - ACTIONS(1073), 1, - anon_sym_STAR, - ACTIONS(1077), 1, - anon_sym_match, - ACTIONS(1079), 1, - anon_sym_STAR_STAR, - ACTIONS(1081), 1, - anon_sym_type, ACTIONS(1083), 1, - anon_sym_not, + sym_identifier, ACTIONS(1085), 1, - anon_sym_lambda, + anon_sym_LPAREN, ACTIONS(1087), 1, + anon_sym_STAR, + ACTIONS(1093), 1, + anon_sym_LBRACK, + ACTIONS(1095), 1, anon_sym_await, - STATE(967), 1, - sym_primary_expression, - STATE(1034), 1, + STATE(984), 1, sym_string, - STATE(1316), 1, + STATE(1475), 1, sym_list_splat_pattern, - STATE(1746), 1, - sym_expression, - STATE(2104), 1, - sym_type, - STATE(2630), 1, - sym__named_expression_lhs, + STATE(1618), 1, + sym_primary_expression, + STATE(1636), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(793), 3, + ACTIONS(660), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(1091), 2, + anon_sym_match, + anon_sym_type, + STATE(1476), 2, + sym_attribute, + sym_subscript, + STATE(1626), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1919), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1748), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1418), 16, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -33853,70 +32884,86 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6501] = 27, - ACTIONS(769), 1, + ACTIONS(957), 15, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [6495] = 27, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(1061), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1073), 1, anon_sym_LPAREN, - ACTIONS(1089), 1, + ACTIONS(1097), 1, sym_identifier, - ACTIONS(1091), 1, + ACTIONS(1099), 1, anon_sym_RPAREN, - ACTIONS(1093), 1, - anon_sym_COMMA, - ACTIONS(1095), 1, - anon_sym_STAR, ACTIONS(1101), 1, - anon_sym_STAR_STAR, + anon_sym_COMMA, ACTIONS(1103), 1, + anon_sym_STAR, + ACTIONS(1109), 1, anon_sym_await, - STATE(972), 1, + STATE(950), 1, sym_primary_expression, - STATE(1044), 1, + STATE(985), 1, sym_string, - STATE(1390), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1694), 1, + STATE(1688), 1, sym_expression, - STATE(2265), 1, + STATE(2368), 1, sym_parenthesized_list_splat, - STATE(2684), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1099), 2, + ACTIONS(1107), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1097), 3, + ACTIONS(1105), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2264), 3, + STATE(2479), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(757), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33924,7 +32971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33941,80 +32988,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6616] = 25, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LBRACK, - ACTIONS(702), 1, + [6610] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(304), 1, + anon_sym_TILDE, + ACTIONS(316), 1, sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, - anon_sym_not, - ACTIONS(1011), 1, - anon_sym_lambda, - ACTIONS(1105), 1, + ACTIONS(1083), 1, sym_identifier, - ACTIONS(1107), 1, - anon_sym_from, - ACTIONS(1115), 1, + ACTIONS(1085), 1, + anon_sym_LPAREN, + ACTIONS(1087), 1, + anon_sym_STAR, + ACTIONS(1093), 1, + anon_sym_LBRACK, + ACTIONS(1095), 1, anon_sym_await, - STATE(927), 1, - sym_primary_expression, - STATE(983), 1, + STATE(984), 1, sym_string, - STATE(1249), 1, + STATE(1475), 1, sym_list_splat_pattern, - STATE(1756), 1, - sym_expression, - STATE(2049), 1, - sym_expression_list, - STATE(2781), 1, - sym__named_expression_lhs, + STATE(1618), 1, + sym_primary_expression, + STATE(1636), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(700), 3, + ACTIONS(660), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(1091), 2, + anon_sym_match, + anon_sym_type, + STATE(1476), 2, + sym_attribute, + sym_subscript, + STATE(1626), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1109), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1760), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1198), 16, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -34027,70 +33055,85 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6727] = 27, - ACTIONS(769), 1, - anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(971), 15, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [6715] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(779), 1, - sym_string_start, - ACTIONS(887), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1061), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(387), 1, + anon_sym_match, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(1089), 1, + ACTIONS(637), 1, + anon_sym_LBRACK, + ACTIONS(1041), 1, sym_identifier, - ACTIONS(1095), 1, + ACTIONS(1043), 1, anon_sym_STAR, - ACTIONS(1101), 1, + ACTIONS(1045), 1, anon_sym_STAR_STAR, - ACTIONS(1103), 1, - anon_sym_await, - ACTIONS(1117), 1, - anon_sym_RPAREN, - ACTIONS(1119), 1, - anon_sym_COMMA, - STATE(972), 1, + ACTIONS(1047), 1, + anon_sym_type, + STATE(845), 1, sym_primary_expression, - STATE(1044), 1, + STATE(954), 1, sym_string, - STATE(1390), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1686), 1, + STATE(1724), 1, sym_expression, - STATE(2501), 1, - sym_parenthesized_list_splat, - STATE(2684), 1, + STATE(1940), 1, + sym_type, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1099), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(771), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1097), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2500), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(757), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1973), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34098,7 +33141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34115,70 +33158,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6842] = 27, - ACTIONS(769), 1, + [6828] = 26, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(887), 1, - anon_sym_not, - ACTIONS(889), 1, - anon_sym_lambda, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1089), 1, + ACTIONS(811), 1, + anon_sym_STAR_STAR, + ACTIONS(991), 1, sym_identifier, - ACTIONS(1095), 1, + ACTIONS(993), 1, anon_sym_STAR, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1103), 1, + ACTIONS(997), 1, + anon_sym_match, + ACTIONS(999), 1, + anon_sym_type, + ACTIONS(1003), 1, + anon_sym_not, + ACTIONS(1005), 1, + anon_sym_lambda, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1121), 1, - anon_sym_RPAREN, - ACTIONS(1123), 1, - anon_sym_COMMA, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1081), 1, sym_string, - STATE(1390), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1682), 1, + STATE(1756), 1, sym_expression, - STATE(2313), 1, - sym_parenthesized_list_splat, - STATE(2684), 1, + STATE(2040), 1, + sym_type, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1099), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(771), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1097), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2312), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(757), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(2046), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34186,7 +33228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34203,69 +33245,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6957] = 26, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(297), 1, - anon_sym_match, - ACTIONS(302), 1, - anon_sym_type, - ACTIONS(311), 1, + [6941] = 27, + ACTIONS(789), 1, + anon_sym_LBRACK, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(345), 1, + ACTIONS(857), 1, + anon_sym_not, + ACTIONS(859), 1, + anon_sym_lambda, + ACTIONS(1067), 1, anon_sym_STAR_STAR, - ACTIONS(672), 1, + ACTIONS(1073), 1, anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(1097), 1, + sym_identifier, + ACTIONS(1103), 1, anon_sym_STAR, - ACTIONS(1049), 1, - anon_sym_not, - STATE(971), 1, + ACTIONS(1109), 1, + anon_sym_await, + ACTIONS(1111), 1, + anon_sym_RPAREN, + ACTIONS(1113), 1, + anon_sym_COMMA, + STATE(950), 1, sym_primary_expression, - STATE(1025), 1, + STATE(985), 1, sym_string, - STATE(1325), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1700), 1, sym_expression, - STATE(2320), 1, - sym_type, - STATE(2678), 1, + STATE(2405), 1, + sym_parenthesized_list_splat, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1107), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1105), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2404), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2098), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1738), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34273,7 +33316,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34290,153 +33333,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7070] = 22, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - anon_sym_TILDE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(1125), 1, + [7056] = 26, + ACTIONS(263), 1, sym_identifier, - ACTIONS(1127), 1, - anon_sym_LPAREN, - ACTIONS(1129), 1, - anon_sym_STAR, - ACTIONS(1135), 1, - anon_sym_LBRACK, - ACTIONS(1137), 1, - anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1489), 1, - sym_list_splat_pattern, - STATE(1625), 1, - sym_primary_expression, - STATE(1640), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(684), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1133), 2, + ACTIONS(285), 1, anon_sym_match, + ACTIONS(290), 1, anon_sym_type, - STATE(1491), 2, - sym_attribute, - sym_subscript, - STATE(1650), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1131), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1311), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - ACTIONS(995), 15, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [7175] = 27, - ACTIONS(769), 1, - anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(779), 1, - sym_string_start, - ACTIONS(887), 1, - anon_sym_not, - ACTIONS(889), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1061), 1, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(333), 1, + anon_sym_STAR_STAR, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(1089), 1, - sym_identifier, - ACTIONS(1095), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1049), 1, anon_sym_STAR, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1103), 1, - anon_sym_await, - ACTIONS(1139), 1, - anon_sym_RPAREN, - ACTIONS(1141), 1, - anon_sym_COMMA, - STATE(972), 1, + ACTIONS(1051), 1, + anon_sym_not, + STATE(952), 1, sym_primary_expression, - STATE(1044), 1, + STATE(984), 1, sym_string, - STATE(1390), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1704), 1, + STATE(1762), 1, sym_expression, - STATE(2358), 1, - sym_parenthesized_list_splat, - STATE(2684), 1, + STATE(2235), 1, + sym_type, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(1099), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(771), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1097), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2357), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(757), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(2074), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34444,7 +33403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34461,69 +33420,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7290] = 26, - ACTIONS(67), 1, + [7169] = 26, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(285), 1, + anon_sym_match, + ACTIONS(290), 1, + anon_sym_type, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(399), 1, - anon_sym_match, - ACTIONS(410), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(653), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(333), 1, + anon_sym_STAR_STAR, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1049), 1, anon_sym_STAR, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1057), 1, - anon_sym_type, - STATE(870), 1, + ACTIONS(1051), 1, + anon_sym_not, + STATE(952), 1, sym_primary_expression, - STATE(969), 1, + STATE(984), 1, sym_string, - STATE(1135), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1740), 1, + STATE(1762), 1, sym_expression, - STATE(1986), 1, + STATE(2265), 1, sym_type, - STATE(2672), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1952), 5, + STATE(2074), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1679), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34531,7 +33490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34548,70 +33507,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7403] = 27, - ACTIONS(769), 1, - anon_sym_LBRACK, - ACTIONS(773), 1, + [7282] = 26, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(285), 1, + anon_sym_match, + ACTIONS(290), 1, + anon_sym_type, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(779), 1, - sym_string_start, - ACTIONS(887), 1, - anon_sym_not, - ACTIONS(889), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1061), 1, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(333), 1, + anon_sym_STAR_STAR, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(1089), 1, - sym_identifier, - ACTIONS(1095), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1049), 1, anon_sym_STAR, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1103), 1, - anon_sym_await, - ACTIONS(1143), 1, - anon_sym_RPAREN, - ACTIONS(1145), 1, - anon_sym_COMMA, - STATE(972), 1, + ACTIONS(1051), 1, + anon_sym_not, + STATE(952), 1, sym_primary_expression, - STATE(1044), 1, + STATE(984), 1, sym_string, - STATE(1390), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1710), 1, + STATE(1762), 1, sym_expression, - STATE(2386), 1, - sym_parenthesized_list_splat, - STATE(2684), 1, + STATE(2449), 1, + sym_type, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(1099), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(771), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1097), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2385), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(757), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(2074), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34619,7 +33577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34636,69 +33594,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7518] = 26, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(297), 1, - anon_sym_match, - ACTIONS(302), 1, - anon_sym_type, - ACTIONS(311), 1, + [7395] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(345), 1, - anon_sym_STAR_STAR, - ACTIONS(672), 1, + ACTIONS(387), 1, + anon_sym_match, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(1041), 1, + sym_identifier, + ACTIONS(1043), 1, anon_sym_STAR, - ACTIONS(1049), 1, - anon_sym_not, - STATE(971), 1, + ACTIONS(1045), 1, + anon_sym_STAR_STAR, + ACTIONS(1047), 1, + anon_sym_type, + STATE(845), 1, sym_primary_expression, - STATE(1025), 1, + STATE(954), 1, sym_string, - STATE(1325), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1724), 1, sym_expression, - STATE(2270), 1, + STATE(1885), 1, sym_type, - STATE(2678), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(383), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2098), 5, + STATE(1973), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1738), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34706,7 +33664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34723,69 +33681,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7631] = 26, - ACTIONS(783), 1, + [7508] = 26, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1071), 1, + ACTIONS(1023), 1, sym_identifier, - ACTIONS(1073), 1, + ACTIONS(1025), 1, anon_sym_STAR, - ACTIONS(1077), 1, + ACTIONS(1029), 1, anon_sym_match, - ACTIONS(1079), 1, + ACTIONS(1031), 1, anon_sym_STAR_STAR, - ACTIONS(1081), 1, + ACTIONS(1033), 1, anon_sym_type, - ACTIONS(1083), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(1039), 1, anon_sym_await, - STATE(967), 1, + STATE(953), 1, sym_primary_expression, - STATE(1034), 1, + STATE(995), 1, sym_string, - STATE(1316), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1746), 1, + STATE(1733), 1, sym_expression, - STATE(1959), 1, + STATE(1924), 1, sym_type, - STATE(2630), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(793), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(1027), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1919), 5, + STATE(1922), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1748), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34793,7 +33751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34810,69 +33768,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7744] = 26, - ACTIONS(737), 1, + [7621] = 26, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(835), 1, - anon_sym_STAR_STAR, - ACTIONS(1015), 1, + ACTIONS(1023), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(1025), 1, anon_sym_STAR, - ACTIONS(1021), 1, + ACTIONS(1029), 1, anon_sym_match, - ACTIONS(1023), 1, + ACTIONS(1031), 1, + anon_sym_STAR_STAR, + ACTIONS(1033), 1, anon_sym_type, - ACTIONS(1027), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1039), 1, anon_sym_await, - STATE(992), 1, + STATE(953), 1, sym_primary_expression, - STATE(1110), 1, + STATE(995), 1, sym_string, - STATE(1451), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1733), 1, sym_expression, - STATE(1950), 1, + STATE(2100), 1, sym_type, - STATE(2786), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1027), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, + STATE(1922), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34880,7 +33838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34897,70 +33855,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7857] = 27, - ACTIONS(769), 1, + [7734] = 27, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(1061), 1, + ACTIONS(1057), 1, + anon_sym_RPAREN, + ACTIONS(1059), 1, + anon_sym_COMMA, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1073), 1, anon_sym_LPAREN, - ACTIONS(1089), 1, + ACTIONS(1097), 1, sym_identifier, - ACTIONS(1095), 1, - anon_sym_STAR, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, ACTIONS(1103), 1, + anon_sym_STAR, + ACTIONS(1109), 1, anon_sym_await, - ACTIONS(1147), 1, - anon_sym_RPAREN, - ACTIONS(1149), 1, - anon_sym_COMMA, - STATE(972), 1, + STATE(950), 1, sym_primary_expression, - STATE(1044), 1, + STATE(985), 1, sym_string, - STATE(1390), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1714), 1, + STATE(1668), 1, sym_expression, - STATE(2413), 1, + STATE(2242), 1, sym_parenthesized_list_splat, - STATE(2684), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1099), 2, + ACTIONS(1107), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1097), 3, + ACTIONS(1105), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2412), 3, + STATE(2241), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(757), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34968,7 +33926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34985,69 +33943,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7972] = 26, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(297), 1, - anon_sym_match, - ACTIONS(302), 1, - anon_sym_type, - ACTIONS(311), 1, + [7849] = 27, + ACTIONS(789), 1, + anon_sym_LBRACK, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(345), 1, + ACTIONS(857), 1, + anon_sym_not, + ACTIONS(859), 1, + anon_sym_lambda, + ACTIONS(1067), 1, anon_sym_STAR_STAR, - ACTIONS(672), 1, + ACTIONS(1073), 1, anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(1097), 1, + sym_identifier, + ACTIONS(1103), 1, anon_sym_STAR, - ACTIONS(1049), 1, - anon_sym_not, - STATE(971), 1, + ACTIONS(1109), 1, + anon_sym_await, + ACTIONS(1115), 1, + anon_sym_RPAREN, + ACTIONS(1117), 1, + anon_sym_COMMA, + STATE(950), 1, sym_primary_expression, - STATE(1025), 1, + STATE(985), 1, sym_string, - STATE(1325), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1677), 1, sym_expression, - STATE(2397), 1, - sym_type, - STATE(2678), 1, + STATE(2286), 1, + sym_parenthesized_list_splat, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1107), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1105), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2285), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2098), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1738), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35055,7 +34014,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35072,69 +34031,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8085] = 26, - ACTIONS(275), 1, + [7964] = 26, + ACTIONS(263), 1, sym_identifier, - ACTIONS(297), 1, + ACTIONS(285), 1, anon_sym_match, - ACTIONS(302), 1, + ACTIONS(290), 1, anon_sym_type, - ACTIONS(311), 1, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(345), 1, + ACTIONS(333), 1, anon_sym_STAR_STAR, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1047), 1, - anon_sym_STAR, ACTIONS(1049), 1, + anon_sym_STAR, + ACTIONS(1051), 1, anon_sym_not, - STATE(971), 1, + STATE(952), 1, sym_primary_expression, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1762), 1, sym_expression, - STATE(2109), 1, + STATE(2301), 1, sym_type, - STATE(2678), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2098), 5, + STATE(2074), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1738), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35142,7 +34101,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35159,70 +34118,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8198] = 27, - ACTIONS(769), 1, + [8077] = 27, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(1061), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1073), 1, anon_sym_LPAREN, - ACTIONS(1089), 1, + ACTIONS(1097), 1, sym_identifier, - ACTIONS(1095), 1, - anon_sym_STAR, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, ACTIONS(1103), 1, + anon_sym_STAR, + ACTIONS(1109), 1, anon_sym_await, - ACTIONS(1151), 1, + ACTIONS(1119), 1, anon_sym_RPAREN, - ACTIONS(1153), 1, + ACTIONS(1121), 1, anon_sym_COMMA, - STATE(972), 1, + STATE(950), 1, sym_primary_expression, - STATE(1044), 1, + STATE(985), 1, sym_string, - STATE(1390), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1718), 1, + STATE(1684), 1, sym_expression, - STATE(2439), 1, + STATE(2333), 1, sym_parenthesized_list_splat, - STATE(2684), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1099), 2, + ACTIONS(1107), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1097), 3, + ACTIONS(1105), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2438), 3, + STATE(2332), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(757), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35230,7 +34189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35247,69 +34206,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8313] = 26, - ACTIONS(67), 1, + [8192] = 26, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(285), 1, + anon_sym_match, + ACTIONS(290), 1, + anon_sym_type, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(399), 1, - anon_sym_match, - ACTIONS(410), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(653), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(333), 1, + anon_sym_STAR_STAR, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1049), 1, anon_sym_STAR, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1057), 1, - anon_sym_type, - STATE(870), 1, + ACTIONS(1051), 1, + anon_sym_not, + STATE(952), 1, sym_primary_expression, - STATE(969), 1, + STATE(984), 1, sym_string, - STATE(1135), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1740), 1, + STATE(1762), 1, sym_expression, - STATE(2100), 1, + STATE(1987), 1, sym_type, - STATE(2672), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1952), 5, + STATE(2074), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1679), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35317,7 +34276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35334,69 +34293,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8426] = 26, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(297), 1, - anon_sym_match, - ACTIONS(302), 1, - anon_sym_type, - ACTIONS(311), 1, + [8305] = 26, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(345), 1, + ACTIONS(811), 1, anon_sym_STAR_STAR, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(991), 1, + sym_identifier, + ACTIONS(993), 1, anon_sym_STAR, - ACTIONS(1049), 1, + ACTIONS(997), 1, + anon_sym_match, + ACTIONS(999), 1, + anon_sym_type, + ACTIONS(1003), 1, anon_sym_not, - STATE(971), 1, - sym_primary_expression, - STATE(1025), 1, + ACTIONS(1005), 1, + anon_sym_lambda, + ACTIONS(1007), 1, + anon_sym_await, + STATE(963), 1, + sym_primary_expression, + STATE(1081), 1, sym_string, - STATE(1325), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1756), 1, sym_expression, - STATE(2083), 1, + STATE(2084), 1, sym_type, - STATE(2678), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(995), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2098), 5, + STATE(2046), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1738), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35404,7 +34363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35421,70 +34380,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8539] = 27, - ACTIONS(791), 1, + [8418] = 27, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(1091), 1, - anon_sym_RPAREN, - ACTIONS(1093), 1, - anon_sym_COMMA, - ACTIONS(1101), 1, + ACTIONS(1067), 1, anon_sym_STAR_STAR, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1073), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1097), 1, + sym_identifier, + ACTIONS(1103), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1109), 1, anon_sym_await, - STATE(967), 1, + ACTIONS(1123), 1, + anon_sym_RPAREN, + ACTIONS(1125), 1, + anon_sym_COMMA, + STATE(950), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1865), 1, + STATE(1690), 1, sym_expression, - STATE(2265), 1, + STATE(2232), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1107), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1105), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2264), 3, + STATE(2361), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35492,7 +34451,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35509,63 +34468,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8654] = 26, - ACTIONS(783), 1, + [8533] = 26, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1071), 1, + ACTIONS(811), 1, + anon_sym_STAR_STAR, + ACTIONS(991), 1, sym_identifier, - ACTIONS(1073), 1, + ACTIONS(993), 1, anon_sym_STAR, - ACTIONS(1077), 1, + ACTIONS(997), 1, anon_sym_match, - ACTIONS(1079), 1, - anon_sym_STAR_STAR, - ACTIONS(1081), 1, + ACTIONS(999), 1, anon_sym_type, - ACTIONS(1083), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(1007), 1, anon_sym_await, - STATE(967), 1, + STATE(963), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1081), 1, sym_string, - STATE(1316), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1746), 1, + STATE(1756), 1, sym_expression, - STATE(1989), 1, + STATE(2085), 1, sym_type, - STATE(2630), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(793), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1919), 5, + STATE(2046), 5, sym_splat_type, sym_generic_type, sym_union_type, @@ -35579,7 +34538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35596,70 +34555,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8767] = 27, - ACTIONS(769), 1, + [8646] = 27, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(1061), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1073), 1, anon_sym_LPAREN, - ACTIONS(1089), 1, + ACTIONS(1097), 1, sym_identifier, - ACTIONS(1095), 1, - anon_sym_STAR, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, ACTIONS(1103), 1, + anon_sym_STAR, + ACTIONS(1109), 1, anon_sym_await, - ACTIONS(1167), 1, + ACTIONS(1127), 1, anon_sym_RPAREN, - ACTIONS(1169), 1, + ACTIONS(1129), 1, anon_sym_COMMA, - STATE(972), 1, + STATE(950), 1, sym_primary_expression, - STATE(1044), 1, + STATE(985), 1, sym_string, - STATE(1390), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1699), 1, + STATE(1695), 1, sym_expression, - STATE(2315), 1, + STATE(2384), 1, sym_parenthesized_list_splat, - STATE(2684), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1099), 2, + ACTIONS(1107), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1097), 3, + ACTIONS(1105), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2309), 3, + STATE(2383), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(757), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35667,7 +34626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35684,69 +34643,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8882] = 26, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, + [8761] = 27, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(857), 1, + anon_sym_not, + ACTIONS(859), 1, + anon_sym_lambda, + ACTIONS(1067), 1, anon_sym_STAR_STAR, - ACTIONS(1015), 1, + ACTIONS(1073), 1, + anon_sym_LPAREN, + ACTIONS(1097), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(1103), 1, anon_sym_STAR, - ACTIONS(1021), 1, - anon_sym_match, - ACTIONS(1023), 1, - anon_sym_type, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, - anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1109), 1, anon_sym_await, - STATE(992), 1, + ACTIONS(1131), 1, + anon_sym_RPAREN, + ACTIONS(1133), 1, + anon_sym_COMMA, + STATE(950), 1, sym_primary_expression, - STATE(1110), 1, + STATE(985), 1, sym_string, - STATE(1451), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1701), 1, sym_expression, - STATE(1943), 1, - sym_type, - STATE(2786), 1, + STATE(2409), 1, + sym_parenthesized_list_splat, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(1107), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1105), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + STATE(2408), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1768), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35754,7 +34714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35771,69 +34731,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8995] = 26, - ACTIONS(737), 1, + [8876] = 25, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(835), 1, - anon_sym_STAR_STAR, - ACTIONS(1015), 1, - sym_identifier, - ACTIONS(1017), 1, + ACTIONS(977), 1, anon_sym_STAR, - ACTIONS(1021), 1, - anon_sym_match, - ACTIONS(1023), 1, - anon_sym_type, - ACTIONS(1027), 1, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1135), 1, + sym_identifier, + ACTIONS(1137), 1, + anon_sym_from, + ACTIONS(1145), 1, anon_sym_await, - STATE(992), 1, + STATE(901), 1, sym_primary_expression, - STATE(1110), 1, + STATE(975), 1, sym_string, - STATE(1451), 1, + STATE(1197), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1734), 1, sym_expression, - STATE(1998), 1, - sym_type, - STATE(2786), 1, + STATE(2021), 1, + sym_expression_list, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(1143), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1768), 7, + ACTIONS(1139), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35841,7 +34800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35858,69 +34817,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9108] = 26, - ACTIONS(737), 1, + [8987] = 26, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(811), 1, anon_sym_STAR_STAR, - ACTIONS(1015), 1, + ACTIONS(991), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(993), 1, anon_sym_STAR, - ACTIONS(1021), 1, + ACTIONS(997), 1, anon_sym_match, - ACTIONS(1023), 1, + ACTIONS(999), 1, anon_sym_type, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1756), 1, sym_expression, - STATE(1911), 1, + STATE(1945), 1, sym_type, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, + STATE(2046), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35928,7 +34887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35945,61 +34904,81 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9221] = 22, - ACTIONS(311), 1, + [9100] = 26, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(316), 1, - anon_sym_TILDE, - ACTIONS(328), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1125), 1, + ACTIONS(811), 1, + anon_sym_STAR_STAR, + ACTIONS(991), 1, sym_identifier, - ACTIONS(1127), 1, - anon_sym_LPAREN, - ACTIONS(1129), 1, + ACTIONS(993), 1, anon_sym_STAR, - ACTIONS(1135), 1, - anon_sym_LBRACK, - ACTIONS(1137), 1, + ACTIONS(997), 1, + anon_sym_match, + ACTIONS(999), 1, + anon_sym_type, + ACTIONS(1003), 1, + anon_sym_not, + ACTIONS(1005), 1, + anon_sym_lambda, + ACTIONS(1007), 1, anon_sym_await, - STATE(1025), 1, + STATE(963), 1, + sym_primary_expression, + STATE(1081), 1, sym_string, - STATE(1489), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1625), 1, - sym_primary_expression, - STATE(1640), 1, - sym_pattern, + STATE(1756), 1, + sym_expression, + STATE(1914), 1, + sym_type, + STATE(2585), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(684), 2, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1133), 2, - anon_sym_match, - anon_sym_type, - STATE(1491), 2, - sym_attribute, - sym_subscript, - STATE(1650), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1131), 3, + anon_sym_TILDE, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(2046), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1748), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -36012,85 +34991,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(981), 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, - [9326] = 26, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(297), 1, - anon_sym_match, - ACTIONS(302), 1, - anon_sym_type, - ACTIONS(311), 1, + [9213] = 26, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(345), 1, + ACTIONS(811), 1, anon_sym_STAR_STAR, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(991), 1, + sym_identifier, + ACTIONS(993), 1, anon_sym_STAR, - ACTIONS(1049), 1, + ACTIONS(997), 1, + anon_sym_match, + ACTIONS(999), 1, + anon_sym_type, + ACTIONS(1003), 1, anon_sym_not, - STATE(971), 1, + ACTIONS(1005), 1, + anon_sym_lambda, + ACTIONS(1007), 1, + anon_sym_await, + STATE(963), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1081), 1, sym_string, - STATE(1325), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1756), 1, sym_expression, - STATE(2474), 1, + STATE(1895), 1, sym_type, - STATE(2678), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(995), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2098), 5, + STATE(2046), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1738), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36098,7 +35061,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36115,69 +35078,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9439] = 26, - ACTIONS(275), 1, + [9326] = 26, + ACTIONS(263), 1, sym_identifier, - ACTIONS(297), 1, + ACTIONS(285), 1, anon_sym_match, - ACTIONS(302), 1, + ACTIONS(290), 1, anon_sym_type, - ACTIONS(311), 1, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(345), 1, + ACTIONS(333), 1, anon_sym_STAR_STAR, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1047), 1, - anon_sym_STAR, ACTIONS(1049), 1, + anon_sym_STAR, + ACTIONS(1051), 1, anon_sym_not, - STATE(971), 1, + STATE(952), 1, sym_primary_expression, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1762), 1, sym_expression, - STATE(2253), 1, + STATE(2445), 1, sym_type, - STATE(2678), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2098), 5, + STATE(2074), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1738), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36185,7 +35148,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36202,69 +35165,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9552] = 26, - ACTIONS(275), 1, + [9439] = 26, + ACTIONS(263), 1, sym_identifier, - ACTIONS(297), 1, + ACTIONS(285), 1, anon_sym_match, - ACTIONS(302), 1, + ACTIONS(290), 1, anon_sym_type, - ACTIONS(311), 1, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(345), 1, + ACTIONS(333), 1, anon_sym_STAR_STAR, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1047), 1, - anon_sym_STAR, ACTIONS(1049), 1, + anon_sym_STAR, + ACTIONS(1051), 1, anon_sym_not, - STATE(971), 1, + STATE(952), 1, sym_primary_expression, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1762), 1, sym_expression, - STATE(2476), 1, + STATE(2447), 1, sym_type, - STATE(2678), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2098), 5, + STATE(2074), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1738), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36272,7 +35235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36289,69 +35252,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9665] = 26, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, - anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(835), 1, - anon_sym_STAR_STAR, - ACTIONS(1015), 1, + [9552] = 26, + ACTIONS(263), 1, sym_identifier, - ACTIONS(1017), 1, - anon_sym_STAR, - ACTIONS(1021), 1, + ACTIONS(285), 1, anon_sym_match, - ACTIONS(1023), 1, + ACTIONS(290), 1, anon_sym_type, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(314), 1, anon_sym_await, - STATE(992), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(333), 1, + anon_sym_STAR_STAR, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1049), 1, + anon_sym_STAR, + ACTIONS(1051), 1, + anon_sym_not, + STATE(952), 1, sym_primary_expression, - STATE(1110), 1, + STATE(984), 1, sym_string, - STATE(1451), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1762), 1, sym_expression, - STATE(2079), 1, + STATE(2448), 1, sym_type, - STATE(2786), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, + STATE(2074), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36359,7 +35322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36376,68 +35339,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9778] = 26, - ACTIONS(813), 1, - anon_sym_LBRACK, - ACTIONS(817), 1, + [9665] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(823), 1, - sym_string_start, - ACTIONS(827), 1, - anon_sym_LPAREN, - ACTIONS(841), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(847), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(387), 1, + anon_sym_match, + ACTIONS(398), 1, anon_sym_await, - ACTIONS(899), 1, - anon_sym_STAR, - ACTIONS(1171), 1, + ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(637), 1, + anon_sym_LBRACK, + ACTIONS(1041), 1, sym_identifier, - ACTIONS(1173), 1, - anon_sym_RBRACK, - STATE(928), 1, + ACTIONS(1043), 1, + anon_sym_STAR, + ACTIONS(1045), 1, + anon_sym_STAR_STAR, + ACTIONS(1047), 1, + anon_sym_type, + STATE(845), 1, sym_primary_expression, - STATE(977), 1, + STATE(954), 1, sym_string, - STATE(1200), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1731), 1, + STATE(1724), 1, sym_expression, - STATE(2618), 1, - sym__collection_elements, - STATE(2649), 1, + STATE(1883), 1, + sym_type, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(815), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(803), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1973), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36445,7 +35409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36462,70 +35426,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9890] = 28, - ACTIONS(769), 1, + [9778] = 28, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(861), 1, anon_sym_yield, - ACTIONS(1059), 1, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1073), 1, anon_sym_LPAREN, - ACTIONS(1069), 1, + ACTIONS(1081), 1, anon_sym_await, - ACTIONS(1175), 1, + ACTIONS(1147), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(950), 1, sym_primary_expression, - STATE(1044), 1, + STATE(985), 1, sym_string, - STATE(1390), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1717), 1, + STATE(1683), 1, sym_expression, - STATE(2430), 1, - sym_yield, - STATE(2488), 1, + STATE(2238), 1, sym_list_splat, - STATE(2489), 1, + STATE(2239), 1, sym_parenthesized_list_splat, - STATE(2615), 1, + STATE(2322), 1, + sym_yield, + STATE(2659), 1, sym__collection_elements, - STATE(2684), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36533,7 +35497,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36550,68 +35514,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10006] = 26, - ACTIONS(791), 1, + [9894] = 28, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(849), 1, + anon_sym_STAR, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(861), 1, + anon_sym_yield, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1073), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1081), 1, anon_sym_await, - ACTIONS(1177), 1, + ACTIONS(1149), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(950), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1678), 1, sym_expression, - STATE(2550), 1, + STATE(2318), 1, + sym_list_splat, + STATE(2325), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2456), 1, + sym_yield, + STATE(2698), 1, sym__named_expression_lhs, + STATE(2712), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36619,7 +35585,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36636,68 +35602,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10118] = 26, - ACTIONS(813), 1, + [10010] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(827), 1, - anon_sym_LPAREN, - ACTIONS(841), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(899), 1, - anon_sym_STAR, - ACTIONS(1171), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1179), 1, - anon_sym_RBRACK, - STATE(928), 1, + ACTIONS(1055), 1, + anon_sym_LPAREN, + ACTIONS(1061), 1, + anon_sym_STAR, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, + anon_sym_await, + ACTIONS(1151), 1, + anon_sym_RPAREN, + STATE(953), 1, sym_primary_expression, - STATE(977), 1, + STATE(995), 1, sym_string, - STATE(1200), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1727), 1, + STATE(1952), 1, sym_expression, - STATE(2649), 1, + STATE(2516), 1, + sym_parenthesized_list_splat, + STATE(2638), 1, sym__named_expression_lhs, - STATE(2667), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2512), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(803), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36705,7 +35671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36722,70 +35688,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10230] = 28, - ACTIONS(769), 1, + [10122] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(879), 1, - anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1059), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, + ACTIONS(1061), 1, + anon_sym_STAR, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1181), 1, + ACTIONS(1153), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(953), 1, sym_primary_expression, - STATE(1044), 1, + STATE(995), 1, sym_string, - STATE(1390), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1698), 1, + STATE(1952), 1, sym_expression, - STATE(2304), 1, - sym_yield, - STATE(2488), 1, - sym_list_splat, - STATE(2489), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2684), 1, + STATE(2638), 1, sym__named_expression_lhs, - STATE(2691), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2512), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36793,7 +35757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36810,68 +35774,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10346] = 26, - ACTIONS(791), 1, + [10234] = 27, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(849), 1, + anon_sym_STAR, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(861), 1, + anon_sym_yield, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1073), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, - anon_sym_await, - ACTIONS(1183), 1, + ACTIONS(1075), 1, anon_sym_RPAREN, - STATE(967), 1, + ACTIONS(1081), 1, + anon_sym_await, + STATE(950), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1718), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2476), 1, + sym_yield, + STATE(2641), 1, + sym__collection_elements, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + STATE(2287), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36879,7 +35844,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36896,68 +35861,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10458] = 26, - ACTIONS(791), 1, + [10348] = 26, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(803), 1, + anon_sym_LPAREN, + ACTIONS(815), 1, + anon_sym_RBRACK, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, + ACTIONS(821), 1, + anon_sym_yield, + ACTIONS(823), 1, + anon_sym_await, + ACTIONS(829), 1, + anon_sym_STAR, ACTIONS(1155), 1, sym_identifier, - ACTIONS(1157), 1, - anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, - anon_sym_await, - ACTIONS(1185), 1, - anon_sym_RPAREN, - STATE(967), 1, + STATE(857), 1, sym_primary_expression, - STATE(1034), 1, + STATE(969), 1, sym_string, - STATE(1316), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1707), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2689), 1, + sym__collection_elements, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2280), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36965,7 +35930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36982,68 +35947,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10570] = 26, - ACTIONS(791), 1, + [10460] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1187), 1, + ACTIONS(1157), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(953), 1, sym_primary_expression, - STATE(1034), 1, + STATE(995), 1, sym_string, - STATE(1316), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1952), 1, sym_expression, - STATE(2550), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2512), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37051,7 +36016,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37068,68 +36033,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10682] = 26, - ACTIONS(791), 1, + [10572] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1189), 1, + ACTIONS(1159), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(953), 1, sym_primary_expression, - STATE(1034), 1, + STATE(995), 1, sym_string, - STATE(1316), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1952), 1, sym_expression, - STATE(2550), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2512), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37137,7 +36102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37154,68 +36119,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10794] = 26, - ACTIONS(791), 1, + [10684] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1191), 1, + ACTIONS(1161), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(953), 1, sym_primary_expression, - STATE(1034), 1, + STATE(995), 1, sym_string, - STATE(1316), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1952), 1, sym_expression, - STATE(2550), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2512), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37223,7 +36188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37240,68 +36205,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10906] = 26, - ACTIONS(791), 1, + [10796] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1193), 1, + ACTIONS(1163), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(953), 1, sym_primary_expression, - STATE(1034), 1, + STATE(995), 1, sym_string, - STATE(1316), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1952), 1, sym_expression, - STATE(2550), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2512), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37309,7 +36274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37326,69 +36291,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11018] = 27, - ACTIONS(769), 1, + [10908] = 27, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(861), 1, anon_sym_yield, - ACTIONS(1059), 1, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1073), 1, anon_sym_LPAREN, - ACTIONS(1069), 1, + ACTIONS(1081), 1, anon_sym_await, - ACTIONS(1181), 1, + ACTIONS(1165), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(950), 1, sym_primary_expression, - STATE(1044), 1, + STATE(985), 1, sym_string, - STATE(1390), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1698), 1, + STATE(1693), 1, sym_expression, - STATE(2304), 1, + STATE(2378), 1, sym_yield, - STATE(2684), 1, - sym__named_expression_lhs, - STATE(2691), 1, + STATE(2647), 1, sym__collection_elements, + STATE(2698), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - STATE(2368), 2, + STATE(2287), 2, sym_list_splat, sym_parenthesized_list_splat, - ACTIONS(771), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37396,7 +36361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37413,68 +36378,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11132] = 26, - ACTIONS(813), 1, + [11022] = 26, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(827), 1, + ACTIONS(803), 1, anon_sym_LPAREN, - ACTIONS(841), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(845), 1, + ACTIONS(821), 1, anon_sym_yield, - ACTIONS(847), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(899), 1, + ACTIONS(829), 1, anon_sym_STAR, - ACTIONS(1171), 1, + ACTIONS(1155), 1, sym_identifier, - ACTIONS(1195), 1, + ACTIONS(1167), 1, anon_sym_RBRACK, - STATE(928), 1, + STATE(857), 1, sym_primary_expression, - STATE(977), 1, + STATE(969), 1, sym_string, - STATE(1200), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1725), 1, + STATE(1712), 1, sym_expression, - STATE(2649), 1, - sym__named_expression_lhs, - STATE(2724), 1, + STATE(2666), 1, sym__collection_elements, + STATE(2716), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2280), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(803), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37482,7 +36447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37499,70 +36464,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11244] = 28, - ACTIONS(769), 1, + [11134] = 28, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(861), 1, anon_sym_yield, - ACTIONS(1059), 1, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1073), 1, anon_sym_LPAREN, - ACTIONS(1069), 1, + ACTIONS(1081), 1, anon_sym_await, - ACTIONS(1197), 1, + ACTIONS(1169), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(950), 1, sym_primary_expression, - STATE(1044), 1, + STATE(985), 1, sym_string, - STATE(1390), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1708), 1, + STATE(1676), 1, sym_expression, - STATE(2258), 1, + STATE(2273), 1, + sym_yield, + STATE(2466), 1, sym_list_splat, - STATE(2259), 1, + STATE(2467), 1, sym_parenthesized_list_splat, - STATE(2376), 1, - sym_yield, - STATE(2684), 1, + STATE(2698), 1, sym__named_expression_lhs, - STATE(2790), 1, + STATE(2743), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37570,7 +36535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37587,68 +36552,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11360] = 26, - ACTIONS(791), 1, + [11250] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1199), 1, + ACTIONS(1171), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(953), 1, sym_primary_expression, - STATE(1034), 1, + STATE(995), 1, sym_string, - STATE(1316), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1952), 1, sym_expression, - STATE(2550), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2512), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37656,7 +36621,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37673,68 +36638,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11472] = 26, - ACTIONS(791), 1, + [11362] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1201), 1, + ACTIONS(1173), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(953), 1, sym_primary_expression, - STATE(1034), 1, + STATE(995), 1, sym_string, - STATE(1316), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1952), 1, sym_expression, - STATE(2550), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2512), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37742,7 +36707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37759,68 +36724,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11584] = 26, - ACTIONS(791), 1, + [11474] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1203), 1, + ACTIONS(1175), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(953), 1, sym_primary_expression, - STATE(1034), 1, + STATE(995), 1, sym_string, - STATE(1316), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1952), 1, sym_expression, - STATE(2550), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2512), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37828,7 +36793,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37845,68 +36810,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11696] = 26, - ACTIONS(791), 1, + [11586] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1205), 1, + ACTIONS(1177), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(953), 1, sym_primary_expression, - STATE(1034), 1, + STATE(995), 1, sym_string, - STATE(1316), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1952), 1, sym_expression, - STATE(2550), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2512), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37914,7 +36879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37931,68 +36896,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11808] = 26, - ACTIONS(791), 1, + [11698] = 27, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(849), 1, + anon_sym_STAR, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(861), 1, + anon_sym_yield, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1073), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1081), 1, anon_sym_await, - ACTIONS(1207), 1, + ACTIONS(1149), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(950), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1678), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2456), 1, + sym_yield, + STATE(2698), 1, sym__named_expression_lhs, + STATE(2712), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + STATE(2287), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38000,7 +36966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38017,68 +36983,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11920] = 26, - ACTIONS(791), 1, + [11812] = 26, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(803), 1, + anon_sym_LPAREN, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, + ACTIONS(821), 1, + anon_sym_yield, + ACTIONS(823), 1, + anon_sym_await, + ACTIONS(829), 1, + anon_sym_STAR, ACTIONS(1155), 1, sym_identifier, - ACTIONS(1157), 1, - anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, - anon_sym_await, - ACTIONS(1209), 1, - anon_sym_RPAREN, - STATE(967), 1, + ACTIONS(1179), 1, + anon_sym_RBRACK, + STATE(857), 1, sym_primary_expression, - STATE(1034), 1, + STATE(969), 1, sym_string, - STATE(1316), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1715), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2657), 1, + sym__collection_elements, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2280), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38086,7 +37052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38103,68 +37069,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12032] = 26, - ACTIONS(791), 1, + [11924] = 28, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(849), 1, + anon_sym_STAR, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(861), 1, + anon_sym_yield, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1073), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1081), 1, anon_sym_await, - ACTIONS(1211), 1, + ACTIONS(1165), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(950), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1693), 1, sym_expression, - STATE(2550), 1, + STATE(2318), 1, + sym_list_splat, + STATE(2325), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2378), 1, + sym_yield, + STATE(2647), 1, + sym__collection_elements, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38172,7 +37140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38189,68 +37157,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12144] = 26, - ACTIONS(813), 1, + [12040] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(827), 1, - anon_sym_LPAREN, - ACTIONS(839), 1, - anon_sym_RBRACK, - ACTIONS(841), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(899), 1, - anon_sym_STAR, - ACTIONS(1171), 1, + ACTIONS(1053), 1, sym_identifier, - STATE(928), 1, + ACTIONS(1055), 1, + anon_sym_LPAREN, + ACTIONS(1061), 1, + anon_sym_STAR, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, + anon_sym_await, + ACTIONS(1181), 1, + anon_sym_RPAREN, + STATE(953), 1, sym_primary_expression, - STATE(977), 1, + STATE(995), 1, sym_string, - STATE(1200), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1723), 1, + STATE(1952), 1, sym_expression, - STATE(2649), 1, + STATE(2516), 1, + sym_parenthesized_list_splat, + STATE(2638), 1, sym__named_expression_lhs, - STATE(2685), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2512), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(803), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38258,7 +37226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38275,69 +37243,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12256] = 27, - ACTIONS(769), 1, + [12152] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(879), 1, - anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1059), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, + ACTIONS(1061), 1, + anon_sym_STAR, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1197), 1, + ACTIONS(1183), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(953), 1, sym_primary_expression, - STATE(1044), 1, + STATE(995), 1, sym_string, - STATE(1390), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1708), 1, + STATE(1952), 1, sym_expression, - STATE(2376), 1, - sym_yield, - STATE(2684), 1, + STATE(2516), 1, + sym_parenthesized_list_splat, + STATE(2638), 1, sym__named_expression_lhs, - STATE(2790), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(771), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2512), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38345,7 +37312,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38362,69 +37329,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12370] = 27, - ACTIONS(769), 1, + [12264] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(879), 1, - anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1059), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1063), 1, - anon_sym_RPAREN, + ACTIONS(1061), 1, + anon_sym_STAR, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, ACTIONS(1069), 1, anon_sym_await, - STATE(972), 1, + ACTIONS(1185), 1, + anon_sym_RPAREN, + STATE(953), 1, sym_primary_expression, - STATE(1044), 1, + STATE(995), 1, sym_string, - STATE(1390), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1692), 1, + STATE(1952), 1, sym_expression, - STATE(2499), 1, - sym_yield, - STATE(2684), 1, + STATE(2516), 1, + sym_parenthesized_list_splat, + STATE(2638), 1, sym__named_expression_lhs, - STATE(2778), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(771), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2512), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38432,7 +37398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38449,68 +37415,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12484] = 26, - ACTIONS(813), 1, + [12376] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(827), 1, - anon_sym_LPAREN, - ACTIONS(841), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(899), 1, - anon_sym_STAR, - ACTIONS(1171), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1213), 1, - anon_sym_RBRACK, - STATE(928), 1, + ACTIONS(1055), 1, + anon_sym_LPAREN, + ACTIONS(1061), 1, + anon_sym_STAR, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, + anon_sym_await, + ACTIONS(1187), 1, + anon_sym_RPAREN, + STATE(953), 1, sym_primary_expression, - STATE(977), 1, + STATE(995), 1, sym_string, - STATE(1200), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1721), 1, + STATE(1952), 1, sym_expression, - STATE(2649), 1, + STATE(2516), 1, + sym_parenthesized_list_splat, + STATE(2638), 1, sym__named_expression_lhs, - STATE(2723), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2512), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(803), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38518,7 +37484,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38535,68 +37501,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12596] = 26, - ACTIONS(791), 1, + [12488] = 27, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(849), 1, + anon_sym_STAR, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(861), 1, + anon_sym_yield, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1073), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1081), 1, anon_sym_await, - ACTIONS(1215), 1, + ACTIONS(1189), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(950), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1699), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2401), 1, + sym_yield, + STATE(2589), 1, + sym__collection_elements, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + STATE(2287), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38604,7 +37571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38621,68 +37588,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12708] = 26, - ACTIONS(791), 1, + [12602] = 26, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(803), 1, + anon_sym_LPAREN, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, + ACTIONS(821), 1, + anon_sym_yield, + ACTIONS(823), 1, + anon_sym_await, + ACTIONS(829), 1, + anon_sym_STAR, ACTIONS(1155), 1, sym_identifier, - ACTIONS(1157), 1, - anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, - anon_sym_await, - ACTIONS(1217), 1, - anon_sym_RPAREN, - STATE(967), 1, + ACTIONS(1191), 1, + anon_sym_RBRACK, + STATE(857), 1, sym_primary_expression, - STATE(1034), 1, + STATE(969), 1, sym_string, - STATE(1316), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1705), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2716), 1, sym__named_expression_lhs, + STATE(2719), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2280), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38690,7 +37657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38707,68 +37674,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12820] = 26, - ACTIONS(791), 1, + [12714] = 28, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(849), 1, + anon_sym_STAR, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(861), 1, + anon_sym_yield, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1073), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1081), 1, anon_sym_await, - ACTIONS(1219), 1, + ACTIONS(1189), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(950), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1699), 1, sym_expression, - STATE(2550), 1, + STATE(2401), 1, + sym_yield, + STATE(2466), 1, + sym_list_splat, + STATE(2467), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2589), 1, + sym__collection_elements, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38776,7 +37745,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38793,68 +37762,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12932] = 26, - ACTIONS(791), 1, + [12830] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1221), 1, + ACTIONS(1193), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(953), 1, sym_primary_expression, - STATE(1034), 1, + STATE(995), 1, sym_string, - STATE(1316), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1952), 1, sym_expression, - STATE(2550), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2512), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38862,7 +37831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38879,68 +37848,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13044] = 26, - ACTIONS(791), 1, + [12942] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1223), 1, + ACTIONS(1195), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(953), 1, sym_primary_expression, - STATE(1034), 1, + STATE(995), 1, sym_string, - STATE(1316), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1952), 1, sym_expression, - STATE(2550), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2512), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38948,7 +37917,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38965,68 +37934,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13156] = 26, - ACTIONS(791), 1, + [13054] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1225), 1, + ACTIONS(1197), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(953), 1, sym_primary_expression, - STATE(1034), 1, + STATE(995), 1, sym_string, - STATE(1316), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1952), 1, sym_expression, - STATE(2550), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2512), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39034,7 +38003,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39051,68 +38020,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13268] = 26, - ACTIONS(791), 1, + [13166] = 27, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(849), 1, + anon_sym_STAR, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(861), 1, + anon_sym_yield, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1073), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1081), 1, anon_sym_await, - ACTIONS(1227), 1, + ACTIONS(1169), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(950), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1676), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2273), 1, + sym_yield, + STATE(2698), 1, sym__named_expression_lhs, + STATE(2743), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + STATE(2287), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39120,7 +38090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39137,69 +38107,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13380] = 27, - ACTIONS(769), 1, + [13280] = 26, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(879), 1, - anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(803), 1, + anon_sym_LPAREN, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(821), 1, anon_sym_yield, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1069), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1229), 1, - anon_sym_RPAREN, - STATE(972), 1, + ACTIONS(829), 1, + anon_sym_STAR, + ACTIONS(1155), 1, + sym_identifier, + ACTIONS(1199), 1, + anon_sym_RBRACK, + STATE(857), 1, sym_primary_expression, - STATE(1044), 1, + STATE(969), 1, sym_string, - STATE(1390), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1703), 1, + STATE(1709), 1, sym_expression, - STATE(2348), 1, - sym_yield, - STATE(2658), 1, - sym__collection_elements, - STATE(2684), 1, + STATE(2716), 1, sym__named_expression_lhs, + STATE(2775), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(771), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2280), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39207,7 +38176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39224,68 +38193,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13494] = 26, - ACTIONS(813), 1, + [13392] = 28, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(827), 1, - anon_sym_LPAREN, - ACTIONS(841), 1, + ACTIONS(849), 1, + anon_sym_STAR, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(845), 1, + ACTIONS(861), 1, anon_sym_yield, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(899), 1, - anon_sym_STAR, - ACTIONS(1171), 1, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1231), 1, - anon_sym_RBRACK, - STATE(928), 1, + ACTIONS(1073), 1, + anon_sym_LPAREN, + ACTIONS(1081), 1, + anon_sym_await, + ACTIONS(1201), 1, + anon_sym_RPAREN, + STATE(950), 1, sym_primary_expression, - STATE(977), 1, + STATE(985), 1, sym_string, - STATE(1200), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1728), 1, + STATE(1665), 1, sym_expression, - STATE(2649), 1, - sym__named_expression_lhs, - STATE(2799), 1, + STATE(2238), 1, + sym_list_splat, + STATE(2239), 1, + sym_parenthesized_list_splat, + STATE(2352), 1, + sym_yield, + STATE(2602), 1, sym__collection_elements, + STATE(2698), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(803), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39293,7 +38264,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39310,69 +38281,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13606] = 27, - ACTIONS(769), 1, + [13508] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(879), 1, - anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1059), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, + ACTIONS(1061), 1, + anon_sym_STAR, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1233), 1, + ACTIONS(1203), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(953), 1, sym_primary_expression, - STATE(1044), 1, + STATE(995), 1, sym_string, - STATE(1390), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1700), 1, + STATE(1952), 1, sym_expression, - STATE(2428), 1, - sym_yield, - STATE(2659), 1, - sym__collection_elements, - STATE(2684), 1, + STATE(2516), 1, + sym_parenthesized_list_splat, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(771), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2512), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39380,7 +38350,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39397,68 +38367,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13720] = 26, - ACTIONS(813), 1, + [13620] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(827), 1, - anon_sym_LPAREN, - ACTIONS(841), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(899), 1, - anon_sym_STAR, - ACTIONS(1171), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1235), 1, - anon_sym_RBRACK, - STATE(928), 1, + ACTIONS(1055), 1, + anon_sym_LPAREN, + ACTIONS(1061), 1, + anon_sym_STAR, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, + anon_sym_await, + ACTIONS(1205), 1, + anon_sym_RPAREN, + STATE(953), 1, sym_primary_expression, - STATE(977), 1, + STATE(995), 1, sym_string, - STATE(1200), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1732), 1, + STATE(1952), 1, sym_expression, - STATE(2649), 1, + STATE(2516), 1, + sym_parenthesized_list_splat, + STATE(2638), 1, sym__named_expression_lhs, - STATE(2761), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2512), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(803), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39466,7 +38436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39483,70 +38453,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13832] = 28, - ACTIONS(769), 1, + [13732] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(879), 1, - anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1059), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, + ACTIONS(1061), 1, + anon_sym_STAR, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1237), 1, + ACTIONS(1207), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(953), 1, sym_primary_expression, - STATE(1044), 1, + STATE(995), 1, sym_string, - STATE(1390), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1685), 1, + STATE(1952), 1, sym_expression, - STATE(2269), 1, - sym_list_splat, - STATE(2271), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2470), 1, - sym_yield, - STATE(2684), 1, + STATE(2638), 1, sym__named_expression_lhs, - STATE(2704), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2512), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39554,7 +38522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39571,69 +38539,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13948] = 27, - ACTIONS(769), 1, + [13844] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(879), 1, - anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1059), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, + ACTIONS(1061), 1, + anon_sym_STAR, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1237), 1, + ACTIONS(1209), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(953), 1, sym_primary_expression, - STATE(1044), 1, + STATE(995), 1, sym_string, - STATE(1390), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1685), 1, + STATE(1952), 1, sym_expression, - STATE(2470), 1, - sym_yield, - STATE(2684), 1, + STATE(2516), 1, + sym_parenthesized_list_splat, + STATE(2638), 1, sym__named_expression_lhs, - STATE(2704), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(771), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2512), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39641,7 +38608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39658,68 +38625,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14062] = 26, - ACTIONS(791), 1, + [13956] = 27, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(849), 1, + anon_sym_STAR, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(861), 1, + anon_sym_yield, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1073), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1081), 1, anon_sym_await, - ACTIONS(1239), 1, + ACTIONS(1201), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(950), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1665), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2352), 1, + sym_yield, + STATE(2602), 1, + sym__collection_elements, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + STATE(2287), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39727,7 +38695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39744,68 +38712,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14174] = 26, - ACTIONS(791), 1, + [14070] = 26, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(803), 1, + anon_sym_LPAREN, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, + ACTIONS(821), 1, + anon_sym_yield, + ACTIONS(823), 1, + anon_sym_await, + ACTIONS(829), 1, + anon_sym_STAR, ACTIONS(1155), 1, sym_identifier, - ACTIONS(1157), 1, - anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, - anon_sym_await, - ACTIONS(1241), 1, - anon_sym_RPAREN, - STATE(967), 1, + ACTIONS(1211), 1, + anon_sym_RBRACK, + STATE(857), 1, sym_primary_expression, - STATE(1034), 1, + STATE(969), 1, sym_string, - STATE(1316), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1716), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2592), 1, + sym__collection_elements, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2280), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39813,7 +38781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39830,68 +38798,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14286] = 26, - ACTIONS(791), 1, + [14182] = 27, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(849), 1, + anon_sym_STAR, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(861), 1, + anon_sym_yield, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1073), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1081), 1, anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(1213), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(950), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1717), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2316), 1, + sym_yield, + STATE(2698), 1, sym__named_expression_lhs, + STATE(2737), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + STATE(2287), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39899,7 +38868,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39916,68 +38885,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14398] = 26, - ACTIONS(791), 1, + [14296] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(1215), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(953), 1, sym_primary_expression, - STATE(1034), 1, + STATE(995), 1, sym_string, - STATE(1316), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1952), 1, sym_expression, - STATE(2550), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2512), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39985,7 +38954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40002,68 +38971,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14510] = 26, - ACTIONS(813), 1, + [14408] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(827), 1, - anon_sym_LPAREN, - ACTIONS(841), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(899), 1, - anon_sym_STAR, - ACTIONS(1171), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1247), 1, - anon_sym_RBRACK, - STATE(928), 1, + ACTIONS(1055), 1, + anon_sym_LPAREN, + ACTIONS(1061), 1, + anon_sym_STAR, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, + anon_sym_await, + ACTIONS(1217), 1, + anon_sym_RPAREN, + STATE(953), 1, sym_primary_expression, - STATE(977), 1, + STATE(995), 1, sym_string, - STATE(1200), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1730), 1, + STATE(1952), 1, sym_expression, - STATE(2647), 1, - sym__collection_elements, - STATE(2649), 1, + STATE(2516), 1, + sym_parenthesized_list_splat, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2512), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(803), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40071,7 +39040,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40088,70 +39057,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14622] = 28, - ACTIONS(769), 1, + [14520] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(879), 1, - anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1059), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, + ACTIONS(1061), 1, + anon_sym_STAR, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1219), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(953), 1, sym_primary_expression, - STATE(1044), 1, + STATE(995), 1, sym_string, - STATE(1390), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1713), 1, + STATE(1952), 1, sym_expression, - STATE(2269), 1, - sym_list_splat, - STATE(2271), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2404), 1, - sym_yield, - STATE(2643), 1, - sym__collection_elements, - STATE(2684), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2512), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40159,7 +39126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40176,70 +39143,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14738] = 28, - ACTIONS(769), 1, + [14632] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(879), 1, - anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1059), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, + ACTIONS(1061), 1, + anon_sym_STAR, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1229), 1, + ACTIONS(1221), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(953), 1, sym_primary_expression, - STATE(1044), 1, + STATE(995), 1, sym_string, - STATE(1390), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1703), 1, + STATE(1952), 1, sym_expression, - STATE(2258), 1, - sym_list_splat, - STATE(2259), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2348), 1, - sym_yield, - STATE(2658), 1, - sym__collection_elements, - STATE(2684), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2512), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40247,7 +39212,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40264,68 +39229,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14854] = 26, - ACTIONS(791), 1, + [14744] = 27, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(849), 1, + anon_sym_STAR, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(861), 1, + anon_sym_yield, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1073), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1081), 1, anon_sym_await, - ACTIONS(1251), 1, + ACTIONS(1147), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(950), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1683), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2322), 1, + sym_yield, + STATE(2659), 1, + sym__collection_elements, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + STATE(2287), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40333,7 +39299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40350,68 +39316,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14966] = 26, - ACTIONS(791), 1, + [14858] = 26, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(803), 1, + anon_sym_LPAREN, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, + ACTIONS(821), 1, + anon_sym_yield, + ACTIONS(823), 1, + anon_sym_await, + ACTIONS(829), 1, + anon_sym_STAR, ACTIONS(1155), 1, sym_identifier, - ACTIONS(1157), 1, - anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, - anon_sym_await, - ACTIONS(1253), 1, - anon_sym_RPAREN, - STATE(967), 1, + ACTIONS(1223), 1, + anon_sym_RBRACK, + STATE(857), 1, sym_primary_expression, - STATE(1034), 1, + STATE(969), 1, sym_string, - STATE(1316), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1713), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2614), 1, + sym__collection_elements, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2280), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40419,7 +39385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40436,69 +39402,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15078] = 27, - ACTIONS(769), 1, + [14970] = 26, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(879), 1, - anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(803), 1, + anon_sym_LPAREN, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(821), 1, anon_sym_yield, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1069), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1249), 1, - anon_sym_RPAREN, - STATE(972), 1, + ACTIONS(829), 1, + anon_sym_STAR, + ACTIONS(1155), 1, + sym_identifier, + ACTIONS(1225), 1, + anon_sym_RBRACK, + STATE(857), 1, sym_primary_expression, - STATE(1044), 1, + STATE(969), 1, sym_string, - STATE(1390), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1713), 1, + STATE(1714), 1, sym_expression, - STATE(2404), 1, - sym_yield, - STATE(2643), 1, + STATE(2700), 1, sym__collection_elements, - STATE(2684), 1, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(771), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2280), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40506,7 +39471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40523,68 +39488,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15192] = 26, - ACTIONS(791), 1, + [15082] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1255), 1, + ACTIONS(1227), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(953), 1, sym_primary_expression, - STATE(1034), 1, + STATE(995), 1, sym_string, - STATE(1316), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1952), 1, sym_expression, - STATE(2550), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2512), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40592,7 +39557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40609,68 +39574,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15304] = 26, - ACTIONS(791), 1, + [15194] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1229), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(953), 1, sym_primary_expression, - STATE(1034), 1, + STATE(995), 1, sym_string, - STATE(1316), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1952), 1, sym_expression, - STATE(2550), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2512), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40678,7 +39643,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40695,68 +39660,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15416] = 26, - ACTIONS(791), 1, + [15306] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1259), 1, + ACTIONS(1231), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(953), 1, sym_primary_expression, - STATE(1034), 1, + STATE(995), 1, sym_string, - STATE(1316), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1952), 1, sym_expression, - STATE(2550), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2512), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40764,7 +39729,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40781,68 +39746,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15528] = 26, - ACTIONS(791), 1, + [15418] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1261), 1, + ACTIONS(1233), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(953), 1, sym_primary_expression, - STATE(1034), 1, + STATE(995), 1, sym_string, - STATE(1316), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1952), 1, sym_expression, - STATE(2550), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2512), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40850,7 +39815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40867,69 +39832,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15640] = 27, - ACTIONS(769), 1, + [15530] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(879), 1, - anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1059), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, + ACTIONS(1061), 1, + anon_sym_STAR, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1175), 1, + ACTIONS(1235), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(953), 1, sym_primary_expression, - STATE(1044), 1, + STATE(995), 1, sym_string, - STATE(1390), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1717), 1, + STATE(1952), 1, sym_expression, - STATE(2430), 1, - sym_yield, - STATE(2615), 1, - sym__collection_elements, - STATE(2684), 1, + STATE(2516), 1, + sym_parenthesized_list_splat, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(771), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2512), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40937,7 +39901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40954,68 +39918,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15754] = 26, - ACTIONS(791), 1, + [15642] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1263), 1, + ACTIONS(1237), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(953), 1, sym_primary_expression, - STATE(1034), 1, + STATE(995), 1, sym_string, - STATE(1316), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1952), 1, sym_expression, - STATE(2550), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2512), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41023,7 +39987,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41040,66 +40004,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15866] = 25, - ACTIONS(805), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, + [15754] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1037), 1, + anon_sym_lambda, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(1055), 1, + anon_sym_LPAREN, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1269), 1, - anon_sym_RBRACK, - ACTIONS(1271), 1, - anon_sym_lambda, - STATE(928), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, + anon_sym_await, + ACTIONS(1239), 1, + anon_sym_RPAREN, + STATE(953), 1, sym_primary_expression, - STATE(977), 1, + STATE(995), 1, sym_string, - STATE(1200), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1952), 1, sym_expression, - STATE(2649), 1, + STATE(2516), 1, + sym_parenthesized_list_splat, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(831), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(833), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - STATE(2081), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(815), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1267), 3, - anon_sym_if, + ACTIONS(1063), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(803), 4, + anon_sym_exec, + STATE(2512), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41107,7 +40073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41124,66 +40090,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15975] = 25, - ACTIONS(759), 1, + [15866] = 25, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1059), 1, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1081), 1, anon_sym_await, - ACTIONS(1269), 1, + ACTIONS(1241), 1, anon_sym_RPAREN, - ACTIONS(1273), 1, + ACTIONS(1243), 1, anon_sym_STAR, - ACTIONS(1275), 1, + ACTIONS(1247), 1, anon_sym_lambda, - STATE(972), 1, + STATE(950), 1, sym_primary_expression, - STATE(1044), 1, + STATE(985), 1, sym_string, - STATE(1390), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1806), 1, + STATE(1822), 1, sym_expression, - STATE(2684), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(1077), 2, anon_sym_print, anon_sym_exec, - ACTIONS(1067), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - STATE(2015), 2, + STATE(2075), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(771), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1267), 3, + ACTIONS(1245), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(757), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41191,7 +40157,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41208,66 +40174,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16084] = 25, - ACTIONS(759), 1, + [15975] = 25, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1059), 1, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1081), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1243), 1, anon_sym_STAR, - ACTIONS(1275), 1, + ACTIONS(1247), 1, anon_sym_lambda, - ACTIONS(1277), 1, + ACTIONS(1249), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(950), 1, sym_primary_expression, - STATE(1044), 1, + STATE(985), 1, sym_string, - STATE(1390), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1806), 1, + STATE(1822), 1, sym_expression, - STATE(2684), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(1077), 2, anon_sym_print, anon_sym_exec, - ACTIONS(1067), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - STATE(2015), 2, + STATE(2075), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(771), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1279), 3, + ACTIONS(1251), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(757), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41275,7 +40241,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41292,74 +40258,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16193] = 25, - ACTIONS(791), 1, - anon_sym_LBRACK, - ACTIONS(795), 1, + [16084] = 19, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, - anon_sym_lambda, - ACTIONS(1087), 1, - anon_sym_await, - ACTIONS(1157), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(1281), 1, - sym_identifier, - ACTIONS(1283), 1, - anon_sym_RPAREN, - ACTIONS(1285), 1, + ACTIONS(652), 1, anon_sym_STAR, - STATE(967), 1, - sym_primary_expression, - STATE(1034), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(662), 1, + anon_sym_await, + STATE(984), 1, sym_string, - STATE(1316), 1, + STATE(1116), 1, + sym_primary_expression, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1974), 1, - sym_expression, - STATE(2630), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(267), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(656), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(654), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2580), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(781), 4, + ACTIONS(308), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(312), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1748), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1418), 16, + ACTIONS(265), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41376,66 +40336,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16302] = 25, - ACTIONS(698), 1, + [16181] = 25, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(869), 1, + ACTIONS(861), 1, anon_sym_yield, - ACTIONS(1009), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1115), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1289), 1, + ACTIONS(1253), 1, + sym_identifier, + ACTIONS(1255), 1, + anon_sym_RPAREN, + ACTIONS(1257), 1, anon_sym_STAR, - ACTIONS(1291), 1, - anon_sym_RBRACE, - STATE(927), 1, + STATE(953), 1, sym_primary_expression, - STATE(983), 1, + STATE(995), 1, sym_string, - STATE(1249), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1931), 1, + STATE(1882), 1, sym_expression, - STATE(2781), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(1029), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(1027), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2542), 3, + STATE(2507), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(688), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41443,7 +40403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41460,66 +40420,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16411] = 25, - ACTIONS(745), 1, + [16290] = 25, + ACTIONS(779), 1, + anon_sym_LPAREN, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(1027), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1029), 1, - anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1283), 1, - anon_sym_RBRACK, - ACTIONS(1293), 1, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1295), 1, - anon_sym_LPAREN, - ACTIONS(1297), 1, + ACTIONS(1081), 1, + anon_sym_await, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(992), 1, + ACTIONS(1247), 1, + anon_sym_lambda, + ACTIONS(1259), 1, + anon_sym_RPAREN, + STATE(950), 1, sym_primary_expression, - STATE(1110), 1, + STATE(985), 1, sym_string, - STATE(1451), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1941), 1, + STATE(1822), 1, sym_expression, - STATE(2786), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1077), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + STATE(2075), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, - anon_sym_print, + ACTIONS(1261), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - STATE(2584), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(735), 4, + anon_sym_for, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41527,7 +40487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41544,64 +40504,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16520] = 23, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, + [16399] = 25, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, + ACTIONS(861), 1, + anon_sym_yield, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1115), 1, + ACTIONS(1039), 1, anon_sym_await, - STATE(927), 1, + ACTIONS(1055), 1, + anon_sym_LPAREN, + ACTIONS(1253), 1, + sym_identifier, + ACTIONS(1257), 1, + anon_sym_STAR, + ACTIONS(1263), 1, + anon_sym_RPAREN, + STATE(953), 1, sym_primary_expression, - STATE(983), 1, + STATE(995), 1, sym_string, - STATE(1249), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1790), 1, + STATE(1882), 1, sym_expression, - STATE(2781), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(1029), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(1027), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + STATE(2507), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1299), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1760), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41609,7 +40571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41626,66 +40588,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16625] = 25, - ACTIONS(759), 1, + [16508] = 25, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1059), 1, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1081), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1243), 1, anon_sym_STAR, - ACTIONS(1275), 1, + ACTIONS(1247), 1, anon_sym_lambda, - ACTIONS(1301), 1, + ACTIONS(1265), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(950), 1, sym_primary_expression, - STATE(1044), 1, + STATE(985), 1, sym_string, - STATE(1390), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1806), 1, + STATE(1822), 1, sym_expression, - STATE(2684), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(1077), 2, anon_sym_print, anon_sym_exec, - ACTIONS(1067), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - STATE(2015), 2, + STATE(2075), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(771), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1303), 3, + ACTIONS(1267), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(757), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41693,7 +40655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41710,66 +40672,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16734] = 25, - ACTIONS(791), 1, + [16617] = 25, + ACTIONS(691), 1, + anon_sym_LPAREN, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(1085), 1, - anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, + ACTIONS(823), 1, + anon_sym_await, ACTIONS(1155), 1, sym_identifier, - ACTIONS(1157), 1, - anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1249), 1, + anon_sym_RBRACK, + ACTIONS(1269), 1, anon_sym_STAR, - ACTIONS(1165), 1, - anon_sym_await, - STATE(967), 1, + ACTIONS(1271), 1, + anon_sym_lambda, + STATE(857), 1, sym_primary_expression, - STATE(1034), 1, + STATE(969), 1, sym_string, - STATE(1316), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1814), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(807), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + STATE(2072), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, - anon_sym_print, + ACTIONS(1251), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - STATE(2513), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + anon_sym_for, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41777,7 +40739,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41794,66 +40756,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16843] = 25, - ACTIONS(698), 1, + [16726] = 25, + ACTIONS(735), 1, + anon_sym_LPAREN, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(869), 1, - anon_sym_yield, - ACTIONS(1009), 1, - anon_sym_not, - ACTIONS(1011), 1, - anon_sym_lambda, - ACTIONS(1105), 1, + ACTIONS(871), 1, sym_identifier, - ACTIONS(1115), 1, + ACTIONS(887), 1, + anon_sym_not, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(1283), 1, + ACTIONS(1259), 1, anon_sym_RBRACE, - ACTIONS(1287), 1, - anon_sym_LPAREN, - ACTIONS(1289), 1, + ACTIONS(1273), 1, anon_sym_STAR, - STATE(927), 1, + ACTIONS(1275), 1, + anon_sym_lambda, + STATE(893), 1, sym_primary_expression, - STATE(983), 1, + STATE(958), 1, sym_string, - STATE(1249), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1931), 1, + STATE(1820), 1, sym_expression, - STATE(2781), 1, + STATE(2645), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(879), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + STATE(2094), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, - anon_sym_print, + ACTIONS(1261), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - STATE(2542), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(688), 4, + anon_sym_for, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41861,7 +40823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41878,66 +40840,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16952] = 25, - ACTIONS(715), 1, + [16835] = 25, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(871), 1, sym_identifier, - ACTIONS(865), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(871), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(1305), 1, - anon_sym_STAR, - ACTIONS(1309), 1, + ACTIONS(1241), 1, anon_sym_RBRACE, - ACTIONS(1311), 1, + ACTIONS(1273), 1, + anon_sym_STAR, + ACTIONS(1275), 1, anon_sym_lambda, - STATE(964), 1, + STATE(893), 1, sym_primary_expression, - STATE(980), 1, + STATE(958), 1, sym_string, - STATE(1229), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1832), 1, + STATE(1820), 1, sym_expression, STATE(2645), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(857), 2, + ACTIONS(879), 2, anon_sym_print, anon_sym_exec, - ACTIONS(859), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - STATE(2042), 2, + STATE(2094), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(725), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1307), 3, + ACTIONS(1245), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(713), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41945,7 +40907,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41962,66 +40924,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17061] = 25, - ACTIONS(791), 1, + [16944] = 25, + ACTIONS(735), 1, + anon_sym_LPAREN, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1083), 1, + ACTIONS(871), 1, + sym_identifier, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1085), 1, - anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(1157), 1, - anon_sym_LPAREN, - ACTIONS(1281), 1, - sym_identifier, - ACTIONS(1285), 1, + ACTIONS(1249), 1, + anon_sym_RBRACE, + ACTIONS(1273), 1, anon_sym_STAR, - ACTIONS(1291), 1, - anon_sym_RPAREN, - STATE(967), 1, + ACTIONS(1275), 1, + anon_sym_lambda, + STATE(893), 1, sym_primary_expression, - STATE(1034), 1, + STATE(958), 1, sym_string, - STATE(1316), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1974), 1, + STATE(1820), 1, sym_expression, - STATE(2630), 1, + STATE(2645), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(879), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + STATE(2094), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, - anon_sym_print, + ACTIONS(1251), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - STATE(2580), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(781), 4, + anon_sym_for, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42029,7 +40991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42046,66 +41008,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17170] = 25, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, + [17053] = 25, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(865), 1, + ACTIONS(891), 1, + anon_sym_yield, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(871), 1, + ACTIONS(987), 1, + anon_sym_lambda, + ACTIONS(1135), 1, + sym_identifier, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1269), 1, + ACTIONS(1263), 1, anon_sym_RBRACE, - ACTIONS(1305), 1, + ACTIONS(1277), 1, + anon_sym_LPAREN, + ACTIONS(1279), 1, anon_sym_STAR, - ACTIONS(1311), 1, - anon_sym_lambda, - STATE(964), 1, + STATE(901), 1, sym_primary_expression, - STATE(980), 1, + STATE(975), 1, sym_string, - STATE(1229), 1, + STATE(1197), 1, sym_list_splat_pattern, - STATE(1832), 1, + STATE(1968), 1, sym_expression, - STATE(2645), 1, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(857), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(859), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - STATE(2042), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(725), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1267), 3, - anon_sym_if, + ACTIONS(1141), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(713), 4, + anon_sym_exec, + STATE(2529), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42113,7 +41075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42130,64 +41092,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17279] = 23, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, + [17162] = 25, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1105), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1115), 1, + ACTIONS(1055), 1, + anon_sym_LPAREN, + ACTIONS(1061), 1, + anon_sym_STAR, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, anon_sym_await, - STATE(927), 1, + STATE(953), 1, sym_primary_expression, - STATE(983), 1, + STATE(995), 1, sym_string, - STATE(1249), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1790), 1, + STATE(1952), 1, sym_expression, - STATE(2781), 1, + STATE(2516), 1, + sym_parenthesized_list_splat, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + STATE(2512), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1313), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1760), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42195,7 +41159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42212,66 +41176,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17384] = 25, - ACTIONS(805), 1, + [17271] = 25, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(847), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1155), 1, sym_identifier, ACTIONS(1265), 1, + anon_sym_RBRACK, + ACTIONS(1269), 1, anon_sym_STAR, ACTIONS(1271), 1, anon_sym_lambda, - ACTIONS(1309), 1, - anon_sym_RBRACK, - STATE(928), 1, + STATE(857), 1, sym_primary_expression, - STATE(977), 1, + STATE(969), 1, sym_string, - STATE(1200), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1814), 1, sym_expression, - STATE(2649), 1, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(831), 2, + ACTIONS(807), 2, anon_sym_print, anon_sym_exec, - ACTIONS(833), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - STATE(2081), 2, + STATE(2072), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(815), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1307), 3, + ACTIONS(1267), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(803), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42279,7 +41243,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42296,66 +41260,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17493] = 25, - ACTIONS(759), 1, - anon_sym_LPAREN, - ACTIONS(769), 1, + [17380] = 25, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(821), 1, + anon_sym_yield, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1005), 1, + anon_sym_lambda, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1263), 1, + anon_sym_RBRACK, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1283), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1275), 1, - anon_sym_lambda, - ACTIONS(1309), 1, - anon_sym_RPAREN, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1081), 1, sym_string, - STATE(1390), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1806), 1, + STATE(1954), 1, sym_expression, - STATE(2684), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(1067), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - STATE(2015), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(771), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1307), 3, - anon_sym_if, + ACTIONS(995), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(757), 4, + anon_sym_exec, + STATE(2574), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42363,7 +41327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42380,66 +41344,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17602] = 25, - ACTIONS(745), 1, + [17489] = 23, + ACTIONS(666), 1, + anon_sym_LPAREN, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(1027), 1, + ACTIONS(977), 1, + anon_sym_STAR, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1291), 1, - anon_sym_RBRACK, - ACTIONS(1293), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1295), 1, - anon_sym_LPAREN, - ACTIONS(1297), 1, - anon_sym_STAR, - STATE(992), 1, + ACTIONS(1145), 1, + anon_sym_await, + STATE(901), 1, sym_primary_expression, - STATE(1110), 1, + STATE(975), 1, sym_string, - STATE(1451), 1, + STATE(1197), 1, sym_list_splat_pattern, - STATE(1941), 1, + STATE(1773), 1, sym_expression, - STATE(2786), 1, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2584), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(735), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + ACTIONS(1287), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42447,7 +41409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42464,66 +41426,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17711] = 25, - ACTIONS(805), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, + [17594] = 25, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(821), 1, + anon_sym_yield, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(847), 1, + ACTIONS(1005), 1, + anon_sym_lambda, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1255), 1, + anon_sym_RBRACK, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(1283), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1271), 1, - anon_sym_lambda, - ACTIONS(1277), 1, - anon_sym_RBRACK, - STATE(928), 1, + STATE(963), 1, sym_primary_expression, - STATE(977), 1, + STATE(1081), 1, sym_string, - STATE(1200), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1954), 1, sym_expression, - STATE(2649), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(831), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(833), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - STATE(2081), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(815), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1279), 3, - anon_sym_if, + ACTIONS(995), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(803), 4, + anon_sym_exec, + STATE(2574), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42531,7 +41493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42548,66 +41510,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17820] = 25, - ACTIONS(805), 1, + [17703] = 23, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(841), 1, - anon_sym_not, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(1171), 1, - sym_identifier, - ACTIONS(1265), 1, + ACTIONS(977), 1, anon_sym_STAR, - ACTIONS(1271), 1, + ACTIONS(985), 1, + anon_sym_not, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(1301), 1, - anon_sym_RBRACK, - STATE(928), 1, + ACTIONS(1135), 1, + sym_identifier, + ACTIONS(1145), 1, + anon_sym_await, + STATE(901), 1, sym_primary_expression, - STATE(977), 1, + STATE(975), 1, sym_string, - STATE(1200), 1, + STATE(1197), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1773), 1, sym_expression, - STATE(2649), 1, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(831), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(833), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - STATE(2081), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(815), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1303), 3, - anon_sym_if, + ACTIONS(1141), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(803), 4, + anon_sym_exec, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + ACTIONS(1289), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42615,7 +41575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42632,66 +41592,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17929] = 25, - ACTIONS(715), 1, + [17808] = 25, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(871), 1, sym_identifier, - ACTIONS(865), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(871), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(1277), 1, + ACTIONS(1265), 1, anon_sym_RBRACE, - ACTIONS(1305), 1, + ACTIONS(1273), 1, anon_sym_STAR, - ACTIONS(1311), 1, + ACTIONS(1275), 1, anon_sym_lambda, - STATE(964), 1, + STATE(893), 1, sym_primary_expression, - STATE(980), 1, + STATE(958), 1, sym_string, - STATE(1229), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1832), 1, + STATE(1820), 1, sym_expression, STATE(2645), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(857), 2, + ACTIONS(879), 2, anon_sym_print, anon_sym_exec, - ACTIONS(859), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - STATE(2042), 2, + STATE(2094), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(725), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1279), 3, + ACTIONS(1267), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(713), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42699,7 +41659,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42716,68 +41676,74 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18038] = 19, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [17917] = 25, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(676), 1, - anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(703), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(817), 1, + anon_sym_not, + ACTIONS(823), 1, anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1053), 1, + ACTIONS(1155), 1, + sym_identifier, + ACTIONS(1259), 1, + anon_sym_RBRACK, + ACTIONS(1269), 1, + anon_sym_STAR, + ACTIONS(1271), 1, + anon_sym_lambda, + STATE(857), 1, sym_primary_expression, - STATE(1325), 1, + STATE(969), 1, + sym_string, + STATE(1283), 1, sym_list_splat_pattern, + STATE(1814), 1, + sym_expression, + STATE(2716), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(322), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(807), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, + STATE(2072), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, - anon_sym_print, + ACTIONS(1261), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - ACTIONS(320), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(324), 5, + anon_sym_for, + ACTIONS(689), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(277), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1311), 16, + STATE(1710), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42794,66 +41760,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18135] = 25, - ACTIONS(715), 1, + [18026] = 25, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(865), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(871), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1301), 1, - anon_sym_RBRACE, - ACTIONS(1305), 1, + ACTIONS(1155), 1, + sym_identifier, + ACTIONS(1241), 1, + anon_sym_RBRACK, + ACTIONS(1269), 1, anon_sym_STAR, - ACTIONS(1311), 1, + ACTIONS(1271), 1, anon_sym_lambda, - STATE(964), 1, + STATE(857), 1, sym_primary_expression, - STATE(980), 1, + STATE(969), 1, sym_string, - STATE(1229), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1832), 1, + STATE(1814), 1, sym_expression, - STATE(2645), 1, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(857), 2, + ACTIONS(807), 2, anon_sym_print, anon_sym_exec, - ACTIONS(859), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - STATE(2042), 2, + STATE(2072), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(725), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1303), 3, + ACTIONS(1245), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(713), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42861,7 +41827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42878,64 +41844,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18244] = 24, - ACTIONS(745), 1, + [18135] = 25, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(845), 1, + ACTIONS(891), 1, anon_sym_yield, - ACTIONS(1027), 1, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1295), 1, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1255), 1, + anon_sym_RBRACE, + ACTIONS(1277), 1, anon_sym_LPAREN, - ACTIONS(1297), 1, + ACTIONS(1279), 1, anon_sym_STAR, - STATE(992), 1, + STATE(901), 1, sym_primary_expression, - STATE(1110), 1, + STATE(975), 1, sym_string, - STATE(1451), 1, + STATE(1197), 1, sym_list_splat_pattern, - STATE(1941), 1, + STATE(1968), 1, sym_expression, - STATE(2786), 1, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2584), 3, + STATE(2529), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(735), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42943,7 +41911,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42960,7 +41928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18350] = 25, + [18244] = 25, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -42969,29 +41937,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym_string_start, - ACTIONS(387), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(410), 1, + ACTIONS(398), 1, anon_sym_await, - ACTIONS(653), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1315), 1, + ACTIONS(1291), 1, anon_sym_from, - ACTIONS(1317), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(870), 1, + STATE(845), 1, sym_primary_expression, - STATE(969), 1, + STATE(954), 1, sym_string, - STATE(1135), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1834), 1, + STATE(1793), 1, sym_expression, - STATE(2519), 1, + STATE(2523), 1, sym_expression_list, - STATE(2672), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -42999,17 +41967,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(1109), 2, + ACTIONS(1139), 2, sym__newline, anon_sym_SEMI, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -43018,7 +41986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43026,7 +41994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43043,65 +42011,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18458] = 25, - ACTIONS(311), 1, + [18352] = 25, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(861), 1, + ACTIONS(883), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1319), 1, + ACTIONS(1295), 1, anon_sym_RBRACE, - STATE(971), 1, + STATE(952), 1, sym_primary_expression, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(2069), 1, sym_expression, - STATE(2678), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - STATE(2544), 2, + STATE(2498), 2, sym_dictionary_splat, sym_pair, - ACTIONS(290), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43109,7 +42077,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43126,65 +42094,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18566] = 25, - ACTIONS(311), 1, + [18460] = 25, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(861), 1, + ACTIONS(883), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1321), 1, + ACTIONS(1297), 1, anon_sym_RBRACE, - STATE(971), 1, + STATE(952), 1, sym_primary_expression, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(2069), 1, sym_expression, - STATE(2678), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - STATE(2544), 2, + STATE(2498), 2, sym_dictionary_splat, sym_pair, - ACTIONS(290), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43192,7 +42160,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43209,65 +42177,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18674] = 25, - ACTIONS(311), 1, + [18568] = 24, + ACTIONS(674), 1, + anon_sym_LBRACK, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(891), 1, + anon_sym_yield, + ACTIONS(985), 1, + anon_sym_not, + ACTIONS(987), 1, + anon_sym_lambda, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1277), 1, anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(1279), 1, anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1323), 1, - anon_sym_RBRACE, - STATE(971), 1, + STATE(901), 1, sym_primary_expression, - STATE(1025), 1, + STATE(975), 1, sym_string, - STATE(1325), 1, + STATE(1197), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(1968), 1, sym_expression, - STATE(2678), 1, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - STATE(2544), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1143), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1141), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2529), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43275,7 +42242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43292,65 +42259,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18782] = 25, - ACTIONS(311), 1, + [18674] = 25, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(861), 1, + ACTIONS(883), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1325), 1, + ACTIONS(1299), 1, anon_sym_RBRACE, - STATE(971), 1, + STATE(952), 1, sym_primary_expression, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(2069), 1, sym_expression, - STATE(2678), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - STATE(2544), 2, + STATE(2498), 2, sym_dictionary_splat, sym_pair, - ACTIONS(290), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43358,7 +42325,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43375,65 +42342,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18890] = 25, - ACTIONS(311), 1, + [18782] = 24, + ACTIONS(721), 1, + anon_sym_LBRACK, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(731), 1, + sym_string_start, + ACTIONS(861), 1, + anon_sym_yield, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(672), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(1253), 1, + sym_identifier, + ACTIONS(1257), 1, anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1327), 1, - anon_sym_RBRACE, - STATE(971), 1, + STATE(953), 1, sym_primary_expression, - STATE(1025), 1, + STATE(995), 1, sym_string, - STATE(1325), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(1882), 1, sym_expression, - STATE(2678), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - STATE(2544), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1029), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1027), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2507), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43441,7 +42407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43458,65 +42424,148 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18998] = 25, - ACTIONS(311), 1, + [18888] = 25, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(721), 1, + anon_sym_LBRACK, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(731), 1, + sym_string_start, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(1301), 1, + anon_sym_from, + ACTIONS(1303), 1, anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1329), 1, - anon_sym_RBRACE, - STATE(971), 1, + STATE(953), 1, sym_primary_expression, - STATE(1025), 1, + STATE(995), 1, sym_string, - STATE(1325), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(1857), 1, sym_expression, - STATE(2678), 1, + STATE(2549), 1, + sym_expression_list, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - STATE(2544), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(290), 3, + ACTIONS(1029), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1139), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(723), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1027), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(711), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1722), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1381), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [18996] = 25, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, + anon_sym_LBRACE, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1003), 1, + anon_sym_not, + ACTIONS(1005), 1, + anon_sym_lambda, + ACTIONS(1007), 1, + anon_sym_await, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1305), 1, + anon_sym_from, + ACTIONS(1307), 1, + anon_sym_STAR, + STATE(963), 1, + sym_primary_expression, + STATE(1081), 1, + sym_string, + STATE(1444), 1, + sym_list_splat_pattern, + STATE(1862), 1, + sym_expression, + STATE(2527), 1, + sym_expression_list, + STATE(2585), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(771), 2, + sym_ellipsis, + sym_float, + ACTIONS(997), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1139), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(995), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43524,7 +42573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43541,65 +42590,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19106] = 25, - ACTIONS(311), 1, + [19104] = 25, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(861), 1, + ACTIONS(883), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1331), 1, + ACTIONS(1309), 1, anon_sym_RBRACE, - STATE(971), 1, + STATE(952), 1, sym_primary_expression, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(2069), 1, sym_expression, - STATE(2678), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - STATE(2544), 2, + STATE(2498), 2, sym_dictionary_splat, sym_pair, - ACTIONS(290), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43607,7 +42656,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43624,65 +42673,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19214] = 25, - ACTIONS(311), 1, + [19212] = 25, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(861), 1, + ACTIONS(883), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1333), 1, + ACTIONS(1311), 1, anon_sym_RBRACE, - STATE(971), 1, + STATE(952), 1, sym_primary_expression, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(2069), 1, sym_expression, - STATE(2678), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - STATE(2544), 2, + STATE(2498), 2, sym_dictionary_splat, sym_pair, - ACTIONS(290), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43690,7 +42739,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43707,65 +42756,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19322] = 25, - ACTIONS(311), 1, + [19320] = 25, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(861), 1, + ACTIONS(883), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1335), 1, + ACTIONS(1313), 1, anon_sym_RBRACE, - STATE(971), 1, + STATE(952), 1, sym_primary_expression, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(2069), 1, sym_expression, - STATE(2678), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - STATE(2544), 2, + STATE(2498), 2, sym_dictionary_splat, sym_pair, - ACTIONS(290), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43773,7 +42822,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43790,65 +42839,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19430] = 25, - ACTIONS(311), 1, + [19428] = 25, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(676), 1, - anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1337), 1, - anon_sym_RBRACE, - STATE(971), 1, + ACTIONS(1293), 1, + anon_sym_STAR, + ACTIONS(1317), 1, + anon_sym_from, + STATE(845), 1, sym_primary_expression, - STATE(1025), 1, + STATE(954), 1, sym_string, - STATE(1325), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(1775), 1, sym_expression, - STATE(2678), 1, + STATE(2278), 1, + sym_expression_list, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(2544), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(387), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1315), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(383), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43856,7 +42905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43873,65 +42922,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19538] = 25, - ACTIONS(311), 1, + [19536] = 25, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(861), 1, + ACTIONS(883), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1339), 1, + ACTIONS(1319), 1, anon_sym_RBRACE, - STATE(971), 1, + STATE(952), 1, sym_primary_expression, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(2069), 1, sym_expression, - STATE(2678), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - STATE(2544), 2, + STATE(2498), 2, sym_dictionary_splat, sym_pair, - ACTIONS(290), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43939,7 +42988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43956,65 +43005,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19646] = 25, - ACTIONS(67), 1, + [19644] = 25, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, sym_string_start, - ACTIONS(387), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(410), 1, - anon_sym_await, - ACTIONS(653), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(1343), 1, - anon_sym_from, - STATE(870), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(883), 1, + anon_sym_STAR_STAR, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1321), 1, + anon_sym_RBRACE, + STATE(952), 1, sym_primary_expression, - STATE(969), 1, + STATE(984), 1, sym_string, - STATE(1135), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1770), 1, + STATE(2069), 1, sym_expression, - STATE(2325), 1, - sym_expression_list, - STATE(2672), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(399), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(1341), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + STATE(2498), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44022,7 +43071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44039,65 +43088,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19754] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [19752] = 25, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, sym_identifier, - ACTIONS(1345), 1, - anon_sym_from, - ACTIONS(1347), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(652), 1, anon_sym_STAR, - STATE(992), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(883), 1, + anon_sym_STAR_STAR, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1323), 1, + anon_sym_RBRACE, + STATE(952), 1, sym_primary_expression, - STATE(1110), 1, + STATE(984), 1, sym_string, - STATE(1451), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1847), 1, + STATE(2069), 1, sym_expression, - STATE(2525), 1, - sym_expression_list, - STATE(2786), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, - sym_ellipsis, - sym_float, - ACTIONS(1021), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(1109), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(747), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + STATE(2498), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44105,7 +43154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44122,64 +43171,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19862] = 24, - ACTIONS(698), 1, - anon_sym_LBRACK, - ACTIONS(702), 1, + [19860] = 25, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(708), 1, - sym_string_start, - ACTIONS(869), 1, - anon_sym_yield, - ACTIONS(1009), 1, - anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1115), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, + sym_identifier, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(1289), 1, + ACTIONS(652), 1, anon_sym_STAR, - STATE(927), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(883), 1, + anon_sym_STAR_STAR, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1325), 1, + anon_sym_RBRACE, + STATE(952), 1, sym_primary_expression, - STATE(983), 1, + STATE(984), 1, sym_string, - STATE(1249), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1931), 1, + STATE(2069), 1, sym_expression, - STATE(2781), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, - sym_ellipsis, - sym_float, - ACTIONS(1113), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + STATE(2498), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2542), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(688), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44187,7 +43237,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44205,64 +43255,64 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [19968] = 25, - ACTIONS(311), 1, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(861), 1, + ACTIONS(883), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1349), 1, + ACTIONS(1327), 1, anon_sym_RBRACE, - STATE(971), 1, + STATE(952), 1, sym_primary_expression, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(2069), 1, sym_expression, - STATE(2678), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - STATE(2544), 2, + STATE(2498), 2, sym_dictionary_splat, sym_pair, - ACTIONS(290), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44270,7 +43320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44288,64 +43338,64 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [20076] = 25, - ACTIONS(311), 1, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(861), 1, + ACTIONS(883), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1351), 1, + ACTIONS(1329), 1, anon_sym_RBRACE, - STATE(971), 1, + STATE(952), 1, sym_primary_expression, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(2069), 1, sym_expression, - STATE(2678), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - STATE(2544), 2, + STATE(2498), 2, sym_dictionary_splat, sym_pair, - ACTIONS(290), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44353,7 +43403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44371,64 +43421,64 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [20184] = 25, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(791), 1, - anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(801), 1, - sym_string_start, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, sym_identifier, - ACTIONS(1353), 1, - anon_sym_from, - ACTIONS(1355), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(652), 1, anon_sym_STAR, - STATE(967), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(883), 1, + anon_sym_STAR_STAR, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1331), 1, + anon_sym_RBRACE, + STATE(952), 1, sym_primary_expression, - STATE(1034), 1, + STATE(984), 1, sym_string, - STATE(1316), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1863), 1, + STATE(2069), 1, sym_expression, - STATE(2549), 1, - sym_expression_list, - STATE(2630), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, - sym_ellipsis, - sym_float, - ACTIONS(1077), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(1109), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(793), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + STATE(2498), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44436,7 +43486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44454,64 +43504,64 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [20292] = 25, - ACTIONS(311), 1, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(861), 1, + ACTIONS(883), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1357), 1, + ACTIONS(1333), 1, anon_sym_RBRACE, - STATE(971), 1, + STATE(952), 1, sym_primary_expression, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(2069), 1, sym_expression, - STATE(2678), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - STATE(2544), 2, + STATE(2498), 2, sym_dictionary_splat, sym_pair, - ACTIONS(290), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44519,7 +43569,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44536,65 +43586,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20400] = 25, - ACTIONS(311), 1, + [20400] = 24, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(821), 1, + anon_sym_yield, + ACTIONS(1003), 1, + anon_sym_not, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(1283), 1, anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1359), 1, - anon_sym_RBRACE, - STATE(971), 1, + STATE(963), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1081), 1, sym_string, - STATE(1325), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(1954), 1, sym_expression, - STATE(2678), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - STATE(2544), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(997), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(995), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2574), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44602,7 +43651,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44619,65 +43668,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20508] = 25, - ACTIONS(311), 1, + [20506] = 25, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(861), 1, + ACTIONS(883), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1361), 1, + ACTIONS(1335), 1, anon_sym_RBRACE, - STATE(971), 1, + STATE(952), 1, sym_primary_expression, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(2069), 1, sym_expression, - STATE(2678), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - STATE(2544), 2, + STATE(2498), 2, sym_dictionary_splat, sym_pair, - ACTIONS(290), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44685,7 +43734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44702,64 +43751,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20616] = 24, - ACTIONS(791), 1, - anon_sym_LBRACK, - ACTIONS(795), 1, + [20614] = 25, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(801), 1, - sym_string_start, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(1157), 1, - anon_sym_LPAREN, - ACTIONS(1281), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, sym_identifier, - ACTIONS(1285), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(652), 1, anon_sym_STAR, - STATE(967), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(883), 1, + anon_sym_STAR_STAR, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1337), 1, + anon_sym_RBRACE, + STATE(952), 1, sym_primary_expression, - STATE(1034), 1, + STATE(984), 1, sym_string, - STATE(1316), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1974), 1, + STATE(2069), 1, sym_expression, - STATE(2630), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, - sym_ellipsis, - sym_float, - ACTIONS(1077), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + STATE(2498), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2580), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(781), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44767,7 +43817,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44784,140 +43834,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20722] = 19, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [20722] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(676), 1, - anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(686), 1, - anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1053), 1, - sym_primary_expression, - STATE(1325), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(680), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(667), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(678), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(277), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1311), 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, - [20817] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1365), 1, + ACTIONS(1341), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1865), 1, sym_expression, - STATE(2561), 1, + STATE(2539), 1, sym_slice, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44925,7 +43899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44942,64 +43916,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20924] = 25, - ACTIONS(737), 1, + [20829] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1367), 1, + ACTIONS(1343), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1865), 1, sym_expression, - STATE(2561), 1, + STATE(2539), 1, sym_slice, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45007,7 +43981,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45024,64 +43998,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21031] = 25, - ACTIONS(737), 1, + [20936] = 24, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1347), 1, anon_sym_COLON, - ACTIONS(1369), 1, - anon_sym_RBRACK, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1845), 1, sym_expression, - STATE(2561), 1, - sym_slice, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(1345), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45089,7 +44062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45106,63 +44079,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21138] = 24, - ACTIONS(67), 1, + [21041] = 25, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, - sym_identifier, - ACTIONS(410), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(870), 1, + ACTIONS(1339), 1, + anon_sym_COLON, + ACTIONS(1349), 1, + anon_sym_RBRACK, + STATE(963), 1, sym_primary_expression, - STATE(969), 1, + STATE(1081), 1, sym_string, - STATE(1135), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1828), 1, + STATE(1865), 1, sym_expression, - STATE(2591), 1, - sym_expression_list, - STATE(2672), 1, + STATE(2539), 1, + sym_slice, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(1371), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45170,7 +44144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45187,64 +44161,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21243] = 25, - ACTIONS(737), 1, + [21148] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1373), 1, + ACTIONS(1351), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1865), 1, sym_expression, - STATE(2561), 1, + STATE(2539), 1, sym_slice, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45252,7 +44226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45269,64 +44243,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21350] = 25, - ACTIONS(737), 1, + [21255] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1375), 1, + ACTIONS(1353), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1865), 1, sym_expression, - STATE(2561), 1, + STATE(2539), 1, sym_slice, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45334,7 +44308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45351,64 +44325,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21457] = 25, - ACTIONS(737), 1, + [21362] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1377), 1, + ACTIONS(1355), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1865), 1, sym_expression, - STATE(2561), 1, + STATE(2539), 1, sym_slice, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45416,7 +44390,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45433,63 +44407,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21564] = 24, - ACTIONS(67), 1, + [21469] = 24, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, - sym_identifier, - ACTIONS(410), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1379), 1, - anon_sym_from, - STATE(870), 1, + ACTIONS(1359), 1, + anon_sym_COLON, + STATE(963), 1, sym_primary_expression, - STATE(969), 1, + STATE(1081), 1, sym_string, - STATE(1135), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1843), 1, + STATE(1866), 1, sym_expression, - STATE(2672), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(1299), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(1357), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45497,7 +44471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45514,64 +44488,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21669] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [21574] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, + sym_identifier, + ACTIONS(398), 1, anon_sym_await, + ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(637), 1, + anon_sym_LBRACK, ACTIONS(1293), 1, - sym_identifier, - ACTIONS(1347), 1, anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_COLON, - ACTIONS(1381), 1, - anon_sym_RBRACK, - STATE(992), 1, + ACTIONS(1361), 1, + anon_sym_from, + STATE(845), 1, sym_primary_expression, - STATE(1110), 1, + STATE(954), 1, sym_string, - STATE(1451), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1785), 1, sym_expression, - STATE(2561), 1, - sym_slice, - STATE(2786), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(1287), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45579,7 +44552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45596,72 +44569,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21776] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [21679] = 19, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, - anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, - sym_identifier, - ACTIONS(1347), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_COLON, - ACTIONS(1383), 1, - anon_sym_RBRACK, - STATE(992), 1, - sym_primary_expression, - STATE(1110), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(662), 1, + anon_sym_await, + STATE(984), 1, sym_string, - STATE(1451), 1, + STATE(1116), 1, + sym_primary_expression, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1861), 1, - sym_expression, - STATE(2561), 1, - sym_slice, - STATE(2786), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(267), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(656), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(643), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(654), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(312), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1768), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1462), 16, + ACTIONS(265), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45678,64 +44645,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21883] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [21774] = 24, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_COLON, - ACTIONS(1385), 1, - anon_sym_RBRACK, - STATE(992), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(883), 1, + anon_sym_STAR_STAR, + ACTIONS(1051), 1, + anon_sym_not, + STATE(952), 1, sym_primary_expression, - STATE(1110), 1, + STATE(984), 1, sym_string, - STATE(1451), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(2069), 1, sym_expression, - STATE(2561), 1, - sym_slice, - STATE(2786), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, - sym_ellipsis, - sym_float, - ACTIONS(1021), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + STATE(2498), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45743,7 +44709,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45760,64 +44726,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21990] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [21879] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, + sym_identifier, + ACTIONS(398), 1, anon_sym_await, + ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(637), 1, + anon_sym_LBRACK, ACTIONS(1293), 1, - sym_identifier, - ACTIONS(1347), 1, anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_COLON, - ACTIONS(1387), 1, - anon_sym_RBRACK, - STATE(992), 1, + STATE(845), 1, sym_primary_expression, - STATE(1110), 1, + STATE(954), 1, sym_string, - STATE(1451), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1823), 1, sym_expression, - STATE(2561), 1, - sym_slice, - STATE(2786), 1, + STATE(2490), 1, + sym_expression_list, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(1363), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45825,7 +44790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45842,64 +44807,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22097] = 25, - ACTIONS(737), 1, + [21984] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1389), 1, + ACTIONS(1365), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1865), 1, sym_expression, - STATE(2561), 1, + STATE(2539), 1, sym_slice, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45907,7 +44872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45924,64 +44889,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22204] = 25, - ACTIONS(737), 1, + [22091] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1391), 1, + ACTIONS(1367), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1865), 1, sym_expression, - STATE(2561), 1, + STATE(2539), 1, sym_slice, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45989,7 +44954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46006,64 +44971,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22311] = 25, - ACTIONS(737), 1, + [22198] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1393), 1, + ACTIONS(1369), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1865), 1, sym_expression, - STATE(2561), 1, + STATE(2539), 1, sym_slice, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46071,7 +45036,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46088,72 +45053,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22418] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [22305] = 19, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, - anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, - sym_identifier, - ACTIONS(1347), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_COLON, - ACTIONS(1395), 1, - anon_sym_RBRACK, - STATE(992), 1, - sym_primary_expression, - STATE(1110), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(662), 1, + anon_sym_await, + STATE(984), 1, sym_string, - STATE(1451), 1, + STATE(1116), 1, + sym_primary_expression, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1861), 1, - sym_expression, - STATE(2561), 1, - sym_slice, - STATE(2786), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(267), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(656), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(654), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(1371), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(312), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1768), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1462), 16, + ACTIONS(265), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46170,64 +45129,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22525] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [22400] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, + sym_identifier, + ACTIONS(398), 1, anon_sym_await, + ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(637), 1, + anon_sym_LBRACK, ACTIONS(1293), 1, - sym_identifier, - ACTIONS(1347), 1, anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_COLON, - ACTIONS(1397), 1, - anon_sym_RBRACK, - STATE(992), 1, + ACTIONS(1373), 1, + anon_sym_from, + STATE(845), 1, sym_primary_expression, - STATE(1110), 1, + STATE(954), 1, sym_string, - STATE(1451), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1785), 1, sym_expression, - STATE(2561), 1, - sym_slice, - STATE(2786), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(1289), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46235,7 +45193,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46252,64 +45210,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22632] = 25, - ACTIONS(737), 1, + [22505] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1399), 1, + ACTIONS(1375), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1865), 1, sym_expression, - STATE(2561), 1, + STATE(2539), 1, sym_slice, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46317,7 +45275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46334,64 +45292,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22739] = 25, - ACTIONS(737), 1, + [22612] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1401), 1, + ACTIONS(1377), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1865), 1, sym_expression, - STATE(2561), 1, + STATE(2539), 1, sym_slice, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46399,7 +45357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46416,64 +45374,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22846] = 25, - ACTIONS(737), 1, + [22719] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1403), 1, + ACTIONS(1379), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1865), 1, sym_expression, - STATE(2561), 1, + STATE(2539), 1, sym_slice, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46481,7 +45439,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46498,64 +45456,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22953] = 25, - ACTIONS(737), 1, + [22826] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1405), 1, + ACTIONS(1381), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1865), 1, sym_expression, - STATE(2561), 1, + STATE(2539), 1, sym_slice, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46563,7 +45521,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46580,64 +45538,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23060] = 25, - ACTIONS(737), 1, + [22933] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1407), 1, + ACTIONS(1383), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1865), 1, sym_expression, - STATE(2561), 1, + STATE(2539), 1, sym_slice, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46645,7 +45603,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46662,64 +45620,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23167] = 25, - ACTIONS(737), 1, + [23040] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1409), 1, + ACTIONS(1385), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1865), 1, sym_expression, - STATE(2561), 1, + STATE(2539), 1, sym_slice, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46727,7 +45685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46744,145 +45702,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23274] = 25, - ACTIONS(737), 1, + [23147] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1411), 1, + ACTIONS(1387), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1865), 1, sym_expression, - STATE(2561), 1, + STATE(2539), 1, sym_slice, - STATE(2786), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(751), 2, - sym_ellipsis, - sym_float, - ACTIONS(1021), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(747), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1019), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(735), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1768), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1462), 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, - [23381] = 24, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, - sym_identifier, - ACTIONS(410), 1, - anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, - anon_sym_STAR, - ACTIONS(1413), 1, - anon_sym_from, - STATE(870), 1, - sym_primary_expression, - STATE(969), 1, - sym_string, - STATE(1135), 1, - sym_list_splat_pattern, - STATE(1843), 1, - sym_expression, - STATE(2672), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(1313), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46890,7 +45767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46907,145 +45784,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23486] = 25, - ACTIONS(737), 1, + [23254] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1415), 1, + ACTIONS(1389), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1865), 1, sym_expression, - STATE(2561), 1, + STATE(2539), 1, sym_slice, - STATE(2786), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(751), 2, - sym_ellipsis, - sym_float, - ACTIONS(1021), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(747), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1019), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(735), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1768), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1462), 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, - [23593] = 24, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, - anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, - anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, - sym_identifier, - ACTIONS(1347), 1, - anon_sym_STAR, - ACTIONS(1419), 1, - anon_sym_COLON, - STATE(992), 1, - sym_primary_expression, - STATE(1110), 1, - sym_string, - STATE(1451), 1, - sym_list_splat_pattern, - STATE(1867), 1, - sym_expression, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(1417), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47053,7 +45849,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47070,64 +45866,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23698] = 25, - ACTIONS(737), 1, + [23361] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1421), 1, + ACTIONS(1391), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1865), 1, sym_expression, - STATE(2561), 1, + STATE(2539), 1, sym_slice, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47135,7 +45931,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47152,64 +45948,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23805] = 25, - ACTIONS(737), 1, + [23468] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1423), 1, + ACTIONS(1393), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1865), 1, sym_expression, - STATE(2561), 1, + STATE(2539), 1, sym_slice, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47217,7 +46013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47234,63 +46030,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23912] = 24, - ACTIONS(737), 1, + [23575] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1427), 1, + ACTIONS(1339), 1, anon_sym_COLON, - STATE(992), 1, + ACTIONS(1395), 1, + anon_sym_RBRACK, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1878), 1, + STATE(1865), 1, sym_expression, - STATE(2786), 1, + STATE(2539), 1, + sym_slice, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(1425), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47298,7 +46095,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47315,63 +46112,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24017] = 24, - ACTIONS(311), 1, + [23682] = 25, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1003), 1, + anon_sym_not, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(1049), 1, - anon_sym_not, - STATE(971), 1, + ACTIONS(1339), 1, + anon_sym_COLON, + ACTIONS(1397), 1, + anon_sym_RBRACK, + STATE(963), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1081), 1, sym_string, - STATE(1325), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(1865), 1, sym_expression, - STATE(2678), 1, + STATE(2539), 1, + sym_slice, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - STATE(2544), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(997), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(995), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47379,7 +46177,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47396,64 +46194,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24122] = 25, - ACTIONS(737), 1, + [23789] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1429), 1, + ACTIONS(1399), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1865), 1, sym_expression, - STATE(2561), 1, + STATE(2539), 1, sym_slice, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47461,7 +46259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47478,64 +46276,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24229] = 25, - ACTIONS(737), 1, + [23896] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1431), 1, + ACTIONS(1401), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1865), 1, sym_expression, - STATE(2561), 1, + STATE(2539), 1, sym_slice, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47543,7 +46341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47560,64 +46358,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24336] = 25, - ACTIONS(737), 1, + [24003] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1433), 1, + ACTIONS(1403), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1865), 1, sym_expression, - STATE(2561), 1, + STATE(2539), 1, sym_slice, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47625,7 +46423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47642,66 +46440,72 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24443] = 19, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [24110] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(676), 1, - anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(769), 1, + anon_sym_LBRACE, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1003), 1, + anon_sym_not, + ACTIONS(1005), 1, + anon_sym_lambda, + ACTIONS(1007), 1, anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1053), 1, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1307), 1, + anon_sym_STAR, + ACTIONS(1339), 1, + anon_sym_COLON, + ACTIONS(1405), 1, + anon_sym_RBRACK, + STATE(963), 1, sym_primary_expression, - STATE(1325), 1, + STATE(1081), 1, + sym_string, + STATE(1444), 1, sym_list_splat_pattern, + STATE(1865), 1, + sym_expression, + STATE(2539), 1, + sym_slice, + STATE(2585), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(322), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(1435), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(324), 5, + ACTIONS(755), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(277), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1311), 16, + STATE(1748), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47718,64 +46522,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24538] = 25, - ACTIONS(737), 1, + [24217] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1437), 1, + ACTIONS(1407), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1865), 1, sym_expression, - STATE(2561), 1, + STATE(2539), 1, sym_slice, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47783,7 +46587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47800,64 +46604,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24645] = 25, - ACTIONS(737), 1, + [24324] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1439), 1, + ACTIONS(1409), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1865), 1, sym_expression, - STATE(2561), 1, + STATE(2539), 1, sym_slice, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47865,7 +46669,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47882,62 +46686,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24752] = 24, - ACTIONS(311), 1, + [24431] = 25, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1003), 1, + anon_sym_not, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1441), 1, - anon_sym_LPAREN, - ACTIONS(1443), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(971), 1, + ACTIONS(1339), 1, + anon_sym_COLON, + ACTIONS(1411), 1, + anon_sym_RBRACK, + STATE(963), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1081), 1, sym_string, - STATE(1325), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1991), 1, + STATE(1865), 1, sym_expression, - STATE(2442), 1, - sym_with_item, - STATE(2678), 1, + STATE(2539), 1, + sym_slice, + STATE(2585), 1, sym__named_expression_lhs, - STATE(2686), 1, - sym_with_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(997), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(995), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47945,7 +46751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47962,61 +46768,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24856] = 23, - ACTIONS(67), 1, + [24538] = 25, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, - sym_identifier, - ACTIONS(410), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(870), 1, + ACTIONS(1339), 1, + anon_sym_COLON, + ACTIONS(1413), 1, + anon_sym_RBRACK, + STATE(963), 1, sym_primary_expression, - STATE(969), 1, + STATE(1081), 1, sym_string, - STATE(1135), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1843), 1, + STATE(1865), 1, sym_expression, - STATE(2672), 1, + STATE(2539), 1, + sym_slice, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(1445), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48024,7 +46833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48041,61 +46850,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24958] = 23, - ACTIONS(737), 1, + [24645] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(992), 1, + ACTIONS(1339), 1, + anon_sym_COLON, + ACTIONS(1415), 1, + anon_sym_RBRACK, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1939), 1, + STATE(1865), 1, sym_expression, - STATE(2786), 1, + STATE(2539), 1, + sym_slice, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(1417), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48103,7 +46915,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48120,56 +46932,57 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25060] = 23, - ACTIONS(783), 1, + [24752] = 24, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(1007), 1, anon_sym_await, ACTIONS(1281), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(967), 1, + ACTIONS(1339), 1, + anon_sym_COLON, + STATE(963), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1081), 1, sym_string, - STATE(1316), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1982), 1, + STATE(1803), 1, sym_expression, - STATE(2630), 1, + STATE(2386), 1, + sym_slice, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(1299), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(793), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, @@ -48182,7 +46995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48199,61 +47012,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25162] = 23, - ACTIONS(759), 1, + [24856] = 23, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1069), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1155), 1, + sym_identifier, + ACTIONS(1269), 1, anon_sym_STAR, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_lambda, - STATE(972), 1, + STATE(857), 1, sym_primary_expression, - STATE(1044), 1, + STATE(969), 1, sym_string, - STATE(1390), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1806), 1, + STATE(1814), 1, sym_expression, - STATE(2684), 1, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - STATE(1932), 2, + STATE(2072), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(771), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48261,7 +47074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48278,134 +47091,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25264] = 23, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(791), 1, - anon_sym_LBRACK, - ACTIONS(795), 1, + [24958] = 20, + ACTIONS(292), 1, + anon_sym_in, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(801), 1, - sym_string_start, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, - anon_sym_lambda, - ACTIONS(1087), 1, - anon_sym_await, - ACTIONS(1281), 1, - sym_identifier, - ACTIONS(1355), 1, - anon_sym_STAR, - STATE(967), 1, - sym_primary_expression, - STATE(1034), 1, - sym_string, - STATE(1316), 1, - sym_list_splat_pattern, - STATE(1982), 1, - sym_expression, - STATE(2630), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(797), 2, - sym_ellipsis, - sym_float, - ACTIONS(1077), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(1313), 2, - anon_sym_RPAREN, + ACTIONS(308), 1, anon_sym_COMMA, - ACTIONS(793), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1075), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(781), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1748), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1418), 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, - [25366] = 19, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(662), 1, anon_sym_await, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1053), 1, + STATE(1116), 1, sym_primary_expression, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(267), 2, anon_sym_DOT, anon_sym_SLASH, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(667), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(680), 2, + ACTIONS(656), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(654), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(312), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(277), 9, + ACTIONS(265), 9, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, @@ -48415,7 +47150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - STATE(1311), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48432,65 +47167,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25460] = 19, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [25054] = 23, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(676), 1, - anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(769), 1, + anon_sym_LBRACE, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1003), 1, + anon_sym_not, + ACTIONS(1005), 1, + anon_sym_lambda, + ACTIONS(1007), 1, anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1053), 1, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1307), 1, + anon_sym_STAR, + STATE(963), 1, sym_primary_expression, - STATE(1325), 1, + STATE(1081), 1, + sym_string, + STATE(1444), 1, sym_list_splat_pattern, + STATE(1877), 1, + sym_expression, + STATE(2585), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(320), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(322), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, + ACTIONS(1417), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(755), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(277), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1311), 16, + STATE(1748), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48507,61 +47246,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25554] = 23, - ACTIONS(737), 1, + [25156] = 23, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1029), 1, - anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1081), 1, + anon_sym_await, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(992), 1, + ACTIONS(1247), 1, + anon_sym_lambda, + STATE(950), 1, sym_primary_expression, - STATE(1110), 1, + STATE(985), 1, sym_string, - STATE(1451), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(1822), 1, sym_expression, - STATE(2786), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(1299), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(747), 3, + STATE(1955), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48569,7 +47308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48586,61 +47325,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25656] = 23, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [25258] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, + sym_identifier, + ACTIONS(398), 1, anon_sym_await, + ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(637), 1, + anon_sym_LBRACK, ACTIONS(1293), 1, - sym_identifier, - ACTIONS(1347), 1, anon_sym_STAR, - STATE(992), 1, + STATE(845), 1, sym_primary_expression, - STATE(1110), 1, + STATE(954), 1, sym_string, - STATE(1451), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(1785), 1, sym_expression, - STATE(2786), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(1313), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(747), 3, + ACTIONS(1419), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48648,7 +47387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48665,57 +47404,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25758] = 24, - ACTIONS(783), 1, + [25360] = 23, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(1007), 1, anon_sym_await, ACTIONS(1281), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1447), 1, - anon_sym_RPAREN, - STATE(967), 1, + STATE(963), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1081), 1, sym_string, - STATE(1316), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1948), 1, + STATE(1913), 1, sym_expression, - STATE(2551), 1, - sym_with_item, - STATE(2630), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(1287), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, @@ -48728,7 +47466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48745,62 +47483,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25862] = 24, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [25462] = 24, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1423), 1, anon_sym_COLON, - STATE(992), 1, + STATE(952), 1, sym_primary_expression, - STATE(1110), 1, + STATE(984), 1, sym_string, - STATE(1451), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1830), 1, + STATE(1880), 1, sym_expression, - STATE(2353), 1, - sym_slice, - STATE(2786), 1, + STATE(2506), 1, + sym_with_item, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, - sym_ellipsis, - sym_float, - ACTIONS(1021), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48808,7 +47546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48825,61 +47563,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25966] = 23, - ACTIONS(737), 1, + [25566] = 24, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(992), 1, + ACTIONS(1339), 1, + anon_sym_COLON, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1906), 1, + STATE(1813), 1, sym_expression, - STATE(2786), 1, + STATE(2417), 1, + sym_slice, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(1449), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48887,7 +47626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48904,62 +47643,127 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26068] = 24, - ACTIONS(311), 1, + [25670] = 10, + ACTIONS(1429), 1, + anon_sym_else, + ACTIONS(1431), 1, + anon_sym_except, + ACTIONS(1433), 1, + anon_sym_except_STAR, + ACTIONS(1435), 1, + anon_sym_finally, + STATE(690), 1, + sym_else_clause, + STATE(753), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(413), 3, + sym_except_clause, + sym_except_group_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1425), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(318), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1427), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(682), 1, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [25746] = 23, + ACTIONS(691), 1, + anon_sym_LPAREN, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(703), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(1441), 1, - anon_sym_LPAREN, - ACTIONS(1443), 1, + ACTIONS(823), 1, + anon_sym_await, + ACTIONS(1155), 1, + sym_identifier, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(971), 1, + ACTIONS(1271), 1, + anon_sym_lambda, + STATE(857), 1, sym_primary_expression, - STATE(1025), 1, + STATE(969), 1, sym_string, - STATE(1325), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1991), 1, + STATE(1782), 1, sym_expression, - STATE(2442), 1, - sym_with_item, - STATE(2624), 1, - sym_with_clause, - STATE(2678), 1, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(809), 2, + anon_sym_match, + anon_sym_type, + STATE(2052), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(807), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48967,7 +47771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48984,61 +47788,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26172] = 23, - ACTIONS(759), 1, + [25848] = 24, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1005), 1, + anon_sym_lambda, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1275), 1, - anon_sym_lambda, - STATE(972), 1, + ACTIONS(1339), 1, + anon_sym_COLON, + STATE(963), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1081), 1, sym_string, - STATE(1390), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1806), 1, + STATE(1865), 1, sym_expression, - STATE(2684), 1, + STATE(2539), 1, + sym_slice, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - STATE(1976), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(771), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49046,7 +47851,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49063,61 +47868,127 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26274] = 23, - ACTIONS(805), 1, + [25952] = 10, + ACTIONS(1429), 1, + anon_sym_else, + ACTIONS(1431), 1, + anon_sym_except, + ACTIONS(1433), 1, + anon_sym_except_STAR, + ACTIONS(1435), 1, + anon_sym_finally, + STATE(681), 1, + sym_else_clause, + STATE(771), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(482), 3, + sym_except_clause, + sym_except_group_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1437), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(813), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(817), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(823), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1439), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [26028] = 23, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(721), 1, + anon_sym_LBRACK, + ACTIONS(725), 1, + anon_sym_LBRACE, + ACTIONS(731), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(847), 1, + ACTIONS(1037), 1, + anon_sym_lambda, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(1303), 1, anon_sym_STAR, - ACTIONS(1271), 1, - anon_sym_lambda, - STATE(928), 1, + STATE(953), 1, sym_primary_expression, - STATE(977), 1, + STATE(995), 1, sym_string, - STATE(1200), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1938), 1, sym_expression, - STATE(2649), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1029), 2, anon_sym_match, anon_sym_type, - STATE(1955), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(815), 3, + ACTIONS(1289), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1027), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49125,7 +47996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49142,61 +48013,127 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26376] = 23, - ACTIONS(67), 1, + [26130] = 10, + ACTIONS(1441), 1, + anon_sym_else, + ACTIONS(1443), 1, + anon_sym_except, + ACTIONS(1445), 1, + anon_sym_except_STAR, + ACTIONS(1447), 1, + anon_sym_finally, + STATE(692), 1, + sym_else_clause, + STATE(794), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(587), 3, + sym_except_clause, + sym_except_group_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1437), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(69), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1439), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(410), 1, anon_sym_await, - ACTIONS(653), 1, + sym_true, + sym_false, + sym_none, + [26206] = 23, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(769), 1, + anon_sym_LBRACE, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1003), 1, + anon_sym_not, + ACTIONS(1005), 1, + anon_sym_lambda, + ACTIONS(1007), 1, + anon_sym_await, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(870), 1, + STATE(963), 1, sym_primary_expression, - STATE(969), 1, + STATE(1081), 1, sym_string, - STATE(1135), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1900), 1, sym_expression, - STATE(2672), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(1451), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(1449), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49204,7 +48141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49221,61 +48158,193 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26478] = 23, - ACTIONS(67), 1, + [26308] = 10, + ACTIONS(1441), 1, + anon_sym_else, + ACTIONS(1443), 1, + anon_sym_except, + ACTIONS(1445), 1, + anon_sym_except_STAR, + ACTIONS(1447), 1, + anon_sym_finally, + STATE(695), 1, + sym_else_clause, + STATE(795), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(418), 3, + sym_except_clause, + sym_except_group_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1453), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(69), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1451), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(81), 1, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [26384] = 10, + ACTIONS(1441), 1, + anon_sym_else, + ACTIONS(1443), 1, + anon_sym_except, + ACTIONS(1445), 1, + anon_sym_except_STAR, + ACTIONS(1447), 1, + anon_sym_finally, + STATE(701), 1, + sym_else_clause, + STATE(811), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(587), 3, + sym_except_clause, + sym_except_group_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1457), 12, + sym__dedent, sym_string_start, - ACTIONS(387), 1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1455), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(410), 1, anon_sym_await, - ACTIONS(653), 1, + sym_true, + sym_false, + sym_none, + [26460] = 23, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(793), 1, + anon_sym_LBRACE, + ACTIONS(799), 1, + sym_string_start, + ACTIONS(857), 1, + anon_sym_not, + ACTIONS(1071), 1, + sym_identifier, + ACTIONS(1081), 1, + anon_sym_await, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(870), 1, + ACTIONS(1247), 1, + anon_sym_lambda, + STATE(950), 1, sym_primary_expression, - STATE(969), 1, + STATE(985), 1, sym_string, - STATE(1135), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1822), 1, sym_expression, - STATE(2672), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(1453), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + STATE(2075), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49283,7 +48352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49300,61 +48369,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26580] = 23, - ACTIONS(805), 1, + [26562] = 23, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(1081), 1, + anon_sym_await, + ACTIONS(1243), 1, anon_sym_STAR, - ACTIONS(1271), 1, + ACTIONS(1247), 1, anon_sym_lambda, - STATE(928), 1, + STATE(950), 1, sym_primary_expression, - STATE(977), 1, + STATE(985), 1, sym_string, - STATE(1200), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1779), 1, sym_expression, - STATE(2649), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - STATE(1925), 2, + STATE(2055), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(815), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49362,7 +48431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49379,62 +48448,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26682] = 24, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(672), 1, + [26664] = 23, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(703), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(823), 1, + anon_sym_await, + ACTIONS(1155), 1, + sym_identifier, + ACTIONS(1269), 1, anon_sym_STAR, - ACTIONS(1455), 1, - anon_sym_COLON, - STATE(971), 1, + ACTIONS(1271), 1, + anon_sym_lambda, + STATE(857), 1, sym_primary_expression, - STATE(1025), 1, + STATE(969), 1, sym_string, - STATE(1325), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1991), 1, + STATE(1814), 1, sym_expression, - STATE(2565), 1, - sym_with_item, - STATE(2678), 1, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(809), 2, + anon_sym_match, + anon_sym_type, + STATE(1929), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(807), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49442,7 +48510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49459,61 +48527,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26786] = 23, - ACTIONS(805), 1, + [26766] = 23, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(1081), 1, + anon_sym_await, + ACTIONS(1243), 1, anon_sym_STAR, - ACTIONS(1271), 1, + ACTIONS(1247), 1, anon_sym_lambda, - STATE(928), 1, + STATE(950), 1, sym_primary_expression, - STATE(977), 1, + STATE(985), 1, sym_string, - STATE(1200), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1813), 1, + STATE(1822), 1, sym_expression, - STATE(2649), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - STATE(2074), 2, + STATE(1907), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(815), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49521,7 +48589,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49538,61 +48606,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26888] = 23, - ACTIONS(737), 1, + [26868] = 24, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(992), 1, + ACTIONS(1459), 1, + anon_sym_RPAREN, + STATE(953), 1, sym_primary_expression, - STATE(1110), 1, + STATE(995), 1, sym_string, - STATE(1451), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1953), 1, + STATE(1950), 1, sym_expression, - STATE(2786), 1, + STATE(2483), 1, + sym_with_item, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1029), 2, anon_sym_match, anon_sym_type, - ACTIONS(1457), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(747), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1027), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49600,7 +48669,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49617,62 +48686,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26990] = 24, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [26972] = 24, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_COLON, - STATE(992), 1, + ACTIONS(1461), 1, + anon_sym_LPAREN, + STATE(952), 1, sym_primary_expression, - STATE(1110), 1, + STATE(984), 1, sym_string, - STATE(1451), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1880), 1, sym_expression, - STATE(2561), 1, - sym_slice, - STATE(2786), 1, + STATE(2424), 1, + sym_with_item, + STATE(2623), 1, + sym_with_clause, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, - sym_ellipsis, - sym_float, - ACTIONS(1021), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49680,7 +48749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49697,61 +48766,202 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27094] = 23, - ACTIONS(759), 1, + [27076] = 19, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(652), 1, + anon_sym_STAR, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(662), 1, + anon_sym_await, + STATE(984), 1, + sym_string, + STATE(1116), 1, + sym_primary_expression, + STATE(1372), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(267), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(308), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(656), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(654), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(312), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(265), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1377), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [27170] = 10, + ACTIONS(1429), 1, + anon_sym_else, + ACTIONS(1431), 1, + anon_sym_except, + ACTIONS(1433), 1, + anon_sym_except_STAR, + ACTIONS(1435), 1, + anon_sym_finally, + STATE(699), 1, + sym_else_clause, + STATE(824), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(428), 3, + sym_except_clause, + sym_except_group_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1453), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(779), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1451), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [27246] = 23, + ACTIONS(735), 1, + anon_sym_LPAREN, + ACTIONS(743), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, + anon_sym_LBRACE, + ACTIONS(753), 1, sym_string_start, + ACTIONS(871), 1, + sym_identifier, ACTIONS(887), 1, anon_sym_not, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1069), 1, + ACTIONS(893), 1, anon_sym_await, ACTIONS(1273), 1, anon_sym_STAR, ACTIONS(1275), 1, anon_sym_lambda, - STATE(972), 1, + STATE(893), 1, sym_primary_expression, - STATE(1044), 1, + STATE(958), 1, sym_string, - STATE(1390), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1796), 1, + STATE(1820), 1, sym_expression, - STATE(2684), 1, + STATE(2645), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - STATE(2010), 2, + STATE(1943), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(771), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(879), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49759,7 +48969,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49776,62 +48986,127 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27196] = 24, - ACTIONS(311), 1, + [27348] = 10, + ACTIONS(1429), 1, + anon_sym_else, + ACTIONS(1431), 1, + anon_sym_except, + ACTIONS(1433), 1, + anon_sym_except_STAR, + ACTIONS(1435), 1, + anon_sym_finally, + STATE(687), 1, + sym_else_clause, + STATE(722), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(482), 3, + sym_except_clause, + sym_except_group_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1457), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(318), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1455), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, anon_sym_lambda, - ACTIONS(326), 1, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(328), 1, + sym_true, + sym_false, + sym_none, + [27424] = 23, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1441), 1, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(1443), 1, + ACTIONS(637), 1, + anon_sym_LBRACK, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(971), 1, + STATE(845), 1, sym_primary_expression, - STATE(1025), 1, + STATE(954), 1, sym_string, - STATE(1325), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1991), 1, + STATE(1825), 1, sym_expression, - STATE(2442), 1, - sym_with_item, - STATE(2678), 1, + STATE(2616), 1, sym__named_expression_lhs, - STATE(2693), 1, - sym_with_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(387), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1463), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(383), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49839,7 +49114,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49856,61 +49131,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27300] = 23, - ACTIONS(805), 1, + [27526] = 23, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(871), 1, + sym_identifier, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(847), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(1171), 1, - sym_identifier, - ACTIONS(1265), 1, + ACTIONS(1273), 1, anon_sym_STAR, - ACTIONS(1271), 1, + ACTIONS(1275), 1, anon_sym_lambda, - STATE(928), 1, + STATE(893), 1, sym_primary_expression, - STATE(977), 1, + STATE(958), 1, sym_string, - STATE(1200), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1820), 1, sym_expression, - STATE(2649), 1, + STATE(2645), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - STATE(2081), 2, + STATE(1953), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(815), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(879), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49918,7 +49193,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49935,65 +49210,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27402] = 19, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [27628] = 23, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(676), 1, - anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(747), 1, + anon_sym_LBRACE, + ACTIONS(753), 1, + sym_string_start, + ACTIONS(871), 1, + sym_identifier, + ACTIONS(887), 1, + anon_sym_not, + ACTIONS(893), 1, anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1053), 1, + ACTIONS(1273), 1, + anon_sym_STAR, + ACTIONS(1275), 1, + anon_sym_lambda, + STATE(893), 1, sym_primary_expression, - STATE(1325), 1, + STATE(958), 1, + sym_string, + STATE(1259), 1, sym_list_splat_pattern, + STATE(1821), 1, + sym_expression, + STATE(2645), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(322), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - ACTIONS(1435), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(316), 3, + STATE(2005), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(879), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(733), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(277), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1311), 16, + STATE(1754), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50010,62 +49289,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27496] = 24, - ACTIONS(311), 1, + [27730] = 23, + ACTIONS(735), 1, + anon_sym_LPAREN, + ACTIONS(743), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(871), 1, sym_identifier, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1441), 1, - anon_sym_LPAREN, - ACTIONS(1443), 1, + ACTIONS(893), 1, + anon_sym_await, + ACTIONS(1273), 1, anon_sym_STAR, - STATE(971), 1, + ACTIONS(1275), 1, + anon_sym_lambda, + STATE(893), 1, sym_primary_expression, - STATE(1025), 1, + STATE(958), 1, sym_string, - STATE(1325), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1991), 1, + STATE(1798), 1, sym_expression, - STATE(2442), 1, - sym_with_item, - STATE(2651), 1, - sym_with_clause, - STATE(2678), 1, + STATE(2645), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(881), 2, + anon_sym_match, + anon_sym_type, + STATE(2066), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(879), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50073,7 +49351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50090,61 +49368,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27600] = 23, - ACTIONS(715), 1, + [27832] = 23, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(865), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(871), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(1155), 1, + sym_identifier, + ACTIONS(1269), 1, anon_sym_STAR, - ACTIONS(1311), 1, + ACTIONS(1271), 1, anon_sym_lambda, - STATE(964), 1, + STATE(857), 1, sym_primary_expression, - STATE(980), 1, + STATE(969), 1, sym_string, - STATE(1229), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1832), 1, + STATE(1784), 1, sym_expression, - STATE(2645), 1, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - STATE(1904), 2, + STATE(2014), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(725), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50152,7 +49430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50169,66 +49447,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27702] = 20, - ACTIONS(304), 1, - anon_sym_in, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(320), 1, - anon_sym_COMMA, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [27934] = 23, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(676), 1, - anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(769), 1, + anon_sym_LBRACE, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1003), 1, + anon_sym_not, + ACTIONS(1005), 1, + anon_sym_lambda, + ACTIONS(1007), 1, anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1053), 1, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1307), 1, + anon_sym_STAR, + STATE(963), 1, sym_primary_expression, - STATE(1325), 1, + STATE(1081), 1, + sym_string, + STATE(1444), 1, sym_list_splat_pattern, + STATE(1963), 1, + sym_expression, + STATE(2585), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(322), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, + ACTIONS(1345), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(755), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(277), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1311), 16, + STATE(1748), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50245,61 +49526,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27798] = 23, - ACTIONS(67), 1, + [28036] = 24, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(721), 1, + anon_sym_LBRACK, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(731), 1, + sym_string_start, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, - sym_identifier, - ACTIONS(410), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1253), 1, + sym_identifier, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(870), 1, + ACTIONS(1465), 1, + anon_sym_RPAREN, + STATE(953), 1, sym_primary_expression, - STATE(969), 1, + STATE(995), 1, sym_string, - STATE(1135), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1843), 1, + STATE(1950), 1, sym_expression, - STATE(2672), 1, + STATE(2483), 1, + sym_with_item, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(1029), 2, anon_sym_match, anon_sym_type, - ACTIONS(1459), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1027), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50307,7 +49589,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50324,61 +49606,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27900] = 23, - ACTIONS(759), 1, + [28140] = 23, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1059), 1, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1081), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1243), 1, anon_sym_STAR, - ACTIONS(1275), 1, + ACTIONS(1247), 1, anon_sym_lambda, - STATE(972), 1, + STATE(950), 1, sym_primary_expression, - STATE(1044), 1, + STATE(985), 1, sym_string, - STATE(1390), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1839), 1, + STATE(1802), 1, sym_expression, - STATE(2684), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - STATE(2095), 2, + STATE(2065), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(771), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50386,7 +49668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50403,61 +49685,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28002] = 23, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [28242] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(865), 1, - anon_sym_not, - ACTIONS(871), 1, + ACTIONS(398), 1, anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(637), 1, + anon_sym_LBRACK, + ACTIONS(1293), 1, anon_sym_STAR, - ACTIONS(1311), 1, - anon_sym_lambda, - STATE(964), 1, + STATE(845), 1, sym_primary_expression, - STATE(980), 1, + STATE(954), 1, sym_string, - STATE(1229), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1832), 1, + STATE(1785), 1, sym_expression, - STATE(2645), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - STATE(1916), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(725), 3, + ACTIONS(1467), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50465,7 +49747,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50482,61 +49764,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28104] = 23, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [28344] = 24, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(306), 1, + anon_sym_lambda, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(865), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(871), 1, - anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(1311), 1, - anon_sym_lambda, - STATE(964), 1, + ACTIONS(1469), 1, + anon_sym_COLON, + STATE(952), 1, sym_primary_expression, - STATE(980), 1, + STATE(984), 1, sym_string, - STATE(1229), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1808), 1, + STATE(1880), 1, sym_expression, - STATE(2645), 1, + STATE(2506), 1, + sym_with_item, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, - sym_ellipsis, - sym_float, - ACTIONS(859), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - STATE(2038), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(725), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50544,7 +49827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50561,61 +49844,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28206] = 23, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [28448] = 24, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(306), 1, + anon_sym_lambda, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(865), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(871), 1, - anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(1311), 1, - anon_sym_lambda, - STATE(964), 1, + ACTIONS(1461), 1, + anon_sym_LPAREN, + STATE(952), 1, sym_primary_expression, - STATE(980), 1, + STATE(984), 1, sym_string, - STATE(1229), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1822), 1, + STATE(1880), 1, sym_expression, - STATE(2645), 1, + STATE(2424), 1, + sym_with_item, + STATE(2637), 1, + sym_with_clause, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, - sym_ellipsis, - sym_float, - ACTIONS(859), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - STATE(2073), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(725), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50623,7 +49907,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50640,61 +49924,127 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28308] = 23, - ACTIONS(715), 1, + [28552] = 10, + ACTIONS(1441), 1, + anon_sym_else, + ACTIONS(1443), 1, + anon_sym_except, + ACTIONS(1445), 1, + anon_sym_except_STAR, + ACTIONS(1447), 1, + anon_sym_finally, + STATE(685), 1, + sym_else_clause, + STATE(783), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(415), 3, + sym_except_clause, + sym_except_group_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1425), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(723), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(727), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(733), 1, - sym_string_start, - ACTIONS(849), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1427), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(865), 1, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28628] = 23, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(721), 1, + anon_sym_LBRACK, + ACTIONS(725), 1, + anon_sym_LBRACE, + ACTIONS(731), 1, + sym_string_start, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(871), 1, + ACTIONS(1037), 1, + anon_sym_lambda, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(1253), 1, + sym_identifier, + ACTIONS(1303), 1, anon_sym_STAR, - ACTIONS(1311), 1, - anon_sym_lambda, - STATE(964), 1, + STATE(953), 1, sym_primary_expression, - STATE(980), 1, + STATE(995), 1, sym_string, - STATE(1229), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1832), 1, + STATE(1938), 1, sym_expression, - STATE(2645), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(1029), 2, anon_sym_match, anon_sym_type, - STATE(2042), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(725), 3, + ACTIONS(1287), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(1027), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50702,7 +50052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50719,69 +50069,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28410] = 23, - ACTIONS(67), 1, + [28730] = 19, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(387), 1, - sym_identifier, - ACTIONS(410), 1, - anon_sym_await, - ACTIONS(653), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(652), 1, anon_sym_STAR, - STATE(870), 1, - sym_primary_expression, - STATE(969), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(662), 1, + anon_sym_await, + STATE(984), 1, sym_string, - STATE(1135), 1, + STATE(1116), 1, + sym_primary_expression, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1886), 1, - sym_expression, - STATE(2672), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(267), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(643), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(656), 2, anon_sym_match, anon_sym_type, - ACTIONS(1461), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(654), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(312), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1679), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1081), 16, + ACTIONS(265), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50798,69 +50144,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28512] = 23, - ACTIONS(67), 1, + [28824] = 19, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(387), 1, - sym_identifier, - ACTIONS(410), 1, - anon_sym_await, - ACTIONS(653), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(652), 1, anon_sym_STAR, - STATE(870), 1, - sym_primary_expression, - STATE(969), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(662), 1, + anon_sym_await, + STATE(984), 1, sym_string, - STATE(1135), 1, + STATE(1116), 1, + sym_primary_expression, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1886), 1, - sym_expression, - STATE(2672), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(267), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(656), 2, anon_sym_match, anon_sym_type, - ACTIONS(1463), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(1371), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(654), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(312), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1679), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1081), 16, + ACTIONS(265), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50877,61 +50219,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28614] = 23, - ACTIONS(759), 1, + [28918] = 24, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1005), 1, + anon_sym_lambda, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1275), 1, - anon_sym_lambda, - STATE(972), 1, + ACTIONS(1339), 1, + anon_sym_COLON, + STATE(963), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1081), 1, sym_string, - STATE(1390), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1806), 1, + STATE(1786), 1, sym_expression, - STATE(2684), 1, + STATE(2233), 1, + sym_slice, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - STATE(2015), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(771), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50939,7 +50282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50956,65 +50299,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28716] = 19, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [29022] = 23, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(676), 1, - anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(703), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(817), 1, + anon_sym_not, + ACTIONS(823), 1, anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1053), 1, + ACTIONS(1155), 1, + sym_identifier, + ACTIONS(1269), 1, + anon_sym_STAR, + ACTIONS(1271), 1, + anon_sym_lambda, + STATE(857), 1, sym_primary_expression, - STATE(1325), 1, + STATE(969), 1, + sym_string, + STATE(1283), 1, sym_list_splat_pattern, + STATE(1814), 1, + sym_expression, + STATE(2716), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(320), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(322), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, + STATE(1892), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(689), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(277), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1311), 16, + STATE(1710), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51031,57 +50378,57 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28810] = 24, - ACTIONS(783), 1, + [29124] = 24, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(1007), 1, anon_sym_await, ACTIONS(1281), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1465), 1, - anon_sym_RPAREN, - STATE(967), 1, + ACTIONS(1339), 1, + anon_sym_COLON, + STATE(963), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1081), 1, sym_string, - STATE(1316), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1948), 1, + STATE(1780), 1, sym_expression, - STATE(2551), 1, - sym_with_item, - STATE(2630), 1, + STATE(2245), 1, + sym_slice, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, @@ -51094,7 +50441,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51111,62 +50458,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28914] = 24, - ACTIONS(311), 1, + [29228] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1293), 1, anon_sym_STAR, - ACTIONS(1467), 1, - anon_sym_COLON, - STATE(971), 1, + STATE(845), 1, sym_primary_expression, - STATE(1025), 1, + STATE(954), 1, sym_string, - STATE(1325), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1991), 1, + STATE(1825), 1, sym_expression, - STATE(2565), 1, - sym_with_item, - STATE(2678), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(387), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1471), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(383), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51174,7 +50520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51191,62 +50537,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29018] = 24, - ACTIONS(737), 1, + [29330] = 24, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1339), 1, anon_sym_COLON, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1817), 1, + STATE(1777), 1, sym_expression, - STATE(2505), 1, + STATE(2288), 1, sym_slice, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51254,7 +50600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51271,62 +50617,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29122] = 24, - ACTIONS(737), 1, + [29434] = 23, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_COLON, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1795), 1, + STATE(1913), 1, sym_expression, - STATE(2267), 1, - sym_slice, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(1289), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51334,7 +50679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51351,62 +50696,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29226] = 24, - ACTIONS(737), 1, + [29536] = 24, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1339), 1, anon_sym_COLON, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1819), 1, + STATE(1792), 1, sym_expression, - STATE(2314), 1, + STATE(2335), 1, sym_slice, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51414,7 +50759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51431,62 +50776,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29330] = 24, - ACTIONS(737), 1, + [29640] = 24, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1339), 1, anon_sym_COLON, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1833), 1, + STATE(1800), 1, sym_expression, - STATE(2359), 1, + STATE(2363), 1, sym_slice, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51494,7 +50839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51511,62 +50856,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29434] = 24, - ACTIONS(737), 1, + [29744] = 24, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1339), 1, anon_sym_COLON, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1801), 1, + STATE(1809), 1, sym_expression, - STATE(2388), 1, + STATE(2411), 1, sym_slice, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51574,7 +50919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51591,62 +50936,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29538] = 24, - ACTIONS(737), 1, + [29848] = 24, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1339), 1, anon_sym_COLON, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, STATE(1811), 1, sym_expression, - STATE(2414), 1, + STATE(2421), 1, sym_slice, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51654,7 +50999,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51671,62 +51016,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29642] = 24, - ACTIONS(737), 1, + [29952] = 24, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1339), 1, anon_sym_COLON, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1814), 1, + STATE(1812), 1, sym_expression, - STATE(2440), 1, + STATE(2426), 1, sym_slice, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51734,7 +51079,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51751,70 +51096,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29746] = 24, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [30056] = 19, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, - anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, - sym_identifier, - ACTIONS(1347), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_COLON, - STATE(992), 1, - sym_primary_expression, - STATE(1110), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(662), 1, + anon_sym_await, + STATE(984), 1, sym_string, - STATE(1451), 1, + STATE(1116), 1, + sym_primary_expression, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1816), 1, - sym_expression, - STATE(2450), 1, - sym_slice, - STATE(2786), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(267), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(308), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(656), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(654), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(312), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1768), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1462), 16, + ACTIONS(265), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51831,62 +51171,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29850] = 24, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [30150] = 24, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_COLON, - STATE(992), 1, + ACTIONS(1461), 1, + anon_sym_LPAREN, + STATE(952), 1, sym_primary_expression, - STATE(1110), 1, + STATE(984), 1, sym_string, - STATE(1451), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1880), 1, sym_expression, - STATE(2456), 1, - sym_slice, - STATE(2786), 1, + STATE(2424), 1, + sym_with_item, + STATE(2656), 1, + sym_with_clause, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, - sym_ellipsis, - sym_float, - ACTIONS(1021), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51894,7 +51234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51911,61 +51251,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29954] = 23, - ACTIONS(805), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, - anon_sym_LBRACK, - ACTIONS(817), 1, + [30254] = 24, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(823), 1, - sym_string_start, - ACTIONS(841), 1, - anon_sym_not, - ACTIONS(847), 1, + ACTIONS(306), 1, + anon_sym_lambda, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(1271), 1, - anon_sym_lambda, - STATE(928), 1, + ACTIONS(1461), 1, + anon_sym_LPAREN, + STATE(952), 1, sym_primary_expression, - STATE(977), 1, + STATE(984), 1, sym_string, - STATE(1200), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1831), 1, + STATE(1880), 1, sym_expression, - STATE(2649), 1, + STATE(2424), 1, + sym_with_item, + STATE(2663), 1, + sym_with_clause, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, - sym_ellipsis, - sym_float, - ACTIONS(833), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - STATE(2086), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(815), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51973,7 +51314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51990,125 +51331,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30056] = 10, - ACTIONS(284), 1, - anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(1469), 1, - anon_sym_for, - ACTIONS(1471), 1, - anon_sym_with, - ACTIONS(1473), 1, - anon_sym_def, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(304), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(320), 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(279), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(277), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [30131] = 23, - ACTIONS(311), 1, + [30358] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(971), 1, + STATE(845), 1, sym_primary_expression, - STATE(1025), 1, + STATE(954), 1, sym_string, - STATE(1325), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1850), 1, + STATE(1825), 1, sym_expression, - STATE(2678), 1, + STATE(2616), 1, sym__named_expression_lhs, - STATE(2711), 1, - sym_expression_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(387), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1473), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(383), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52116,7 +51393,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52133,60 +51410,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30232] = 23, - ACTIONS(311), 1, + [30460] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1299), 1, - anon_sym_COLON, - ACTIONS(1443), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(971), 1, + STATE(845), 1, sym_primary_expression, - STATE(1025), 1, + STATE(954), 1, sym_string, - STATE(1325), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1898), 1, + STATE(1825), 1, sym_expression, - STATE(2678), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(387), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1475), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(383), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52194,7 +51472,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52211,60 +51489,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30333] = 23, - ACTIONS(311), 1, + [30562] = 23, + ACTIONS(735), 1, + anon_sym_LPAREN, + ACTIONS(743), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(871), 1, sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1313), 1, - anon_sym_COLON, - ACTIONS(1443), 1, + ACTIONS(893), 1, + anon_sym_await, + ACTIONS(1273), 1, anon_sym_STAR, - STATE(971), 1, + ACTIONS(1275), 1, + anon_sym_lambda, + STATE(893), 1, sym_primary_expression, - STATE(1025), 1, + STATE(958), 1, sym_string, - STATE(1325), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1898), 1, + STATE(1820), 1, sym_expression, - STATE(2678), 1, + STATE(2645), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(881), 2, + anon_sym_match, + anon_sym_type, + STATE(2094), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(879), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52272,7 +51551,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52289,60 +51568,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30434] = 23, - ACTIONS(311), 1, + [30664] = 23, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(971), 1, + STATE(952), 1, sym_primary_expression, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1991), 1, + STATE(1826), 1, sym_expression, - STATE(2565), 1, - sym_with_item, - STATE(2678), 1, + STATE(2631), 1, + sym_expression_list, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52350,7 +51629,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52367,60 +51646,126 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30535] = 23, - ACTIONS(311), 1, + [30765] = 11, + ACTIONS(272), 1, + anon_sym_COMMA, + ACTIONS(280), 1, + anon_sym_COLON_EQ, + ACTIONS(282), 1, + anon_sym_COLON, + ACTIONS(292), 1, + anon_sym_EQ, + ACTIONS(1477), 1, + sym_identifier, + ACTIONS(1479), 1, + sym_string_start, + STATE(2435), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(265), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(308), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(267), 22, + anon_sym_as, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT, + anon_sym_GT, + [30842] = 23, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(1475), 1, - anon_sym_COLON, - STATE(971), 1, + STATE(952), 1, sym_primary_expression, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1896), 1, + STATE(1880), 1, sym_expression, - STATE(2678), 1, + STATE(2506), 1, + sym_with_item, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52428,7 +51773,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52445,60 +51790,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30636] = 23, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(791), 1, - anon_sym_LBRACK, - ACTIONS(795), 1, + [30943] = 23, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(801), 1, - sym_string_start, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(967), 1, + ACTIONS(1481), 1, + anon_sym_COLON, + STATE(952), 1, sym_primary_expression, - STATE(1034), 1, + STATE(984), 1, sym_string, - STATE(1316), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1948), 1, + STATE(1969), 1, sym_expression, - STATE(2551), 1, - sym_with_item, - STATE(2630), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, - sym_ellipsis, - sym_float, - ACTIONS(1077), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52506,7 +51851,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52523,60 +51868,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30737] = 23, - ACTIONS(311), 1, + [31044] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1293), 1, anon_sym_STAR, - ACTIONS(1477), 1, - anon_sym_COLON, - STATE(971), 1, + STATE(845), 1, sym_primary_expression, - STATE(1025), 1, + STATE(954), 1, sym_string, - STATE(1325), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1896), 1, + STATE(1778), 1, sym_expression, - STATE(2678), 1, + STATE(2535), 1, + sym_expression_list, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(387), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(383), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52584,7 +51929,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52601,60 +51946,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30838] = 23, - ACTIONS(311), 1, + [31145] = 23, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(971), 1, + ACTIONS(1483), 1, + anon_sym_COLON, + STATE(952), 1, sym_primary_expression, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1869), 1, + STATE(1902), 1, sym_expression, - STATE(2678), 1, + STATE(2729), 1, sym__named_expression_lhs, - STATE(2760), 1, - sym_expression_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52662,7 +52007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52679,24 +52024,24 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30939] = 10, - ACTIONS(284), 1, + [31246] = 10, + ACTIONS(272), 1, anon_sym_COMMA, - ACTIONS(292), 1, + ACTIONS(280), 1, anon_sym_COLON_EQ, - ACTIONS(1479), 1, + ACTIONS(1477), 1, sym_identifier, - ACTIONS(1481), 1, + ACTIONS(1479), 1, sym_string_start, - STATE(2344), 1, + STATE(2435), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(304), 2, + ACTIONS(292), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(277), 10, + ACTIONS(265), 10, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -52707,7 +52052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(320), 13, + ACTIONS(308), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -52721,7 +52066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(279), 22, + ACTIONS(267), 22, anon_sym_as, anon_sym_STAR, anon_sym_GT_GT, @@ -52744,60 +52089,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_LT, anon_sym_GT, - [31014] = 23, - ACTIONS(67), 1, + [31321] = 23, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, sym_string_start, - ACTIONS(387), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(410), 1, - anon_sym_await, - ACTIONS(653), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1287), 1, + anon_sym_COLON, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(870), 1, + STATE(952), 1, sym_primary_expression, - STATE(969), 1, + STATE(984), 1, sym_string, - STATE(1135), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1826), 1, + STATE(1923), 1, sym_expression, - STATE(2568), 1, - sym_expression_list, - STATE(2672), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(399), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(395), 3, - anon_sym_print, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, + anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52805,7 +52150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52822,60 +52167,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31115] = 23, - ACTIONS(311), 1, + [31422] = 23, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(1483), 1, + ACTIONS(1485), 1, anon_sym_COLON, - STATE(971), 1, + STATE(952), 1, sym_primary_expression, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1896), 1, + STATE(1902), 1, sym_expression, - STATE(2678), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52883,7 +52228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52900,60 +52245,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31216] = 23, - ACTIONS(311), 1, + [31523] = 23, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(721), 1, + anon_sym_LBRACK, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(731), 1, + sym_string_start, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(971), 1, + STATE(953), 1, sym_primary_expression, - STATE(1025), 1, + STATE(995), 1, sym_string, - STATE(1325), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1872), 1, + STATE(1950), 1, sym_expression, - STATE(2678), 1, + STATE(2483), 1, + sym_with_item, + STATE(2638), 1, sym__named_expression_lhs, - STATE(2777), 1, - sym_expression_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1029), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1027), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52961,7 +52306,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52978,60 +52323,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31317] = 23, - ACTIONS(311), 1, + [31624] = 23, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(1485), 1, + ACTIONS(1487), 1, anon_sym_COLON, - STATE(971), 1, + STATE(952), 1, sym_primary_expression, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1975), 1, + STATE(1902), 1, sym_expression, - STATE(2678), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53039,7 +52384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53056,191 +52401,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31418] = 11, - ACTIONS(284), 1, - anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(294), 1, - anon_sym_COLON, - ACTIONS(304), 1, - anon_sym_EQ, - ACTIONS(1479), 1, - sym_identifier, - ACTIONS(1481), 1, - sym_string_start, - STATE(2344), 1, - sym_string, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(277), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(320), 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(279), 22, - anon_sym_as, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT, - anon_sym_GT, - [31495] = 10, - ACTIONS(284), 1, - anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(1487), 1, - anon_sym_for, - ACTIONS(1489), 1, - anon_sym_with, - ACTIONS(1491), 1, - anon_sym_def, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(304), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(320), 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(279), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(277), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [31570] = 23, - ACTIONS(311), 1, + [31725] = 23, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1493), 1, + ACTIONS(1289), 1, anon_sym_COLON, - STATE(971), 1, + ACTIONS(1421), 1, + anon_sym_STAR, + STATE(952), 1, sym_primary_expression, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1896), 1, + STATE(1923), 1, sym_expression, - STATE(2678), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53248,7 +52462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53265,60 +52479,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31671] = 23, - ACTIONS(311), 1, + [31826] = 23, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(1495), 1, - anon_sym_COLON, - STATE(971), 1, + STATE(952), 1, sym_primary_expression, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1977), 1, + STATE(1849), 1, sym_expression, - STATE(2678), 1, + STATE(2671), 1, + sym_expression_list, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53326,7 +52540,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53343,60 +52557,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31772] = 23, - ACTIONS(311), 1, + [31927] = 23, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(971), 1, + STATE(952), 1, sym_primary_expression, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1848), 1, + STATE(1850), 1, sym_expression, - STATE(2678), 1, - sym__named_expression_lhs, - STATE(2702), 1, + STATE(2680), 1, sym_expression_list, + STATE(2729), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53404,7 +52618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53421,58 +52635,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31873] = 22, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [32028] = 23, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(306), 1, + anon_sym_lambda, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(865), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(867), 1, - anon_sym_lambda, - ACTIONS(871), 1, - anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(964), 1, + ACTIONS(1489), 1, + anon_sym_COLON, + STATE(952), 1, sym_primary_expression, - STATE(980), 1, + STATE(984), 1, sym_string, - STATE(1229), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1803), 1, + STATE(1936), 1, sym_expression, - STATE(2645), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, - sym_ellipsis, - sym_float, - ACTIONS(859), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53480,7 +52696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53497,58 +52713,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31971] = 22, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [32129] = 23, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(306), 1, + anon_sym_lambda, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(865), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(867), 1, - anon_sym_lambda, - ACTIONS(871), 1, - anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(964), 1, + STATE(952), 1, sym_primary_expression, - STATE(980), 1, + STATE(984), 1, sym_string, - STATE(1229), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1784), 1, + STATE(1854), 1, sym_expression, - STATE(2645), 1, + STATE(2662), 1, + sym_expression_list, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, - sym_ellipsis, - sym_float, - ACTIONS(859), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53556,7 +52774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53573,58 +52791,125 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32069] = 22, - ACTIONS(715), 1, + [32230] = 10, + ACTIONS(272), 1, + anon_sym_COMMA, + ACTIONS(280), 1, + anon_sym_COLON_EQ, + ACTIONS(1491), 1, + anon_sym_for, + ACTIONS(1493), 1, + anon_sym_with, + ACTIONS(1495), 1, + anon_sym_def, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(292), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(308), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(267), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(265), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(723), 1, + anon_sym_as, + anon_sym_if, + anon_sym_in, anon_sym_LBRACK, - ACTIONS(727), 1, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [32305] = 23, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(306), 1, + anon_sym_lambda, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(865), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(867), 1, - anon_sym_lambda, - ACTIONS(871), 1, - anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(964), 1, + ACTIONS(1497), 1, + anon_sym_COLON, + STATE(952), 1, sym_primary_expression, - STATE(980), 1, + STATE(984), 1, sym_string, - STATE(1229), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1902), 1, sym_expression, - STATE(2645), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, - sym_ellipsis, - sym_float, - ACTIONS(859), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53632,7 +52917,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53649,58 +52934,123 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32167] = 22, - ACTIONS(311), 1, + [32406] = 10, + ACTIONS(272), 1, + anon_sym_COMMA, + ACTIONS(280), 1, + anon_sym_COLON_EQ, + ACTIONS(1499), 1, + anon_sym_for, + ACTIONS(1501), 1, + anon_sym_with, + ACTIONS(1503), 1, + anon_sym_def, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(292), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(308), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(267), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(265), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [32481] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(971), 1, + STATE(952), 1, sym_primary_expression, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1896), 1, + STATE(2002), 1, sym_expression, - STATE(2678), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53708,7 +53058,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53725,58 +53075,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32265] = 22, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [32579] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(306), 1, + anon_sym_lambda, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(865), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(867), 1, - anon_sym_lambda, - ACTIONS(871), 1, - anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(964), 1, + STATE(952), 1, sym_primary_expression, - STATE(980), 1, + STATE(984), 1, sym_string, - STATE(1229), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1775), 1, + STATE(2086), 1, sym_expression, - STATE(2645), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, - sym_ellipsis, - sym_float, - ACTIONS(859), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53784,7 +53134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53801,58 +53151,118 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32363] = 22, - ACTIONS(805), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, - anon_sym_LBRACK, - ACTIONS(817), 1, - anon_sym_LBRACE, - ACTIONS(823), 1, - sym_string_start, - ACTIONS(841), 1, - anon_sym_not, - ACTIONS(843), 1, - anon_sym_lambda, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(1171), 1, - sym_identifier, - ACTIONS(1265), 1, - anon_sym_STAR, - STATE(928), 1, - sym_primary_expression, - STATE(977), 1, - sym_string, - STATE(1200), 1, - sym_list_splat_pattern, - STATE(1734), 1, - sym_expression, - STATE(2649), 1, - sym__named_expression_lhs, + [32677] = 6, + ACTIONS(1509), 1, + anon_sym_except, + ACTIONS(1512), 1, + anon_sym_except_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, - sym_ellipsis, - sym_float, - ACTIONS(833), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(815), 3, + STATE(482), 3, + sym_except_clause, + sym_except_group_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1505), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + sym_ellipsis, + sym_float, + ACTIONS(1507), 34, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32743] = 22, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, + sym_identifier, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(637), 1, + anon_sym_LBRACK, + ACTIONS(1293), 1, + anon_sym_STAR, + STATE(845), 1, + sym_primary_expression, + STATE(954), 1, + sym_string, + STATE(1047), 1, + sym_list_splat_pattern, + STATE(1946), 1, + sym_expression, + STATE(2616), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(387), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53860,7 +53270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53877,58 +53287,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32461] = 22, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [32841] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(306), 1, + anon_sym_lambda, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(865), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(867), 1, - anon_sym_lambda, - ACTIONS(871), 1, - anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(964), 1, + STATE(952), 1, sym_primary_expression, - STATE(980), 1, + STATE(984), 1, sym_string, - STATE(1229), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1792), 1, + STATE(1725), 1, sym_expression, - STATE(2645), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, - sym_ellipsis, - sym_float, - ACTIONS(859), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53936,7 +53346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53953,58 +53363,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32559] = 22, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LBRACK, - ACTIONS(702), 1, + [32939] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(708), 1, - sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, - anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1115), 1, + ACTIONS(314), 1, anon_sym_await, - STATE(927), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, + sym_identifier, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1421), 1, + anon_sym_STAR, + STATE(952), 1, sym_primary_expression, - STATE(983), 1, + STATE(984), 1, sym_string, - STATE(1249), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1772), 1, + STATE(1726), 1, sym_expression, - STATE(2781), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, - sym_ellipsis, - sym_float, - ACTIONS(1113), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54012,7 +53422,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54029,58 +53439,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32657] = 22, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LBRACK, - ACTIONS(702), 1, + [33037] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(708), 1, - sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, - anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1115), 1, + ACTIONS(314), 1, anon_sym_await, - STATE(927), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, + sym_identifier, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1421), 1, + anon_sym_STAR, + STATE(952), 1, sym_primary_expression, - STATE(983), 1, + STATE(984), 1, sym_string, - STATE(1249), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1793), 1, + STATE(1728), 1, sym_expression, - STATE(2781), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, - sym_ellipsis, - sym_float, - ACTIONS(1113), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54088,7 +53498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54105,58 +53515,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32755] = 22, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LBRACK, - ACTIONS(702), 1, + [33135] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(708), 1, - sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, - anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1115), 1, + ACTIONS(314), 1, anon_sym_await, - STATE(927), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, + sym_identifier, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1421), 1, + anon_sym_STAR, + STATE(952), 1, sym_primary_expression, - STATE(983), 1, + STATE(984), 1, sym_string, - STATE(1249), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1779), 1, + STATE(1729), 1, sym_expression, - STATE(2781), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, - sym_ellipsis, - sym_float, - ACTIONS(1113), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54164,7 +53574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54181,58 +53591,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32853] = 22, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LBRACK, - ACTIONS(702), 1, + [33233] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(708), 1, - sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, - anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1115), 1, + ACTIONS(314), 1, anon_sym_await, - STATE(927), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, + sym_identifier, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1421), 1, + anon_sym_STAR, + STATE(952), 1, sym_primary_expression, - STATE(983), 1, + STATE(984), 1, sym_string, - STATE(1249), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1783), 1, + STATE(1730), 1, sym_expression, - STATE(2781), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, - sym_ellipsis, - sym_float, - ACTIONS(1113), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54240,7 +53650,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54257,58 +53667,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32951] = 22, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LBRACK, - ACTIONS(702), 1, + [33331] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(708), 1, - sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, - anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1115), 1, + ACTIONS(314), 1, anon_sym_await, - STATE(927), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, + sym_identifier, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1421), 1, + anon_sym_STAR, + STATE(952), 1, sym_primary_expression, - STATE(983), 1, + STATE(984), 1, sym_string, - STATE(1249), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1786), 1, + STATE(1923), 1, sym_expression, - STATE(2781), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, - sym_ellipsis, - sym_float, - ACTIONS(1113), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54316,7 +53726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54333,58 +53743,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33049] = 22, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LBRACK, - ACTIONS(702), 1, + [33429] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(708), 1, - sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1105), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, sym_identifier, - ACTIONS(1115), 1, + ACTIONS(398), 1, anon_sym_await, - STATE(927), 1, + ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(637), 1, + anon_sym_LBRACK, + ACTIONS(1293), 1, + anon_sym_STAR, + STATE(845), 1, sym_primary_expression, - STATE(983), 1, + STATE(954), 1, sym_string, - STATE(1249), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1765), 1, + STATE(1805), 1, sym_expression, - STATE(2781), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54392,7 +53802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54409,58 +53819,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33147] = 22, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LBRACK, - ACTIONS(702), 1, + [33527] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(708), 1, - sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, - anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1115), 1, + ACTIONS(314), 1, anon_sym_await, - STATE(927), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, + sym_identifier, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1421), 1, + anon_sym_STAR, + STATE(952), 1, sym_primary_expression, - STATE(983), 1, + STATE(984), 1, sym_string, - STATE(1249), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1788), 1, + STATE(1739), 1, sym_expression, - STATE(2781), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, - sym_ellipsis, - sym_float, - ACTIONS(1113), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54468,7 +53878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54485,121 +53895,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33245] = 9, - ACTIONS(1501), 1, - anon_sym_else, - ACTIONS(1503), 1, - anon_sym_except, - ACTIONS(1505), 1, - anon_sym_finally, - STATE(707), 1, - sym_else_clause, - STATE(817), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(626), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1497), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + [33625] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1499), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, + ACTIONS(306), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(314), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [33317] = 22, - ACTIONS(783), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, + sym_identifier, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(795), 1, - anon_sym_LBRACE, - ACTIONS(801), 1, - sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1085), 1, - anon_sym_lambda, - ACTIONS(1087), 1, - anon_sym_await, - ACTIONS(1281), 1, - sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1034), 1, + STATE(984), 1, sym_string, - STATE(1316), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1754), 1, + STATE(1731), 1, sym_expression, - STATE(2630), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, - sym_ellipsis, - sym_float, - ACTIONS(1077), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54607,7 +53954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54624,58 +53971,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33415] = 22, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(791), 1, - anon_sym_LBRACK, - ACTIONS(795), 1, + [33723] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(801), 1, - sym_string_start, - ACTIONS(1083), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1087), 1, - anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(637), 1, + anon_sym_LBRACK, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(967), 1, + STATE(845), 1, sym_primary_expression, - STATE(1034), 1, + STATE(954), 1, sym_string, - STATE(1316), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1739), 1, + STATE(1781), 1, sym_expression, - STATE(2630), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54683,7 +54030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54700,58 +54047,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33513] = 22, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(791), 1, - anon_sym_LBRACK, - ACTIONS(795), 1, + [33821] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(801), 1, - sym_string_start, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1034), 1, + STATE(984), 1, sym_string, - STATE(1316), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1745), 1, + STATE(1975), 1, sym_expression, - STATE(2630), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, - sym_ellipsis, - sym_float, - ACTIONS(1077), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54759,7 +54106,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54776,58 +54123,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33611] = 22, - ACTIONS(783), 1, + [33919] = 22, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1155), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(967), 1, + STATE(857), 1, sym_primary_expression, - STATE(1034), 1, + STATE(969), 1, sym_string, - STATE(1316), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1694), 1, sym_expression, - STATE(2630), 1, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54835,7 +54182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54852,58 +54199,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33709] = 22, - ACTIONS(783), 1, + [34017] = 22, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1155), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(967), 1, + STATE(857), 1, sym_primary_expression, - STATE(1034), 1, + STATE(969), 1, sym_string, - STATE(1316), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1750), 1, + STATE(1704), 1, sym_expression, - STATE(2630), 1, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54911,7 +54258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54928,58 +54275,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33807] = 22, - ACTIONS(783), 1, + [34115] = 22, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1155), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(967), 1, + STATE(857), 1, sym_primary_expression, - STATE(1034), 1, + STATE(969), 1, sym_string, - STATE(1316), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1755), 1, + STATE(1711), 1, sym_expression, - STATE(2630), 1, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54987,7 +54334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55004,58 +54351,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33905] = 22, - ACTIONS(783), 1, + [34213] = 22, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1155), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(967), 1, + STATE(857), 1, sym_primary_expression, - STATE(1034), 1, + STATE(969), 1, sym_string, - STATE(1316), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1674), 1, sym_expression, - STATE(2630), 1, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55063,7 +54410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55080,121 +54427,134 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34003] = 9, - ACTIONS(1501), 1, - anon_sym_else, - ACTIONS(1505), 1, - anon_sym_finally, - ACTIONS(1507), 1, - anon_sym_except_STAR, - STATE(707), 1, - sym_else_clause, - STATE(817), 1, - sym_finally_clause, + [34311] = 22, + ACTIONS(691), 1, + anon_sym_LPAREN, + ACTIONS(699), 1, + anon_sym_LBRACK, + ACTIONS(703), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(817), 1, + anon_sym_not, + ACTIONS(819), 1, + anon_sym_lambda, + ACTIONS(823), 1, + anon_sym_await, + ACTIONS(1155), 1, + sym_identifier, + ACTIONS(1269), 1, + anon_sym_STAR, + STATE(857), 1, + sym_primary_expression, + STATE(969), 1, + sym_string, + STATE(1283), 1, + sym_list_splat_pattern, + STATE(1680), 1, + sym_expression, + STATE(2716), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(613), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1497), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(705), 2, + sym_ellipsis, + sym_float, + ACTIONS(809), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(701), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1499), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(807), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(689), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [34075] = 22, - ACTIONS(737), 1, + STATE(1710), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1280), 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, + [34409] = 22, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(977), 1, + anon_sym_STAR, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1347), 1, - anon_sym_STAR, - STATE(992), 1, + ACTIONS(1145), 1, + anon_sym_await, + STATE(901), 1, sym_primary_expression, - STATE(1110), 1, + STATE(975), 1, sym_string, - STATE(1451), 1, + STATE(1197), 1, sym_list_splat_pattern, - STATE(1766), 1, + STATE(1920), 1, sym_expression, - STATE(2786), 1, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55202,7 +54562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55219,58 +54579,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34173] = 22, - ACTIONS(737), 1, + [34507] = 22, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(871), 1, + sym_identifier, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(1293), 1, - sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1273), 1, anon_sym_STAR, - STATE(992), 1, + STATE(893), 1, sym_primary_expression, - STATE(1110), 1, + STATE(958), 1, sym_string, - STATE(1451), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1777), 1, + STATE(1789), 1, sym_expression, - STATE(2786), 1, + STATE(2645), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(879), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55278,7 +54638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55295,58 +54655,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34271] = 22, - ACTIONS(737), 1, + [34605] = 22, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1155), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(992), 1, + STATE(857), 1, sym_primary_expression, - STATE(1110), 1, + STATE(969), 1, sym_string, - STATE(1451), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1780), 1, + STATE(1670), 1, sym_expression, - STATE(2786), 1, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55354,7 +54714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55371,58 +54731,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34369] = 22, - ACTIONS(737), 1, + [34703] = 22, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1155), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(992), 1, + STATE(857), 1, sym_primary_expression, - STATE(1110), 1, + STATE(969), 1, sym_string, - STATE(1451), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1773), 1, + STATE(1673), 1, sym_expression, - STATE(2786), 1, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55430,7 +54790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55447,58 +54807,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34467] = 22, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [34801] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(992), 1, + STATE(952), 1, sym_primary_expression, - STATE(1110), 1, + STATE(984), 1, sym_string, - STATE(1451), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1759), 1, + STATE(1935), 1, sym_expression, - STATE(2786), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, - sym_ellipsis, - sym_float, - ACTIONS(1021), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55506,7 +54866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55523,58 +54883,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34565] = 22, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [34899] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, + sym_identifier, + ACTIONS(398), 1, anon_sym_await, + ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(637), 1, + anon_sym_LBRACK, ACTIONS(1293), 1, - sym_identifier, - ACTIONS(1347), 1, anon_sym_STAR, - STATE(992), 1, + STATE(845), 1, sym_primary_expression, - STATE(1110), 1, + STATE(954), 1, sym_string, - STATE(1451), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1763), 1, + STATE(1648), 1, sym_expression, - STATE(2786), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55582,7 +54942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55599,58 +54959,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34663] = 22, - ACTIONS(737), 1, + [34997] = 22, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(871), 1, + sym_identifier, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(1293), 1, - sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1273), 1, anon_sym_STAR, - STATE(992), 1, + STATE(893), 1, sym_primary_expression, - STATE(1110), 1, + STATE(958), 1, sym_string, - STATE(1451), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1764), 1, + STATE(1763), 1, sym_expression, - STATE(2786), 1, + STATE(2645), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(879), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55658,7 +55018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55675,58 +55035,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34761] = 22, - ACTIONS(805), 1, + [35095] = 22, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(871), 1, + sym_identifier, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(847), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(1171), 1, - sym_identifier, - ACTIONS(1265), 1, + ACTIONS(1273), 1, anon_sym_STAR, - STATE(928), 1, + STATE(893), 1, sym_primary_expression, - STATE(977), 1, + STATE(958), 1, sym_string, - STATE(1200), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1706), 1, + STATE(1768), 1, sym_expression, - STATE(2649), 1, + STATE(2645), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(879), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55734,7 +55094,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55751,58 +55111,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34859] = 22, - ACTIONS(759), 1, + [35193] = 22, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(753), 1, sym_string_start, + ACTIONS(871), 1, + sym_identifier, ACTIONS(887), 1, anon_sym_not, ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1069), 1, + ACTIONS(893), 1, anon_sym_await, ACTIONS(1273), 1, anon_sym_STAR, - STATE(972), 1, + STATE(893), 1, sym_primary_expression, - STATE(1044), 1, + STATE(958), 1, sym_string, - STATE(1390), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1810), 1, + STATE(1742), 1, sym_expression, - STATE(2684), 1, + STATE(2645), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(879), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55810,7 +55170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55827,61 +55187,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34957] = 23, - ACTIONS(737), 1, + [35291] = 22, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(871), 1, + sym_identifier, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(1347), 1, - anon_sym_STAR, - ACTIONS(1509), 1, - sym_identifier, - ACTIONS(1515), 1, + ACTIONS(893), 1, anon_sym_await, - STATE(1037), 1, + ACTIONS(1273), 1, + anon_sym_STAR, + STATE(893), 1, sym_primary_expression, - STATE(1110), 1, + STATE(958), 1, sym_string, - STATE(1451), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1971), 1, + STATE(1743), 1, sym_expression, - STATE(2786), 1, + STATE(2645), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1513), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - STATE(1158), 2, - sym_attribute, - sym_subscript, - ACTIONS(747), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1511), 3, + ACTIONS(879), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55889,9 +55246,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 14, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -55904,58 +55263,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35057] = 22, - ACTIONS(783), 1, + [35389] = 22, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(871), 1, + sym_identifier, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(1281), 1, - sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1273), 1, anon_sym_STAR, - STATE(967), 1, + STATE(893), 1, sym_primary_expression, - STATE(1034), 1, + STATE(958), 1, sym_string, - STATE(1316), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1996), 1, + STATE(1749), 1, sym_expression, - STATE(2630), 1, + STATE(2645), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(879), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55963,7 +55322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55980,58 +55339,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35155] = 22, - ACTIONS(311), 1, + [35487] = 22, + ACTIONS(735), 1, + anon_sym_LPAREN, + ACTIONS(743), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(871), 1, sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(889), 1, + anon_sym_lambda, + ACTIONS(893), 1, + anon_sym_await, + ACTIONS(1273), 1, anon_sym_STAR, - STATE(971), 1, + STATE(893), 1, sym_primary_expression, - STATE(1025), 1, + STATE(958), 1, sym_string, - STATE(1325), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1899), 1, + STATE(1755), 1, sym_expression, - STATE(2678), 1, + STATE(2645), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(881), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(879), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56039,7 +55398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56056,58 +55415,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35253] = 22, - ACTIONS(690), 1, + [35585] = 22, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, + ACTIONS(871), 1, + sym_identifier, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1115), 1, + ACTIONS(893), 1, anon_sym_await, - STATE(927), 1, + ACTIONS(1273), 1, + anon_sym_STAR, + STATE(893), 1, sym_primary_expression, - STATE(983), 1, + STATE(958), 1, sym_string, - STATE(1249), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1944), 1, + STATE(1752), 1, sym_expression, - STATE(2781), 1, + STATE(2645), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(879), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56115,7 +55474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56132,134 +55491,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35351] = 22, - ACTIONS(783), 1, + [35683] = 22, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(977), 1, + anon_sym_STAR, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(1087), 1, - anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1355), 1, - anon_sym_STAR, - STATE(967), 1, + ACTIONS(1145), 1, + anon_sym_await, + STATE(901), 1, sym_primary_expression, - STATE(1034), 1, + STATE(975), 1, sym_string, - STATE(1316), 1, + STATE(1197), 1, sym_list_splat_pattern, - STATE(1900), 1, + STATE(1760), 1, sym_expression, - STATE(2630), 1, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(781), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1748), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1418), 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, - [35449] = 22, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, - anon_sym_STAR, - STATE(971), 1, - sym_primary_expression, - STATE(1025), 1, - sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(2028), 1, - sym_expression, - STATE(2678), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(290), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56267,7 +55550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56284,58 +55567,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35547] = 22, - ACTIONS(805), 1, + [35781] = 22, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(977), 1, + anon_sym_STAR, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1265), 1, - anon_sym_STAR, - STATE(928), 1, + ACTIONS(1145), 1, + anon_sym_await, + STATE(901), 1, sym_primary_expression, - STATE(977), 1, + STATE(975), 1, sym_string, - STATE(1200), 1, + STATE(1197), 1, sym_list_splat_pattern, - STATE(1873), 1, + STATE(1761), 1, sym_expression, - STATE(2649), 1, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56343,7 +55626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56360,58 +55643,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35645] = 22, - ACTIONS(805), 1, + [35879] = 22, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(977), 1, + anon_sym_STAR, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1265), 1, - anon_sym_STAR, - STATE(928), 1, + ACTIONS(1145), 1, + anon_sym_await, + STATE(901), 1, sym_primary_expression, - STATE(977), 1, + STATE(975), 1, sym_string, - STATE(1200), 1, + STATE(1197), 1, sym_list_splat_pattern, - STATE(1729), 1, + STATE(1764), 1, sym_expression, - STATE(2649), 1, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56419,7 +55702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56436,58 +55719,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35743] = 22, - ACTIONS(783), 1, + [35977] = 22, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(977), 1, + anon_sym_STAR, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(1087), 1, - anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1355), 1, - anon_sym_STAR, - STATE(967), 1, + ACTIONS(1145), 1, + anon_sym_await, + STATE(901), 1, sym_primary_expression, - STATE(1034), 1, + STATE(975), 1, sym_string, - STATE(1316), 1, + STATE(1197), 1, sym_list_splat_pattern, - STATE(1985), 1, + STATE(1765), 1, sym_expression, - STATE(2630), 1, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56495,7 +55778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56512,58 +55795,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35841] = 22, - ACTIONS(783), 1, + [36075] = 22, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(977), 1, + anon_sym_STAR, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(1087), 1, - anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1355), 1, - anon_sym_STAR, - STATE(967), 1, + ACTIONS(1145), 1, + anon_sym_await, + STATE(901), 1, sym_primary_expression, - STATE(1034), 1, + STATE(975), 1, sym_string, - STATE(1316), 1, + STATE(1197), 1, sym_list_splat_pattern, - STATE(1992), 1, + STATE(1766), 1, sym_expression, - STATE(2630), 1, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56571,7 +55854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56588,58 +55871,134 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35939] = 22, - ACTIONS(67), 1, + [36173] = 22, + ACTIONS(666), 1, + anon_sym_LPAREN, + ACTIONS(674), 1, + anon_sym_LBRACK, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(977), 1, + anon_sym_STAR, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(410), 1, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(653), 1, + STATE(901), 1, + sym_primary_expression, + STATE(975), 1, + sym_string, + STATE(1197), 1, + sym_list_splat_pattern, + STATE(1759), 1, + sym_expression, + STATE(2650), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(680), 2, + sym_ellipsis, + sym_float, + ACTIONS(1143), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(676), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1141), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(664), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1769), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1279), 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, + [36271] = 22, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(977), 1, anon_sym_STAR, - STATE(870), 1, + ACTIONS(985), 1, + anon_sym_not, + ACTIONS(987), 1, + anon_sym_lambda, + ACTIONS(1135), 1, + sym_identifier, + ACTIONS(1145), 1, + anon_sym_await, + STATE(901), 1, sym_primary_expression, - STATE(969), 1, + STATE(975), 1, sym_string, - STATE(1135), 1, + STATE(1197), 1, sym_list_splat_pattern, - STATE(1843), 1, + STATE(1757), 1, sym_expression, - STATE(2672), 1, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56647,7 +56006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56664,7 +56023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36037] = 22, + [36369] = 22, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -56673,25 +56032,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym_string_start, - ACTIONS(387), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(410), 1, + ACTIONS(398), 1, anon_sym_await, - ACTIONS(653), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(870), 1, + STATE(845), 1, sym_primary_expression, - STATE(969), 1, + STATE(954), 1, sym_string, - STATE(1135), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1928), 1, + STATE(1658), 1, sym_expression, - STATE(2672), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -56699,14 +56058,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -56715,7 +56074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56723,7 +56082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56740,61 +56099,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36135] = 23, - ACTIONS(783), 1, + [36467] = 22, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1355), 1, - anon_sym_STAR, - ACTIONS(1517), 1, - sym_identifier, - ACTIONS(1523), 1, + ACTIONS(1039), 1, anon_sym_await, - STATE(1033), 1, + ACTIONS(1253), 1, + sym_identifier, + ACTIONS(1303), 1, + anon_sym_STAR, + STATE(953), 1, sym_primary_expression, - STATE(1034), 1, + STATE(995), 1, sym_string, - STATE(1316), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1964), 1, + STATE(1732), 1, sym_expression, - STATE(2630), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1521), 2, + ACTIONS(1029), 2, anon_sym_match, anon_sym_type, - STATE(1400), 2, - sym_attribute, - sym_subscript, - ACTIONS(793), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1519), 3, + ACTIONS(1027), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56802,9 +56158,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 14, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -56817,58 +56175,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36235] = 22, - ACTIONS(783), 1, + [36565] = 22, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(967), 1, + STATE(953), 1, sym_primary_expression, - STATE(1034), 1, + STATE(995), 1, sym_string, - STATE(1316), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1987), 1, + STATE(1736), 1, sym_expression, - STATE(2630), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(1029), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(1027), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56876,7 +56234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56893,58 +56251,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36333] = 22, - ACTIONS(311), 1, + [36663] = 22, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(721), 1, + anon_sym_LBRACK, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(731), 1, + sym_string_start, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(971), 1, + STATE(953), 1, sym_primary_expression, - STATE(1025), 1, + STATE(995), 1, sym_string, - STATE(1325), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(2094), 1, + STATE(1737), 1, sym_expression, - STATE(2678), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1029), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1027), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56952,7 +56310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56969,58 +56327,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36431] = 22, - ACTIONS(311), 1, + [36761] = 22, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(721), 1, + anon_sym_LBRACK, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(731), 1, + sym_string_start, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(971), 1, + STATE(953), 1, sym_primary_expression, - STATE(1025), 1, + STATE(995), 1, sym_string, - STATE(1325), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1738), 1, sym_expression, - STATE(2678), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1029), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1027), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57028,7 +56386,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57045,58 +56403,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36529] = 22, - ACTIONS(67), 1, + [36859] = 22, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(721), 1, + anon_sym_LBRACK, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(731), 1, + sym_string_start, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, - sym_identifier, - ACTIONS(410), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1253), 1, + sym_identifier, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(870), 1, + STATE(953), 1, sym_primary_expression, - STATE(969), 1, + STATE(995), 1, sym_string, - STATE(1135), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1672), 1, + STATE(1740), 1, sym_expression, - STATE(2672), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(1029), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1027), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57104,7 +56462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57121,58 +56479,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36627] = 22, - ACTIONS(311), 1, + [36957] = 22, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(721), 1, + anon_sym_LBRACK, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(731), 1, + sym_string_start, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(971), 1, + STATE(953), 1, sym_primary_expression, - STATE(1025), 1, + STATE(995), 1, sym_string, - STATE(1325), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(2099), 1, + STATE(1721), 1, sym_expression, - STATE(2678), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1029), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1027), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57180,7 +56538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57197,58 +56555,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36725] = 22, - ACTIONS(805), 1, + [37055] = 22, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(847), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(928), 1, + STATE(953), 1, sym_primary_expression, - STATE(977), 1, + STATE(995), 1, sym_string, - STATE(1200), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1724), 1, + STATE(1727), 1, sym_expression, - STATE(2649), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1029), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1027), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57256,7 +56614,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57273,58 +56631,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36823] = 22, - ACTIONS(67), 1, + [37153] = 22, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, - sym_identifier, - ACTIONS(410), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(870), 1, + STATE(963), 1, sym_primary_expression, - STATE(969), 1, + STATE(1081), 1, sym_string, - STATE(1135), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1669), 1, + STATE(1745), 1, sym_expression, - STATE(2672), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57332,7 +56690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57349,58 +56707,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36921] = 22, - ACTIONS(67), 1, + [37251] = 22, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, - sym_identifier, - ACTIONS(410), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(870), 1, + STATE(963), 1, sym_primary_expression, - STATE(969), 1, + STATE(1081), 1, sym_string, - STATE(1135), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1666), 1, + STATE(1771), 1, sym_expression, - STATE(2672), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57408,7 +56766,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57425,58 +56783,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37019] = 22, - ACTIONS(67), 1, + [37349] = 22, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, - sym_identifier, - ACTIONS(410), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(870), 1, + STATE(963), 1, sym_primary_expression, - STATE(969), 1, + STATE(1081), 1, sym_string, - STATE(1135), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1799), 1, + STATE(1774), 1, sym_expression, - STATE(2672), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57484,7 +56842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57501,58 +56859,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37117] = 22, - ACTIONS(311), 1, + [37447] = 22, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1003), 1, + anon_sym_not, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(971), 1, + STATE(963), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1081), 1, sym_string, - STATE(1325), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1753), 1, + STATE(1744), 1, sym_expression, - STATE(2678), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(997), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(995), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57560,7 +56918,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57577,58 +56935,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37215] = 22, - ACTIONS(311), 1, + [37545] = 22, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1003), 1, + anon_sym_not, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(971), 1, + STATE(963), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1081), 1, sym_string, - STATE(1325), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1752), 1, + STATE(1750), 1, sym_expression, - STATE(2678), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(997), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(995), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57636,7 +56994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57653,58 +57011,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37313] = 22, - ACTIONS(67), 1, + [37643] = 22, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, - sym_identifier, - ACTIONS(410), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(870), 1, + STATE(963), 1, sym_primary_expression, - STATE(969), 1, + STATE(1081), 1, sym_string, - STATE(1135), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1812), 1, + STATE(1751), 1, sym_expression, - STATE(2672), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57712,7 +57070,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57729,58 +57087,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37411] = 22, - ACTIONS(67), 1, + [37741] = 22, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, - sym_identifier, - ACTIONS(410), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(870), 1, + STATE(963), 1, sym_primary_expression, - STATE(969), 1, + STATE(1081), 1, sym_string, - STATE(1135), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1862), 1, + STATE(1776), 1, sym_expression, - STATE(2672), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57788,7 +57146,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57805,7 +57163,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37509] = 22, + [37839] = 22, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -57814,25 +57172,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym_string_start, - ACTIONS(387), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(410), 1, + ACTIONS(398), 1, anon_sym_await, - ACTIONS(653), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(870), 1, + STATE(845), 1, sym_primary_expression, - STATE(969), 1, + STATE(954), 1, sym_string, - STATE(1135), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(2056), 1, + STATE(1898), 1, sym_expression, - STATE(2672), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -57840,14 +57198,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -57856,7 +57214,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57864,7 +57222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57881,134 +57239,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37607] = 22, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(672), 1, + [37937] = 22, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, - anon_sym_STAR, - STATE(971), 1, - sym_primary_expression, - STATE(1025), 1, - sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1742), 1, - sym_expression, - STATE(2678), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1738), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1311), 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, - [37705] = 22, - ACTIONS(67), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(799), 1, + sym_string_start, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(410), 1, + ACTIONS(1081), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(870), 1, + STATE(950), 1, sym_primary_expression, - STATE(969), 1, + STATE(985), 1, sym_string, - STATE(1135), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1924), 1, + STATE(1788), 1, sym_expression, - STATE(2672), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58016,7 +57298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58033,58 +57315,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37803] = 22, - ACTIONS(737), 1, + [38035] = 23, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, - sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(992), 1, + ACTIONS(1515), 1, + sym_identifier, + ACTIONS(1521), 1, + anon_sym_await, + STATE(1007), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1927), 1, + STATE(1932), 1, sym_expression, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1519), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + STATE(1194), 2, + sym_attribute, + sym_subscript, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1517), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58092,11 +57377,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -58109,58 +57392,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37901] = 22, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(791), 1, - anon_sym_LBRACK, - ACTIONS(795), 1, + [38135] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(801), 1, - sym_string_start, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(967), 1, + STATE(952), 1, sym_primary_expression, - STATE(1034), 1, + STATE(984), 1, sym_string, - STATE(1316), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1982), 1, + STATE(2013), 1, sym_expression, - STATE(2630), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, - sym_ellipsis, - sym_float, - ACTIONS(1077), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58168,7 +57451,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58185,58 +57468,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37999] = 22, - ACTIONS(311), 1, + [38233] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(971), 1, + STATE(952), 1, sym_primary_expression, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1747), 1, + STATE(1904), 1, sym_expression, - STATE(2678), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58244,7 +57527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58261,61 +57544,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38097] = 23, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LBRACK, - ACTIONS(702), 1, + [38331] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(708), 1, - sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, - anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1531), 1, + ACTIONS(314), 1, anon_sym_await, - STATE(983), 1, - sym_string, - STATE(1047), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, + sym_identifier, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1421), 1, + anon_sym_STAR, + STATE(952), 1, sym_primary_expression, - STATE(1249), 1, + STATE(984), 1, + sym_string, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1926), 1, + STATE(2070), 1, sym_expression, - STATE(2781), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, - sym_ellipsis, - sym_float, - ACTIONS(1529), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - STATE(1199), 2, - sym_attribute, - sym_subscript, - ACTIONS(700), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1527), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58323,9 +57603,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 14, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -58338,58 +57620,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38197] = 22, - ACTIONS(311), 1, + [38429] = 22, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(721), 1, + anon_sym_LBRACK, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(731), 1, + sym_string_start, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(971), 1, + STATE(953), 1, sym_primary_expression, - STATE(1025), 1, + STATE(995), 1, sym_string, - STATE(1325), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1743), 1, + STATE(1903), 1, sym_expression, - STATE(2678), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1029), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1027), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58397,7 +57679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58414,58 +57696,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38295] = 22, - ACTIONS(311), 1, + [38527] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(971), 1, + STATE(952), 1, sym_primary_expression, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1936), 1, + STATE(2037), 1, sym_expression, - STATE(2678), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58473,7 +57755,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58490,58 +57772,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38393] = 22, - ACTIONS(715), 1, + [38625] = 22, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(865), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(1253), 1, + sym_identifier, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(964), 1, + STATE(953), 1, sym_primary_expression, - STATE(980), 1, + STATE(995), 1, sym_string, - STATE(1229), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1928), 1, sym_expression, - STATE(2645), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(1029), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(1027), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58549,7 +57831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58566,58 +57848,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38491] = 22, - ACTIONS(67), 1, + [38723] = 22, + ACTIONS(691), 1, + anon_sym_LPAREN, + ACTIONS(699), 1, + anon_sym_LBRACK, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, - sym_identifier, - ACTIONS(410), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1155), 1, + sym_identifier, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(870), 1, + STATE(857), 1, sym_primary_expression, STATE(969), 1, sym_string, - STATE(1135), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1680), 1, + STATE(1840), 1, sym_expression, - STATE(2672), 1, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58625,7 +57907,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58642,134 +57924,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38589] = 22, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(672), 1, + [38821] = 22, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(793), 1, + anon_sym_LBRACE, + ACTIONS(799), 1, + sym_string_start, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(859), 1, + anon_sym_lambda, + ACTIONS(1071), 1, + sym_identifier, + ACTIONS(1081), 1, + anon_sym_await, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(971), 1, + STATE(950), 1, sym_primary_expression, - STATE(1025), 1, + STATE(985), 1, sym_string, - STATE(1325), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1744), 1, + STATE(1843), 1, sym_expression, - STATE(2678), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1079), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1738), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1311), 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, - [38687] = 22, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, - anon_sym_STAR, - STATE(971), 1, - sym_primary_expression, - STATE(1025), 1, - sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(2096), 1, - sym_expression, - STATE(2678), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(290), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58777,7 +57983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58794,58 +58000,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38785] = 22, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [38919] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(733), 1, - sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(865), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, + sym_identifier, + ACTIONS(398), 1, anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(637), 1, + anon_sym_LBRACK, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(964), 1, + STATE(845), 1, sym_primary_expression, - STATE(980), 1, + STATE(954), 1, sym_string, - STATE(1229), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1782), 1, + STATE(1651), 1, sym_expression, - STATE(2645), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58853,7 +58059,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58870,7 +58076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38883] = 22, + [39017] = 22, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -58879,25 +58085,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym_string_start, - ACTIONS(387), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(410), 1, + ACTIONS(398), 1, anon_sym_await, - ACTIONS(653), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(870), 1, + STATE(845), 1, sym_primary_expression, - STATE(969), 1, + STATE(954), 1, sym_string, - STATE(1135), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1670), 1, + STATE(2003), 1, sym_expression, - STATE(2672), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -58905,14 +58111,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -58921,83 +58127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1679), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1081), 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, - [38981] = 22, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, - anon_sym_STAR, - STATE(971), 1, - sym_primary_expression, - STATE(1025), 1, - sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1741), 1, - sym_expression, - STATE(2678), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1738), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59005,7 +58135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59022,58 +58152,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39079] = 22, - ACTIONS(690), 1, + [39115] = 22, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1115), 1, + ACTIONS(1039), 1, anon_sym_await, - STATE(927), 1, + ACTIONS(1253), 1, + sym_identifier, + ACTIONS(1303), 1, + anon_sym_STAR, + STATE(953), 1, sym_primary_expression, - STATE(983), 1, + STATE(995), 1, sym_string, - STATE(1249), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1769), 1, + STATE(1958), 1, sym_expression, - STATE(2781), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(1029), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(1027), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59081,7 +58211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59098,58 +58228,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39177] = 22, - ACTIONS(737), 1, + [39213] = 23, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, - sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(992), 1, + ACTIONS(1523), 1, + sym_identifier, + ACTIONS(1529), 1, + anon_sym_await, + STATE(994), 1, sym_primary_expression, - STATE(1110), 1, + STATE(995), 1, sym_string, - STATE(1451), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(1937), 1, sym_expression, - STATE(2786), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1527), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + STATE(1362), 2, + sym_attribute, + sym_subscript, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1525), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59157,11 +58290,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1381), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -59174,58 +58305,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39275] = 22, - ACTIONS(805), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, - anon_sym_LBRACK, - ACTIONS(817), 1, + [39313] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(823), 1, - sym_string_start, - ACTIONS(841), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(637), 1, + anon_sym_LBRACK, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(928), 1, + STATE(845), 1, sym_primary_expression, - STATE(977), 1, + STATE(954), 1, sym_string, - STATE(1200), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1705), 1, + STATE(1652), 1, sym_expression, - STATE(2649), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59233,7 +58364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59250,61 +58381,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39373] = 23, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(791), 1, - anon_sym_LBRACK, - ACTIONS(795), 1, + [39411] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(801), 1, - sym_string_start, - ACTIONS(1083), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1355), 1, - anon_sym_STAR, - ACTIONS(1523), 1, - anon_sym_await, - ACTIONS(1533), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, sym_identifier, - STATE(967), 1, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(637), 1, + anon_sym_LBRACK, + ACTIONS(1293), 1, + anon_sym_STAR, + STATE(845), 1, sym_primary_expression, - STATE(1034), 1, + STATE(954), 1, sym_string, - STATE(1316), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1964), 1, + STATE(1664), 1, sym_expression, - STATE(2630), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1537), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - STATE(1481), 2, - sym_attribute, - sym_subscript, - ACTIONS(793), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1535), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59312,9 +58440,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 14, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -59327,58 +58457,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39473] = 22, - ACTIONS(311), 1, + [39509] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(971), 1, + STATE(952), 1, sym_primary_expression, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2006), 1, + STATE(2016), 1, sym_expression, - STATE(2678), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59386,7 +58516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59403,58 +58533,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39571] = 22, - ACTIONS(311), 1, + [39607] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(971), 1, + STATE(845), 1, sym_primary_expression, - STATE(1025), 1, + STATE(954), 1, sym_string, - STATE(1325), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(2089), 1, + STATE(1654), 1, sym_expression, - STATE(2678), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(387), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(383), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59462,7 +58592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59479,58 +58609,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39669] = 22, - ACTIONS(759), 1, + [39705] = 22, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1081), 1, sym_string, - STATE(1390), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1881), 1, + STATE(1982), 1, sym_expression, - STATE(2684), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59538,7 +58668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59555,58 +58685,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39767] = 22, - ACTIONS(67), 1, + [39803] = 22, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(721), 1, + anon_sym_LBRACK, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(731), 1, + sym_string_start, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, - sym_identifier, - ACTIONS(410), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1253), 1, + sym_identifier, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(870), 1, + STATE(953), 1, sym_primary_expression, - STATE(969), 1, + STATE(995), 1, sym_string, - STATE(1135), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1938), 1, sym_expression, - STATE(2672), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(1029), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1027), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59614,7 +58744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59631,58 +58761,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39865] = 22, - ACTIONS(67), 1, + [39901] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, sym_string_start, - ACTIONS(387), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(410), 1, - anon_sym_await, - ACTIONS(653), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(870), 1, + STATE(952), 1, sym_primary_expression, - STATE(969), 1, + STATE(984), 1, sym_string, - STATE(1135), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1668), 1, + STATE(1735), 1, sym_expression, - STATE(2672), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(399), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59690,7 +58820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59707,58 +58837,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39963] = 22, - ACTIONS(715), 1, + [39999] = 23, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(865), 1, + ACTIONS(977), 1, + anon_sym_STAR, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(1531), 1, + sym_identifier, + ACTIONS(1537), 1, anon_sym_await, - ACTIONS(1305), 1, - anon_sym_STAR, - STATE(964), 1, - sym_primary_expression, - STATE(980), 1, + STATE(975), 1, sym_string, - STATE(1229), 1, + STATE(989), 1, + sym_primary_expression, + STATE(1197), 1, sym_list_splat_pattern, - STATE(1761), 1, + STATE(1912), 1, sym_expression, - STATE(2645), 1, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(1535), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + STATE(1282), 2, + sym_attribute, + sym_subscript, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(1533), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59766,11 +58899,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1279), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -59783,61 +58914,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40061] = 23, - ACTIONS(737), 1, + [40099] = 22, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(871), 1, + sym_identifier, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(1347), 1, - anon_sym_STAR, - ACTIONS(1515), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(1539), 1, - sym_identifier, - STATE(992), 1, + ACTIONS(1273), 1, + anon_sym_STAR, + STATE(893), 1, sym_primary_expression, - STATE(1110), 1, + STATE(958), 1, sym_string, - STATE(1451), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1971), 1, + STATE(1871), 1, sym_expression, - STATE(2786), 1, + STATE(2645), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1543), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - STATE(1482), 2, - sym_attribute, - sym_subscript, - ACTIONS(747), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1541), 3, + ACTIONS(879), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59845,9 +58973,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 14, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -59860,61 +58990,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40161] = 23, - ACTIONS(737), 1, + [40197] = 23, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1515), 1, + ACTIONS(1521), 1, anon_sym_await, - ACTIONS(1545), 1, + ACTIONS(1539), 1, sym_identifier, - STATE(1037), 1, + STATE(1007), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1971), 1, + STATE(1932), 1, sym_expression, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1513), 2, + ACTIONS(1519), 2, anon_sym_match, anon_sym_type, - STATE(1158), 2, + STATE(1194), 2, sym_attribute, sym_subscript, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1511), 3, + ACTIONS(1517), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59922,7 +59052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 14, + STATE(1441), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -59937,58 +59067,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40261] = 22, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LBRACK, - ACTIONS(702), 1, + [40297] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(708), 1, - sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1105), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, sym_identifier, - ACTIONS(1115), 1, + ACTIONS(398), 1, anon_sym_await, - STATE(927), 1, + ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(637), 1, + anon_sym_LBRACK, + ACTIONS(1293), 1, + anon_sym_STAR, + STATE(845), 1, sym_primary_expression, - STATE(983), 1, + STATE(954), 1, sym_string, - STATE(1249), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1949), 1, + STATE(1653), 1, sym_expression, - STATE(2781), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59996,7 +59126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60013,58 +59143,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40359] = 22, - ACTIONS(690), 1, + [40395] = 22, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1115), 1, + ACTIONS(1039), 1, anon_sym_await, - STATE(927), 1, + ACTIONS(1253), 1, + sym_identifier, + ACTIONS(1303), 1, + anon_sym_STAR, + STATE(953), 1, sym_primary_expression, - STATE(983), 1, + STATE(995), 1, sym_string, - STATE(1249), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1791), 1, + STATE(1916), 1, sym_expression, - STATE(2781), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(1029), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(1027), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60072,7 +59202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60089,61 +59219,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40457] = 23, - ACTIONS(690), 1, + [40493] = 22, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1531), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1547), 1, + ACTIONS(1253), 1, sym_identifier, - STATE(927), 1, + ACTIONS(1303), 1, + anon_sym_STAR, + STATE(953), 1, sym_primary_expression, - STATE(983), 1, + STATE(995), 1, sym_string, - STATE(1249), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1926), 1, + STATE(1917), 1, sym_expression, - STATE(2781), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1551), 2, + ACTIONS(1029), 2, anon_sym_match, anon_sym_type, - STATE(1483), 2, - sym_attribute, - sym_subscript, - ACTIONS(700), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1549), 3, + ACTIONS(1027), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60151,9 +59278,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 14, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -60166,58 +59295,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40557] = 22, - ACTIONS(805), 1, + [40591] = 22, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(977), 1, + anon_sym_STAR, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1265), 1, - anon_sym_STAR, - STATE(928), 1, + ACTIONS(1145), 1, + anon_sym_await, + STATE(901), 1, sym_primary_expression, - STATE(977), 1, + STATE(975), 1, sym_string, - STATE(1200), 1, + STATE(1197), 1, sym_list_splat_pattern, - STATE(1733), 1, + STATE(1770), 1, sym_expression, - STATE(2649), 1, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60225,7 +59354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60242,58 +59371,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40655] = 22, - ACTIONS(311), 1, + [40689] = 22, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1003), 1, + anon_sym_not, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(971), 1, + STATE(963), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1081), 1, sym_string, - STATE(1325), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(2110), 1, + STATE(1913), 1, sym_expression, - STATE(2678), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(997), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(995), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60301,7 +59430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60318,184 +59447,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40753] = 9, - ACTIONS(1501), 1, - anon_sym_else, - ACTIONS(1503), 1, - anon_sym_except, - ACTIONS(1505), 1, - anon_sym_finally, - STATE(710), 1, - sym_else_clause, - STATE(741), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(626), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1553), 12, - sym_string_start, - ts_builtin_sym_end, + [40787] = 22, + ACTIONS(691), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(699), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(703), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1555), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [40825] = 9, - ACTIONS(1501), 1, - anon_sym_else, - ACTIONS(1505), 1, - anon_sym_finally, - ACTIONS(1507), 1, - anon_sym_except_STAR, - STATE(710), 1, - sym_else_clause, - STATE(741), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(613), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1553), 12, + ACTIONS(709), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1555), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(817), 1, anon_sym_not, + ACTIONS(819), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(823), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [40897] = 22, - ACTIONS(759), 1, - anon_sym_LPAREN, - ACTIONS(769), 1, - anon_sym_LBRACK, - ACTIONS(773), 1, - anon_sym_LBRACE, - ACTIONS(779), 1, - sym_string_start, - ACTIONS(887), 1, - anon_sym_not, - ACTIONS(889), 1, - anon_sym_lambda, - ACTIONS(1059), 1, + ACTIONS(1155), 1, sym_identifier, - ACTIONS(1069), 1, - anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(972), 1, + STATE(857), 1, sym_primary_expression, - STATE(1044), 1, + STATE(969), 1, sym_string, - STATE(1390), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1671), 1, sym_expression, - STATE(2684), 1, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60503,7 +59506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60520,58 +59523,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40995] = 22, - ACTIONS(783), 1, + [40885] = 23, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(1303), 1, + anon_sym_STAR, + ACTIONS(1529), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1541), 1, sym_identifier, - ACTIONS(1355), 1, - anon_sym_STAR, - STATE(967), 1, + STATE(953), 1, sym_primary_expression, - STATE(1034), 1, + STATE(995), 1, sym_string, - STATE(1316), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(2000), 1, + STATE(1937), 1, sym_expression, - STATE(2630), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(1545), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + STATE(1472), 2, + sym_attribute, + sym_subscript, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(1543), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60579,11 +59585,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1381), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -60596,58 +59600,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41093] = 22, - ACTIONS(759), 1, - anon_sym_LPAREN, - ACTIONS(769), 1, - anon_sym_LBRACK, - ACTIONS(773), 1, + [40985] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(779), 1, - sym_string_start, - ACTIONS(887), 1, - anon_sym_not, - ACTIONS(889), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1069), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, + sym_identifier, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(972), 1, + STATE(952), 1, sym_primary_expression, - STATE(1044), 1, + STATE(984), 1, sym_string, - STATE(1390), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1837), 1, + STATE(2060), 1, sym_expression, - STATE(2684), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, - sym_ellipsis, - sym_float, - ACTIONS(1067), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60655,7 +59659,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60672,58 +59676,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41191] = 22, - ACTIONS(759), 1, + [41083] = 22, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(1059), 1, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1081), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(972), 1, + STATE(950), 1, sym_primary_expression, - STATE(1044), 1, + STATE(985), 1, sym_string, - STATE(1390), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1840), 1, + STATE(1808), 1, sym_expression, - STATE(2684), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60731,7 +59735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60748,58 +59752,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41289] = 22, - ACTIONS(759), 1, + [41181] = 22, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1253), 1, + sym_identifier, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(972), 1, + STATE(953), 1, sym_primary_expression, - STATE(1044), 1, + STATE(995), 1, sym_string, - STATE(1390), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1841), 1, + STATE(1927), 1, sym_expression, - STATE(2684), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1029), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1027), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60807,7 +59811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60824,58 +59828,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41387] = 22, - ACTIONS(759), 1, - anon_sym_LPAREN, - ACTIONS(769), 1, - anon_sym_LBRACK, - ACTIONS(773), 1, + [41279] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(779), 1, - sym_string_start, - ACTIONS(887), 1, - anon_sym_not, - ACTIONS(889), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1069), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, + sym_identifier, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(972), 1, + STATE(952), 1, sym_primary_expression, - STATE(1044), 1, + STATE(984), 1, sym_string, - STATE(1390), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1842), 1, + STATE(2008), 1, sym_expression, - STATE(2684), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, - sym_ellipsis, - sym_float, - ACTIONS(1067), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60883,7 +59887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60900,58 +59904,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41485] = 22, - ACTIONS(783), 1, + [41377] = 22, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(1087), 1, - anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1081), 1, + anon_sym_await, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(967), 1, + STATE(950), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1736), 1, + STATE(1794), 1, sym_expression, - STATE(2630), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60959,7 +59963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60976,58 +59980,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41583] = 22, - ACTIONS(67), 1, + [41475] = 22, + ACTIONS(779), 1, + anon_sym_LPAREN, + ACTIONS(789), 1, + anon_sym_LBRACK, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(799), 1, + sym_string_start, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(410), 1, + ACTIONS(1081), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(870), 1, + STATE(950), 1, sym_primary_expression, - STATE(969), 1, + STATE(985), 1, sym_string, - STATE(1135), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1677), 1, + STATE(1795), 1, sym_expression, - STATE(2672), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61035,7 +60039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61052,58 +60056,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41681] = 22, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(672), 1, + [41573] = 22, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(793), 1, + anon_sym_LBRACE, + ACTIONS(799), 1, + sym_string_start, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(859), 1, + anon_sym_lambda, + ACTIONS(1071), 1, + sym_identifier, + ACTIONS(1081), 1, + anon_sym_await, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(971), 1, + STATE(950), 1, sym_primary_expression, - STATE(1025), 1, + STATE(985), 1, sym_string, - STATE(1325), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1751), 1, + STATE(1796), 1, sym_expression, - STATE(2678), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1079), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1077), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61111,7 +60115,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61128,58 +60132,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41779] = 22, - ACTIONS(690), 1, + [41671] = 22, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(1105), 1, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1115), 1, + ACTIONS(1081), 1, anon_sym_await, - STATE(927), 1, + ACTIONS(1243), 1, + anon_sym_STAR, + STATE(950), 1, sym_primary_expression, - STATE(983), 1, + STATE(985), 1, sym_string, - STATE(1249), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1790), 1, + STATE(1797), 1, sym_expression, - STATE(2781), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61187,7 +60191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61204,58 +60208,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41877] = 22, - ACTIONS(67), 1, + [41769] = 22, + ACTIONS(735), 1, + anon_sym_LPAREN, + ACTIONS(743), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(387), 1, + ACTIONS(871), 1, sym_identifier, - ACTIONS(410), 1, + ACTIONS(887), 1, + anon_sym_not, + ACTIONS(889), 1, + anon_sym_lambda, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1273), 1, anon_sym_STAR, - STATE(870), 1, + STATE(893), 1, sym_primary_expression, - STATE(969), 1, + STATE(958), 1, sym_string, - STATE(1135), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1981), 1, + STATE(1741), 1, sym_expression, - STATE(2672), 1, + STATE(2645), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(879), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61263,7 +60267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61280,58 +60284,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41975] = 22, - ACTIONS(737), 1, + [41867] = 23, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1307), 1, + anon_sym_STAR, + ACTIONS(1521), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1547), 1, sym_identifier, - ACTIONS(1347), 1, - anon_sym_STAR, - STATE(992), 1, + STATE(963), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1771), 1, + STATE(1932), 1, sym_expression, - STATE(2786), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1551), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + STATE(1458), 2, + sym_attribute, + sym_subscript, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1549), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61339,11 +60346,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1441), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -61356,58 +60361,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42073] = 22, - ACTIONS(759), 1, + [41967] = 22, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(977), 1, + anon_sym_STAR, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(1059), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1273), 1, - anon_sym_STAR, - STATE(972), 1, + STATE(901), 1, sym_primary_expression, - STATE(1044), 1, + STATE(975), 1, sym_string, - STATE(1390), 1, + STATE(1197), 1, sym_list_splat_pattern, - STATE(1804), 1, + STATE(1773), 1, sym_expression, - STATE(2684), 1, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61415,7 +60420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61432,7 +60437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42171] = 22, + [42065] = 22, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -61441,25 +60446,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym_string_start, - ACTIONS(387), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(410), 1, + ACTIONS(398), 1, anon_sym_await, - ACTIONS(653), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(870), 1, + STATE(845), 1, sym_primary_expression, - STATE(969), 1, + STATE(954), 1, sym_string, - STATE(1135), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1676), 1, + STATE(1663), 1, sym_expression, - STATE(2672), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -61467,14 +60472,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -61483,7 +60488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61491,7 +60496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61508,184 +60513,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42269] = 9, - ACTIONS(1557), 1, - anon_sym_else, - ACTIONS(1559), 1, - anon_sym_except, - ACTIONS(1561), 1, - anon_sym_finally, - STATE(723), 1, - sym_else_clause, - STATE(836), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(627), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1553), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + [42163] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1555), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(69), 1, anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [42341] = 9, - ACTIONS(1557), 1, - anon_sym_else, - ACTIONS(1561), 1, - anon_sym_finally, - ACTIONS(1563), 1, - anon_sym_except_STAR, - STATE(723), 1, - sym_else_clause, - STATE(836), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(628), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1553), 12, - sym__dedent, + ACTIONS(81), 1, sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1555), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(375), 1, sym_identifier, + ACTIONS(398), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [42413] = 22, - ACTIONS(759), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(773), 1, - anon_sym_LBRACE, - ACTIONS(779), 1, - sym_string_start, - ACTIONS(887), 1, - anon_sym_not, - ACTIONS(889), 1, - anon_sym_lambda, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1069), 1, - anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(972), 1, + STATE(845), 1, sym_primary_expression, - STATE(1044), 1, + STATE(954), 1, sym_string, - STATE(1390), 1, + STATE(1047), 1, sym_list_splat_pattern, STATE(1825), 1, sym_expression, - STATE(2684), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61693,7 +60572,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61710,58 +60589,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42511] = 22, - ACTIONS(311), 1, + [42261] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(971), 1, + STATE(952), 1, sym_primary_expression, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2123), 1, + STATE(2027), 1, sym_expression, - STATE(2678), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61769,7 +60648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61786,58 +60665,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42609] = 22, - ACTIONS(715), 1, + [42359] = 22, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(865), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(1071), 1, + sym_identifier, + ACTIONS(1081), 1, anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(964), 1, + STATE(950), 1, sym_primary_expression, - STATE(980), 1, + STATE(985), 1, sym_string, - STATE(1229), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1776), 1, + STATE(1790), 1, sym_expression, - STATE(2645), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61845,7 +60724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61862,58 +60741,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42707] = 22, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(672), 1, + [42457] = 22, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(977), 1, anon_sym_STAR, - STATE(971), 1, + ACTIONS(985), 1, + anon_sym_not, + ACTIONS(987), 1, + anon_sym_lambda, + ACTIONS(1135), 1, + sym_identifier, + ACTIONS(1145), 1, + anon_sym_await, + STATE(901), 1, sym_primary_expression, - STATE(1025), 1, + STATE(975), 1, sym_string, - STATE(1325), 1, + STATE(1197), 1, sym_list_splat_pattern, - STATE(2103), 1, + STATE(1758), 1, sym_expression, - STATE(2678), 1, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1143), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1141), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61921,7 +60800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61938,58 +60817,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42805] = 22, - ACTIONS(311), 1, + [42555] = 23, + ACTIONS(666), 1, + anon_sym_LPAREN, + ACTIONS(674), 1, + anon_sym_LBRACK, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(977), 1, + anon_sym_STAR, + ACTIONS(985), 1, + anon_sym_not, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(1537), 1, anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, + ACTIONS(1553), 1, sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, - anon_sym_STAR, - STATE(971), 1, + STATE(901), 1, sym_primary_expression, - STATE(1025), 1, + STATE(975), 1, sym_string, - STATE(1325), 1, + STATE(1197), 1, sym_list_splat_pattern, - STATE(2071), 1, + STATE(1912), 1, sym_expression, - STATE(2678), 1, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1557), 2, + anon_sym_match, + anon_sym_type, + STATE(1473), 2, + sym_attribute, + sym_subscript, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1555), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61997,11 +60879,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1279), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -62014,58 +60894,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42903] = 22, - ACTIONS(311), 1, + [42655] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(971), 1, + STATE(952), 1, sym_primary_expression, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2005), 1, + STATE(1902), 1, sym_expression, - STATE(2678), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62073,7 +60953,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62090,58 +60970,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43001] = 22, - ACTIONS(311), 1, + [42753] = 22, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(721), 1, + anon_sym_LBRACK, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(731), 1, + sym_string_start, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(971), 1, + STATE(953), 1, sym_primary_expression, - STATE(1025), 1, + STATE(995), 1, sym_string, - STATE(1325), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(2026), 1, + STATE(1719), 1, sym_expression, - STATE(2678), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1029), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1027), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62149,7 +61029,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62166,58 +61046,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43099] = 22, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(672), 1, + [42851] = 22, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(793), 1, + anon_sym_LBRACE, + ACTIONS(799), 1, + sym_string_start, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(859), 1, + anon_sym_lambda, + ACTIONS(1071), 1, + sym_identifier, + ACTIONS(1081), 1, + anon_sym_await, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(971), 1, + STATE(950), 1, sym_primary_expression, - STATE(1025), 1, + STATE(985), 1, sym_string, - STATE(1325), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(2091), 1, + STATE(1810), 1, sym_expression, - STATE(2678), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1079), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1077), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62225,7 +61105,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62242,58 +61122,118 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43197] = 22, - ACTIONS(805), 1, + [42949] = 6, + ACTIONS(1559), 1, + anon_sym_except, + ACTIONS(1562), 1, + anon_sym_except_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(587), 3, + sym_except_clause, + sym_except_group_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1505), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(813), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(817), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(823), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1507), 34, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [43015] = 22, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, + anon_sym_LBRACE, + ACTIONS(775), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(847), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(928), 1, + STATE(963), 1, sym_primary_expression, - STATE(977), 1, + STATE(1081), 1, sym_string, - STATE(1200), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1726), 1, + STATE(1753), 1, sym_expression, - STATE(2649), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62301,7 +61241,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62318,58 +61258,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43295] = 22, - ACTIONS(311), 1, + [43113] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(971), 1, + STATE(952), 1, sym_primary_expression, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2018), 1, + STATE(2006), 1, sym_expression, - STATE(2678), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62377,7 +61317,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62394,58 +61334,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43393] = 22, - ACTIONS(311), 1, + [43211] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(971), 1, + STATE(952), 1, sym_primary_expression, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2033), 1, + STATE(2029), 1, sym_expression, - STATE(2678), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62453,7 +61393,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62470,58 +61410,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43491] = 22, - ACTIONS(805), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, - anon_sym_LBRACK, - ACTIONS(817), 1, + [43309] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(823), 1, - sym_string_start, - ACTIONS(841), 1, - anon_sym_not, - ACTIONS(843), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(847), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(928), 1, + STATE(952), 1, sym_primary_expression, - STATE(977), 1, + STATE(984), 1, sym_string, - STATE(1200), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1722), 1, + STATE(1992), 1, sym_expression, - STATE(2649), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, - sym_ellipsis, - sym_float, - ACTIONS(833), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62529,7 +61469,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62546,58 +61486,134 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43589] = 22, - ACTIONS(311), 1, + [43407] = 22, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, + sym_identifier, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(637), 1, + anon_sym_LBRACK, + ACTIONS(1293), 1, + anon_sym_STAR, + STATE(845), 1, + sym_primary_expression, + STATE(954), 1, + sym_string, + STATE(1047), 1, + sym_list_splat_pattern, + STATE(1785), 1, + sym_expression, + STATE(2616), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(387), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(383), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1649), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1099), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [43505] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(971), 1, + STATE(952), 1, sym_primary_expression, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2051), 1, + STATE(1989), 1, sym_expression, - STATE(2678), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62605,7 +61621,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62622,58 +61638,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43687] = 22, - ACTIONS(311), 1, + [43603] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(971), 1, + STATE(952), 1, sym_primary_expression, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2053), 1, + STATE(2035), 1, sym_expression, - STATE(2678), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62681,7 +61697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62698,58 +61714,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43785] = 22, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [43701] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(306), 1, + anon_sym_lambda, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(865), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(867), 1, - anon_sym_lambda, - ACTIONS(871), 1, - anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(964), 1, + STATE(952), 1, sym_primary_expression, - STATE(980), 1, + STATE(984), 1, sym_string, - STATE(1229), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1778), 1, + STATE(2071), 1, sym_expression, - STATE(2645), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, - sym_ellipsis, - sym_float, - ACTIONS(859), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62757,7 +61773,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62774,58 +61790,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43883] = 22, - ACTIONS(311), 1, + [43799] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(971), 1, + STATE(952), 1, sym_primary_expression, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2065), 1, + STATE(1990), 1, sym_expression, - STATE(2678), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62833,7 +61849,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62850,58 +61866,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43981] = 22, - ACTIONS(311), 1, + [43897] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(971), 1, + STATE(952), 1, sym_primary_expression, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2067), 1, + STATE(2020), 1, sym_expression, - STATE(2678), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62909,7 +61925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62926,184 +61942,286 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44079] = 9, - ACTIONS(1557), 1, - anon_sym_else, - ACTIONS(1559), 1, - anon_sym_except, - ACTIONS(1561), 1, - anon_sym_finally, - STATE(704), 1, - sym_else_clause, - STATE(753), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(627), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1497), 12, - sym__dedent, + [43995] = 22, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(306), 1, + anon_sym_lambda, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, sym_string_start, + ACTIONS(400), 1, + sym_identifier, + ACTIONS(648), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(658), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1421), 1, + anon_sym_STAR, + STATE(952), 1, + sym_primary_expression, + STATE(984), 1, + sym_string, + STATE(1372), 1, + sym_list_splat_pattern, + STATE(2022), 1, + sym_expression, + STATE(2729), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(285), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(1499), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(278), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [44151] = 9, - ACTIONS(1557), 1, - anon_sym_else, - ACTIONS(1561), 1, - anon_sym_finally, - ACTIONS(1563), 1, - anon_sym_except_STAR, - STATE(704), 1, - sym_else_clause, - STATE(753), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(628), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1497), 12, - sym__dedent, + STATE(1723), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1377), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [44093] = 22, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym_string_start, + ACTIONS(375), 1, + sym_identifier, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(629), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(637), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1293), 1, + anon_sym_STAR, + STATE(845), 1, + sym_primary_expression, + STATE(954), 1, + sym_string, + STATE(1047), 1, + sym_list_splat_pattern, + STATE(1847), 1, + sym_expression, + STATE(2616), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(387), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1499), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(383), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(77), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [44223] = 22, - ACTIONS(311), 1, + STATE(1649), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1099), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [44191] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(971), 1, + STATE(952), 1, sym_primary_expression, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2068), 1, + STATE(2034), 1, sym_expression, - STATE(2678), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1723), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1377), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [44289] = 22, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, + sym_identifier, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(637), 1, + anon_sym_LBRACK, + ACTIONS(1293), 1, + anon_sym_STAR, + STATE(845), 1, + sym_primary_expression, + STATE(954), 1, + sym_string, + STATE(1047), 1, + sym_list_splat_pattern, + STATE(1899), 1, + sym_expression, + STATE(2616), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(387), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(383), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63111,7 +62229,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63128,58 +62246,134 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44321] = 22, - ACTIONS(311), 1, + [44387] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(971), 1, + STATE(952), 1, sym_primary_expression, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1898), 1, + STATE(2036), 1, sym_expression, - STATE(2678), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1723), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1377), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [44485] = 22, + ACTIONS(666), 1, + anon_sym_LPAREN, + ACTIONS(674), 1, + anon_sym_LBRACK, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(977), 1, + anon_sym_STAR, + ACTIONS(985), 1, + anon_sym_not, + ACTIONS(987), 1, + anon_sym_lambda, + ACTIONS(1135), 1, + sym_identifier, + ACTIONS(1145), 1, + anon_sym_await, + STATE(901), 1, + sym_primary_expression, + STATE(975), 1, + sym_string, + STATE(1197), 1, + sym_list_splat_pattern, + STATE(1896), 1, + sym_expression, + STATE(2650), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(680), 2, + sym_ellipsis, + sym_float, + ACTIONS(1143), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1141), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63187,7 +62381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63204,7 +62398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44419] = 10, + [44583] = 10, ACTIONS(1567), 1, anon_sym_COMMA, ACTIONS(1572), 1, @@ -63215,7 +62409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1579), 1, anon_sym_LBRACK, - STATE(2077), 1, + STATE(2082), 1, sym_type_parameter, ACTIONS(3), 2, sym_comment, @@ -63267,18 +62461,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [44492] = 7, - ACTIONS(284), 1, + [44656] = 8, + ACTIONS(272), 1, anon_sym_COMMA, - ACTIONS(292), 1, + ACTIONS(280), 1, anon_sym_COLON_EQ, + ACTIONS(282), 1, + anon_sym_COLON, + ACTIONS(292), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(304), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(320), 13, + ACTIONS(308), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -63292,7 +62487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(279), 15, + ACTIONS(267), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -63308,7 +62503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 17, + ACTIONS(265), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -63326,15 +62521,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [44558] = 5, + [44724] = 8, + ACTIONS(1429), 1, + anon_sym_else, ACTIONS(1587), 1, - anon_sym_except_STAR, + anon_sym_elif, + STATE(610), 1, + aux_sym_if_statement_repeat1, + STATE(704), 1, + sym_elif_clause, + STATE(821), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(613), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, ACTIONS(1583), 12, sym_string_start, ts_builtin_sym_end, @@ -63348,7 +62548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1585), 34, + ACTIONS(1585), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63360,13 +62560,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -63383,1219 +62581,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44620] = 8, - ACTIONS(1557), 1, - anon_sym_else, - ACTIONS(1594), 1, - anon_sym_elif, - STATE(629), 1, - aux_sym_if_statement_repeat1, - STATE(722), 1, - sym_elif_clause, - STATE(735), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1592), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1590), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [44688] = 8, - ACTIONS(1501), 1, - anon_sym_else, - ACTIONS(1600), 1, - anon_sym_elif, - STATE(622), 1, - aux_sym_if_statement_repeat1, - STATE(719), 1, - sym_elif_clause, - STATE(781), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1596), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1598), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [44756] = 7, - ACTIONS(1567), 1, - anon_sym_COMMA, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1577), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(1581), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1570), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1565), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [44822] = 8, - ACTIONS(284), 1, - anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(294), 1, - anon_sym_COLON, - ACTIONS(304), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(320), 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(279), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(277), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [44890] = 8, - ACTIONS(1557), 1, - anon_sym_else, - ACTIONS(1594), 1, - anon_sym_elif, - STATE(619), 1, - aux_sym_if_statement_repeat1, - STATE(722), 1, - sym_elif_clause, - STATE(818), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1596), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1598), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [44958] = 8, - ACTIONS(1557), 1, - anon_sym_else, - ACTIONS(1594), 1, - anon_sym_elif, - STATE(629), 1, - aux_sym_if_statement_repeat1, - STATE(722), 1, - sym_elif_clause, - STATE(754), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1604), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1602), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [45026] = 8, - ACTIONS(1557), 1, - anon_sym_else, - ACTIONS(1594), 1, - anon_sym_elif, - STATE(614), 1, - aux_sym_if_statement_repeat1, - STATE(722), 1, - sym_elif_clause, - STATE(757), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1608), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1606), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [45094] = 8, - ACTIONS(284), 1, - anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(294), 1, - anon_sym_COLON, - ACTIONS(304), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(320), 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(279), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(277), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [45162] = 8, - ACTIONS(1501), 1, - anon_sym_else, - ACTIONS(1600), 1, - anon_sym_elif, - STATE(638), 1, - aux_sym_if_statement_repeat1, - STATE(719), 1, - sym_elif_clause, - STATE(843), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1604), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1602), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [45230] = 8, - ACTIONS(1501), 1, - anon_sym_else, - ACTIONS(1600), 1, - anon_sym_elif, - STATE(625), 1, - aux_sym_if_statement_repeat1, - STATE(719), 1, - sym_elif_clause, - STATE(845), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1608), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1606), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [45298] = 7, - ACTIONS(284), 1, - anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(304), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(320), 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(279), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(277), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [45364] = 8, - ACTIONS(1501), 1, - anon_sym_else, - ACTIONS(1600), 1, - anon_sym_elif, - STATE(638), 1, - aux_sym_if_statement_repeat1, - STATE(719), 1, - sym_elif_clause, - STATE(738), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1592), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1590), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [45432] = 5, - ACTIONS(1614), 1, - anon_sym_except, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(626), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1610), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1612), 34, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [45494] = 5, - ACTIONS(1617), 1, - anon_sym_except, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(627), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1610), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1612), 34, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [45556] = 5, - ACTIONS(1620), 1, - anon_sym_except_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(628), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1583), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1585), 34, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [45618] = 6, - ACTIONS(1627), 1, - anon_sym_elif, - STATE(629), 1, - aux_sym_if_statement_repeat1, - STATE(722), 1, - sym_elif_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1625), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1623), 33, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [45681] = 6, - ACTIONS(1632), 1, - anon_sym_COMMA, - ACTIONS(1639), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1637), 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(1635), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1630), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [45744] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(674), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(710), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(669), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(667), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [45805] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(674), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(710), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(669), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(667), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [45866] = 6, - ACTIONS(1639), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1632), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1637), 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(1635), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1630), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [45929] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1643), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + [44792] = 8, + ACTIONS(272), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + ACTIONS(280), 1, + anon_sym_COLON_EQ, + ACTIONS(282), 1, anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, + ACTIONS(292), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(308), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64609,15 +62607,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [45986] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1647), 16, + ACTIONS(267), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -64630,15 +62623,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 32, + ACTIONS(265), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_LBRACK, anon_sym_not, @@ -64650,6 +62641,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, + [44860] = 7, + ACTIONS(272), 1, + anon_sym_COMMA, + ACTIONS(280), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(292), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(308), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64663,15 +62666,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46043] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1643), 16, + ACTIONS(267), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -64684,15 +62682,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 32, + ACTIONS(265), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_LBRACK, anon_sym_not, @@ -64704,6 +62700,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, + [44926] = 8, + ACTIONS(1441), 1, + anon_sym_else, + ACTIONS(1593), 1, + anon_sym_elif, + STATE(613), 1, + aux_sym_if_statement_repeat1, + STATE(691), 1, + sym_elif_clause, + STATE(787), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1591), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1589), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [44994] = 8, + ACTIONS(1429), 1, + anon_sym_else, + ACTIONS(1587), 1, + anon_sym_elif, + STATE(665), 1, + aux_sym_if_statement_repeat1, + STATE(704), 1, + sym_elif_clause, + STATE(734), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1595), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1597), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [45062] = 8, + ACTIONS(1429), 1, + anon_sym_else, + ACTIONS(1587), 1, + anon_sym_elif, + STATE(616), 1, + aux_sym_if_statement_repeat1, + STATE(704), 1, + sym_elif_clause, + STATE(776), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1591), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1589), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [45130] = 7, + ACTIONS(1567), 1, + anon_sym_COMMA, + ACTIONS(1572), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1577), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1581), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64717,15 +62905,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46100] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1647), 16, + ACTIONS(1570), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -64738,15 +62921,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 32, + ACTIONS(1565), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_LBRACK, anon_sym_not, @@ -64758,32 +62939,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [46157] = 6, - ACTIONS(1649), 1, + [45196] = 8, + ACTIONS(1441), 1, + anon_sym_else, + ACTIONS(1593), 1, anon_sym_elif, - STATE(638), 1, + STATE(663), 1, aux_sym_if_statement_repeat1, - STATE(719), 1, + STATE(691), 1, sym_elif_clause, + STATE(802), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1625), 12, + ACTIONS(1601), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -64794,7 +62966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1623), 33, + ACTIONS(1599), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64806,7 +62978,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -64828,72 +62999,78 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46220] = 5, + [45264] = 8, + ACTIONS(1441), 1, + anon_sym_else, + ACTIONS(1593), 1, + anon_sym_elif, + STATE(617), 1, + aux_sym_if_statement_repeat1, + STATE(691), 1, + sym_elif_clause, + STATE(803), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1654), 3, - anon_sym_DOT, + ACTIONS(1583), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1660), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1657), 13, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1652), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1585), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_in, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [46281] = 6, - ACTIONS(1577), 1, - anon_sym_EQ, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [45332] = 7, + ACTIONS(272), 1, + anon_sym_COMMA, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, - anon_sym_COMMA, + ACTIONS(292), 2, anon_sym_COLON, - ACTIONS(1581), 13, + anon_sym_EQ, + ACTIONS(308), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64907,7 +63084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1667), 15, + ACTIONS(267), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64923,7 +63100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 17, + ACTIONS(265), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64941,75 +63118,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46344] = 6, - ACTIONS(1577), 1, - anon_sym_EQ, + [45398] = 8, + ACTIONS(1429), 1, + anon_sym_else, + ACTIONS(1587), 1, + anon_sym_elif, + STATE(665), 1, + aux_sym_if_statement_repeat1, + STATE(704), 1, + sym_elif_clause, + STATE(817), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1567), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1581), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1570), 15, + ACTIONS(1601), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1565), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1599), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [45466] = 8, + ACTIONS(1441), 1, + anon_sym_else, + ACTIONS(1593), 1, + anon_sym_elif, + STATE(663), 1, + aux_sym_if_statement_repeat1, + STATE(691), 1, + sym_elif_clause, + STATE(818), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1595), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - anon_sym_as, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1597), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_in, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [45534] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1605), 13, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1603), 35, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [46407] = 3, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [45591] = 7, + ACTIONS(1619), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1671), 16, + ACTIONS(1609), 2, + anon_sym_DOT, + anon_sym_COLON, + ACTIONS(1611), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1617), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1614), 12, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, @@ -65017,19 +63321,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1669), 32, + ACTIONS(1607), 28, sym__newline, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_COLON, anon_sym_in, - anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -65052,28 +63350,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46464] = 7, - ACTIONS(1675), 1, - anon_sym_PIPE, + [45656] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1654), 2, + ACTIONS(1623), 13, + sym__dedent, + sym_string_start, anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, - ACTIONS(1673), 2, - anon_sym_DOT, - anon_sym_COLON, - ACTIONS(1660), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1657), 12, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1621), 35, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [45713] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1625), 13, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_except_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1627), 35, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [45770] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1631), 13, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_except_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1629), 35, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [45827] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1635), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, @@ -65081,13 +63531,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1652), 28, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1633), 32, sym__newline, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, + anon_sym_COLON, anon_sym_in, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -65110,16 +63566,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46529] = 6, - ACTIONS(1684), 1, + [45884] = 6, + ACTIONS(1577), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 2, + ACTIONS(1639), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1686), 13, + ACTIONS(1581), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -65133,7 +63589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1682), 15, + ACTIONS(1642), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -65149,7 +63605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 17, + ACTIONS(1637), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -65167,16 +63623,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46592] = 6, + [45947] = 6, ACTIONS(1577), 1, anon_sym_EQ, - ACTIONS(1664), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 14, + ACTIONS(1567), 2, + anon_sym_COMMA, anon_sym_COLON, + ACTIONS(1581), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -65190,7 +63646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1667), 15, + ACTIONS(1570), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -65206,7 +63662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 17, + ACTIONS(1565), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -65224,16 +63680,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46655] = 6, - ACTIONS(1567), 1, - anon_sym_COMMA, - ACTIONS(1577), 1, + [46010] = 6, + ACTIONS(1651), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 14, + ACTIONS(1646), 2, + anon_sym_COMMA, anon_sym_COLON, + ACTIONS(1653), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -65247,7 +63703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1570), 15, + ACTIONS(1649), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -65263,7 +63719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 17, + ACTIONS(1644), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -65281,16 +63737,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46718] = 6, - ACTIONS(1679), 1, - anon_sym_COMMA, - ACTIONS(1684), 1, + [46073] = 6, + ACTIONS(1662), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1686), 14, + ACTIONS(1657), 2, + anon_sym_COMMA, anon_sym_COLON, + ACTIONS(1664), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -65304,7 +63760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1682), 15, + ACTIONS(1660), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -65320,7 +63776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 17, + ACTIONS(1655), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -65338,101 +63794,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46781] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1690), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, + [46136] = 6, + ACTIONS(1577), 1, anon_sym_EQ, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1688), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1639), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [46838] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1694), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1692), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + ACTIONS(1581), 14, anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -65446,298 +63817,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46895] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1696), 13, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_except_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1698), 34, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [46951] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1700), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1702), 35, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [47007] = 21, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(1704), 1, - sym_identifier, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1708), 1, - anon_sym_STAR, - ACTIONS(1714), 1, - anon_sym_LBRACK, - ACTIONS(1716), 1, - anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1584), 1, - sym_list_splat_pattern, - STATE(1632), 1, - sym_primary_expression, - STATE(2088), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(1712), 2, - anon_sym_match, - anon_sym_type, - STATE(1585), 2, - sym_attribute, - sym_subscript, - STATE(2122), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1710), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(995), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1311), 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, - [47099] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1720), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1718), 35, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [47155] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1722), 13, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(1642), 15, anon_sym_STAR, - anon_sym_except_STAR, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1724), 34, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, + anon_sym_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(1637), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + anon_sym_in, + anon_sym_LBRACK, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [47211] = 3, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [46199] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 12, + ACTIONS(1666), 13, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -65746,7 +63869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1718), 35, + ACTIONS(1668), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65758,13 +63881,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -65782,15 +63905,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47267] = 3, + [46256] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1728), 12, + ACTIONS(1625), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -65799,7 +63923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1726), 35, + ACTIONS(1627), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65835,172 +63959,178 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47323] = 3, + [46313] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1728), 13, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, + ACTIONS(1672), 16, anon_sym_STAR, - anon_sym_except_STAR, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1726), 34, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1670), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [47379] = 3, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [46370] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1728), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(1672), 16, anon_sym_STAR, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1726), 35, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1670), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [47435] = 3, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [46427] = 6, + ACTIONS(1657), 1, + anon_sym_COMMA, + ACTIONS(1662), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1732), 13, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, + ACTIONS(1664), 14, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1660), 15, anon_sym_STAR, - anon_sym_except_STAR, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1730), 34, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, + anon_sym_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(1655), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + anon_sym_in, + anon_sym_LBRACK, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [47491] = 3, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [46490] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1736), 13, - sym__dedent, + ACTIONS(1674), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -66012,7 +64142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1734), 34, + ACTIONS(1676), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66030,6 +64160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -66047,13 +64178,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47547] = 3, + [46547] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1740), 13, - sym__dedent, + ACTIONS(1678), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -66065,7 +64196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1738), 34, + ACTIONS(1680), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66083,6 +64214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -66100,13 +64232,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47603] = 3, + [46604] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 13, - sym__dedent, + ACTIONS(1682), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -66118,7 +64250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1698), 34, + ACTIONS(1684), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66136,6 +64268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -66153,121 +64286,130 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47659] = 3, + [46661] = 6, + ACTIONS(1646), 1, + anon_sym_COMMA, + ACTIONS(1651), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1722), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(1653), 14, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1649), 15, anon_sym_STAR, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1724), 35, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1644), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + anon_sym_in, + anon_sym_LBRACK, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [47715] = 3, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [46724] = 6, + ACTIONS(1567), 1, + anon_sym_COMMA, + ACTIONS(1577), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1722), 13, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, + ACTIONS(1581), 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(1570), 15, anon_sym_STAR, - anon_sym_except_STAR, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1724), 34, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1565), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + anon_sym_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, - [47771] = 3, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [46787] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1742), 12, + ACTIONS(1688), 13, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -66276,7 +64418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1744), 35, + ACTIONS(1686), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66312,15 +64454,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47827] = 3, + [46844] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 12, - sym__dedent, + ACTIONS(1605), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -66329,7 +64472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1718), 35, + ACTIONS(1603), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66341,13 +64484,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -66365,15 +64508,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47883] = 3, + [46901] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1732), 12, + ACTIONS(1623), 13, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -66382,7 +64526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1730), 35, + ACTIONS(1621), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66394,13 +64538,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -66418,13 +64562,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47939] = 3, + [46958] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1732), 13, + ACTIONS(1682), 13, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -66436,7 +64580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1730), 34, + ACTIONS(1684), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66454,6 +64598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -66471,13 +64616,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47995] = 3, + [47015] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1740), 13, + ACTIONS(1692), 13, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -66489,7 +64634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1738), 34, + ACTIONS(1690), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66507,6 +64652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -66524,15 +64670,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48051] = 3, + [47072] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1722), 12, + ACTIONS(1696), 13, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -66541,7 +64688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1724), 35, + ACTIONS(1694), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66577,15 +64724,72 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48107] = 3, + [47129] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(650), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(686), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(645), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(643), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [47190] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1746), 12, + ACTIONS(1688), 13, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -66594,7 +64798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1748), 35, + ACTIONS(1686), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66630,15 +64834,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48163] = 3, + [47247] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 12, + ACTIONS(1696), 13, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -66647,7 +64852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1718), 35, + ACTIONS(1694), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66683,15 +64888,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48219] = 3, + [47304] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1750), 12, + ACTIONS(1698), 13, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -66700,7 +64906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1752), 35, + ACTIONS(1700), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66736,15 +64942,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48275] = 3, + [47361] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1732), 12, - sym__dedent, + ACTIONS(1702), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -66753,7 +64960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1730), 35, + ACTIONS(1704), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66765,13 +64972,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -66789,15 +64996,128 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48331] = 3, + [47418] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1756), 12, - sym__dedent, + ACTIONS(650), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(686), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(645), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(643), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [47479] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1611), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1617), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1614), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1607), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [47540] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1692), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -66806,7 +65126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1754), 35, + ACTIONS(1690), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66842,13 +65162,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48387] = 3, + [47597] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1758), 13, + ACTIONS(1698), 13, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -66860,7 +65180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1760), 34, + ACTIONS(1700), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66878,6 +65198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -66895,15 +65216,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48443] = 3, + [47654] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 12, + ACTIONS(1702), 13, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -66912,7 +65234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1698), 35, + ACTIONS(1704), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66948,15 +65270,70 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48499] = 3, + [47711] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1756), 12, + ACTIONS(1708), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1706), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [47768] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1712), 13, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -66965,7 +65342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1754), 35, + ACTIONS(1710), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67001,11 +65378,65 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48555] = 3, + [47825] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1716), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [47882] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1762), 13, + ACTIONS(1712), 13, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -67019,7 +65450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1764), 34, + ACTIONS(1710), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67037,6 +65468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67054,66 +65486,67 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48611] = 3, + [47939] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1736), 13, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(1720), 16, anon_sym_STAR, - anon_sym_except_STAR, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1734), 34, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1718), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [48667] = 3, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [47996] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1762), 13, - sym__dedent, + ACTIONS(1722), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -67125,7 +65558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1764), 34, + ACTIONS(1724), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67143,6 +65576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67160,15 +65594,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48723] = 3, + [48053] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 12, + ACTIONS(1722), 13, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -67177,7 +65612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1698), 35, + ACTIONS(1724), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67189,13 +65624,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67213,64 +65648,71 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48779] = 3, + [48110] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, + ACTIONS(1720), 16, anon_sym_STAR, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1698), 35, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1718), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [48835] = 3, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [48167] = 6, + ACTIONS(1730), 1, + anon_sym_elif, + STATE(663), 1, + aux_sym_if_statement_repeat1, + STATE(691), 1, + sym_elif_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1700), 12, + ACTIONS(1728), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -67283,7 +65725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1702), 35, + ACTIONS(1726), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67301,8 +65743,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67319,82 +65759,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48891] = 21, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(1704), 1, - sym_identifier, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1708), 1, - anon_sym_STAR, - ACTIONS(1714), 1, - anon_sym_LBRACK, - ACTIONS(1716), 1, - anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1584), 1, - sym_list_splat_pattern, - STATE(1632), 1, - sym_primary_expression, - STATE(2088), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(1712), 2, - anon_sym_match, - anon_sym_type, - STATE(1585), 2, - sym_attribute, - sym_subscript, - STATE(2122), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1710), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(981), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1311), 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, - [48983] = 3, + [48230] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1758), 13, + ACTIONS(1666), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -67408,7 +65777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1760), 34, + ACTIONS(1668), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67426,6 +65795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67443,13 +65813,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49039] = 3, + [48287] = 6, + ACTIONS(1733), 1, + anon_sym_elif, + STATE(665), 1, + aux_sym_if_statement_repeat1, + STATE(704), 1, + sym_elif_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1750), 12, - sym__dedent, + ACTIONS(1728), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67460,7 +65836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1752), 35, + ACTIONS(1726), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67478,8 +65854,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67496,13 +65870,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49095] = 3, + [48350] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 13, + ACTIONS(1674), 13, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -67514,7 +65888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1718), 34, + ACTIONS(1676), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67532,6 +65906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67549,15 +65924,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49151] = 3, + [48407] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1732), 12, + ACTIONS(1678), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -67566,7 +65942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1730), 35, + ACTIONS(1680), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67602,15 +65978,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49207] = 3, + [48464] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1742), 12, - sym__dedent, + ACTIONS(1631), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -67619,7 +65996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1744), 35, + ACTIONS(1629), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67655,13 +66032,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49263] = 3, + [48521] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1732), 12, + ACTIONS(1692), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67672,7 +66049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1730), 35, + ACTIONS(1690), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67684,13 +66061,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67708,13 +66085,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49319] = 3, + [48577] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1728), 12, + ACTIONS(1722), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67725,7 +66102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1726), 35, + ACTIONS(1724), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67737,13 +66114,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67761,16 +66138,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49375] = 3, + [48633] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1728), 13, + ACTIONS(1712), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -67779,7 +66155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1726), 34, + ACTIONS(1710), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67791,6 +66167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, @@ -67814,13 +66191,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49431] = 3, + [48689] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1722), 12, - sym__dedent, + ACTIONS(1692), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67831,7 +66208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1724), 35, + ACTIONS(1690), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67867,13 +66244,84 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49487] = 3, + [48745] = 21, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(1736), 1, + sym_identifier, + ACTIONS(1738), 1, + anon_sym_LPAREN, + ACTIONS(1740), 1, + anon_sym_STAR, + ACTIONS(1746), 1, + anon_sym_LBRACK, + ACTIONS(1748), 1, + anon_sym_await, + STATE(984), 1, + sym_string, + STATE(1569), 1, + sym_list_splat_pattern, + STATE(1608), 1, + sym_primary_expression, + STATE(2053), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1722), 12, - sym__dedent, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(1744), 2, + anon_sym_match, + anon_sym_type, + STATE(1567), 2, + sym_attribute, + sym_subscript, + STATE(2068), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1742), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(957), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1377), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [48837] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1605), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67884,7 +66332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1724), 35, + ACTIONS(1603), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67896,13 +66344,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67920,16 +66368,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49543] = 3, + [48893] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 13, + ACTIONS(1605), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -67938,7 +66385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1718), 34, + ACTIONS(1603), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67950,6 +66397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, @@ -67973,11 +66421,82 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49599] = 3, + [48949] = 21, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(1736), 1, + sym_identifier, + ACTIONS(1738), 1, + anon_sym_LPAREN, + ACTIONS(1740), 1, + anon_sym_STAR, + ACTIONS(1746), 1, + anon_sym_LBRACK, + ACTIONS(1748), 1, + anon_sym_await, + STATE(984), 1, + sym_string, + STATE(1569), 1, + sym_list_splat_pattern, + STATE(1608), 1, + sym_primary_expression, + STATE(2053), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1728), 12, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(1744), 2, + anon_sym_match, + anon_sym_type, + STATE(1567), 2, + sym_attribute, + sym_subscript, + STATE(2068), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1742), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(971), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1377), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [49041] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1625), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -67990,7 +66509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1726), 35, + ACTIONS(1627), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68026,13 +66545,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49655] = 3, + [49097] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1746), 12, - sym__dedent, + ACTIONS(1625), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68043,7 +66562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1748), 35, + ACTIONS(1627), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68055,13 +66574,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -68079,13 +66598,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49711] = 3, + [49153] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1768), 12, - sym__dedent, + ACTIONS(1712), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68096,7 +66615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1766), 35, + ACTIONS(1710), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68108,13 +66627,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -68132,13 +66651,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49767] = 3, + [49209] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 12, - sym__dedent, + ACTIONS(1722), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68149,7 +66668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1698), 35, + ACTIONS(1724), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68185,11 +66704,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49823] = 3, + [49265] = 5, + ACTIONS(1435), 1, + anon_sym_finally, + STATE(721), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1768), 12, + ACTIONS(1750), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68202,7 +66725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1766), 35, + ACTIONS(1752), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68214,14 +66737,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -68238,11 +66758,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49879] = 3, + [49324] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1772), 12, + ACTIONS(1756), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68255,7 +66775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1770), 34, + ACTIONS(1754), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68290,17 +66810,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49934] = 5, - ACTIONS(1557), 1, + [49379] = 5, + ACTIONS(1429), 1, anon_sym_else, - STATE(751), 1, + STATE(762), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1776), 12, - sym__dedent, + ACTIONS(1758), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68311,7 +66831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1774), 32, + ACTIONS(1760), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68344,15 +66864,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49993] = 5, - ACTIONS(1561), 1, - anon_sym_finally, - STATE(759), 1, - sym_finally_clause, + [49438] = 5, + ACTIONS(1441), 1, + anon_sym_else, + STATE(792), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1780), 12, + ACTIONS(1764), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68365,7 +66885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1778), 32, + ACTIONS(1762), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68398,17 +66918,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50052] = 5, - ACTIONS(1501), 1, - anon_sym_else, - STATE(744), 1, - sym_else_clause, + [49497] = 5, + ACTIONS(1447), 1, + anon_sym_finally, + STATE(794), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1776), 12, + ACTIONS(1437), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68419,7 +66939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1774), 32, + ACTIONS(1439), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68452,15 +66972,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50111] = 5, - ACTIONS(1501), 1, - anon_sym_else, - STATE(739), 1, - sym_else_clause, + [49556] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1782), 12, + ACTIONS(1766), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68473,7 +66989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1784), 32, + ACTIONS(1768), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68485,6 +67001,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -68506,15 +67024,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50170] = 5, - ACTIONS(1505), 1, + [49611] = 5, + ACTIONS(1435), 1, anon_sym_finally, - STATE(748), 1, + STATE(745), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1780), 12, + ACTIONS(1770), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68527,7 +67045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1778), 32, + ACTIONS(1772), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68560,17 +67078,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50229] = 5, - ACTIONS(1557), 1, + [49670] = 5, + ACTIONS(1429), 1, anon_sym_else, - STATE(790), 1, + STATE(739), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1788), 12, - sym__dedent, + ACTIONS(1774), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68581,7 +67099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1786), 32, + ACTIONS(1776), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68614,17 +67132,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50288] = 5, - ACTIONS(1557), 1, - anon_sym_else, - STATE(782), 1, - sym_else_clause, + [49729] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1792), 12, - sym__dedent, + ACTIONS(1756), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68635,7 +67149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1790), 32, + ACTIONS(1754), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68647,6 +67161,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -68668,15 +67184,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50347] = 5, - ACTIONS(1505), 1, + [49784] = 5, + ACTIONS(1435), 1, anon_sym_finally, - STATE(787), 1, + STATE(771), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1794), 12, + ACTIONS(1437), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68689,7 +67205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1796), 32, + ACTIONS(1439), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68722,17 +67238,69 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50406] = 5, - ACTIONS(1501), 1, + [49843] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1780), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1778), 34, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, anon_sym_else, - STATE(765), 1, - sym_else_clause, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [49898] = 5, + ACTIONS(1447), 1, + anon_sym_finally, + STATE(810), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1792), 12, + ACTIONS(1750), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68743,7 +67311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1790), 32, + ACTIONS(1752), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68776,17 +67344,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50465] = 5, - ACTIONS(1501), 1, + [49957] = 5, + ACTIONS(1441), 1, anon_sym_else, - STATE(770), 1, + STATE(808), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1788), 12, + ACTIONS(1784), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68797,7 +67365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1786), 32, + ACTIONS(1782), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68830,11 +67398,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50524] = 3, + [50016] = 5, + ACTIONS(1429), 1, + anon_sym_else, + STATE(754), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1798), 12, + ACTIONS(1786), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68847,7 +67419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1800), 34, + ACTIONS(1788), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68859,8 +67431,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -68882,15 +67452,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50579] = 5, - ACTIONS(1557), 1, - anon_sym_else, - STATE(838), 1, - sym_else_clause, + [50075] = 5, + ACTIONS(1447), 1, + anon_sym_finally, + STATE(811), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1782), 12, + ACTIONS(1457), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68903,7 +67473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1784), 32, + ACTIONS(1455), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68936,15 +67506,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50638] = 5, - ACTIONS(1501), 1, + [50134] = 5, + ACTIONS(1429), 1, anon_sym_else, - STATE(777), 1, + STATE(716), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1802), 12, + ACTIONS(1784), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68957,7 +67527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1804), 32, + ACTIONS(1782), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68990,11 +67560,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50697] = 3, + [50193] = 5, + ACTIONS(1429), 1, + anon_sym_else, + STATE(757), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1772), 12, + ACTIONS(1790), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -69007,7 +67581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1770), 34, + ACTIONS(1792), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69019,8 +67593,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -69042,11 +67614,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50752] = 3, + [50252] = 5, + ACTIONS(1441), 1, + anon_sym_else, + STATE(823), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1798), 12, + ACTIONS(1774), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69059,7 +67635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1800), 34, + ACTIONS(1776), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69071,8 +67647,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -69094,17 +67668,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50807] = 5, - ACTIONS(1557), 1, - anon_sym_else, - STATE(805), 1, - sym_else_clause, + [50311] = 5, + ACTIONS(1435), 1, + anon_sym_finally, + STATE(722), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1802), 12, - sym__dedent, + ACTIONS(1457), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69115,7 +67689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1804), 32, + ACTIONS(1455), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69148,13 +67722,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50866] = 3, + [50370] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1806), 12, + ACTIONS(1766), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69165,7 +67739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1808), 34, + ACTIONS(1768), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69200,15 +67774,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50921] = 5, - ACTIONS(1557), 1, - anon_sym_else, - STATE(825), 1, - sym_else_clause, + [50425] = 5, + ACTIONS(1447), 1, + anon_sym_finally, + STATE(831), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1812), 12, + ACTIONS(1770), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69221,7 +67795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1810), 32, + ACTIONS(1772), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69254,17 +67828,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50980] = 5, - ACTIONS(1501), 1, + [50484] = 5, + ACTIONS(1441), 1, anon_sym_else, - STATE(736), 1, + STATE(727), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1812), 12, + ACTIONS(1790), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69275,7 +67849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1810), 32, + ACTIONS(1792), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69308,11 +67882,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51039] = 3, + [50543] = 5, + ACTIONS(1441), 1, + anon_sym_else, + STATE(829), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1806), 12, + ACTIONS(1786), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69325,7 +67903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1808), 34, + ACTIONS(1788), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69337,8 +67915,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -69360,17 +67936,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51094] = 5, - ACTIONS(1561), 1, - anon_sym_finally, - STATE(847), 1, - sym_finally_clause, + [50602] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1794), 12, - sym__dedent, + ACTIONS(1780), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69381,7 +67953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1796), 32, + ACTIONS(1778), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69393,6 +67965,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -69414,11 +67988,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51153] = 3, + [50657] = 5, + ACTIONS(1429), 1, + anon_sym_else, + STATE(713), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1814), 12, + ACTIONS(1764), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -69431,7 +68009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1816), 33, + ACTIONS(1762), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69448,7 +68026,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -69465,11 +68042,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51207] = 3, + [50716] = 5, + ACTIONS(1441), 1, + anon_sym_else, + STATE(719), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1814), 12, + ACTIONS(1758), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69482,7 +68063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1816), 33, + ACTIONS(1760), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69499,7 +68080,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -69516,13 +68096,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51261] = 3, + [50775] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1820), 12, - sym__dedent, + ACTIONS(1794), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69533,7 +68113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1818), 33, + ACTIONS(1796), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69567,62 +68147,62 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51315] = 22, - ACTIONS(311), 1, + [50829] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(1822), 1, + ACTIONS(1798), 1, sym_identifier, - ACTIONS(1824), 1, + ACTIONS(1800), 1, anon_sym_LPAREN, - ACTIONS(1826), 1, + ACTIONS(1802), 1, anon_sym_RPAREN, - ACTIONS(1828), 1, + ACTIONS(1804), 1, anon_sym_STAR, - ACTIONS(1834), 1, + ACTIONS(1810), 1, anon_sym_LBRACK, - ACTIONS(1836), 1, + ACTIONS(1812), 1, anon_sym_await, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1606), 1, - sym_list_splat_pattern, - STATE(1624), 1, + STATE(1581), 1, sym_primary_expression, - STATE(2424), 1, + STATE(1589), 1, + sym_list_splat_pattern, + STATE(2289), 1, sym_pattern, - STATE(2773), 1, + STATE(2615), 1, sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(1832), 2, + ACTIONS(1808), 2, anon_sym_match, anon_sym_type, - STATE(1607), 2, + STATE(1595), 2, sym_attribute, sym_subscript, - STATE(2597), 2, + STATE(2546), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1830), 3, + ACTIONS(1806), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -69637,62 +68217,215 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [51407] = 22, - ACTIONS(311), 1, + [50921] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1794), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(328), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1796), 33, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [50975] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1814), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1816), 33, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [51029] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1814), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1816), 33, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [51083] = 22, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, sym_string_start, - ACTIONS(1822), 1, + ACTIONS(1798), 1, sym_identifier, - ACTIONS(1824), 1, + ACTIONS(1800), 1, anon_sym_LPAREN, - ACTIONS(1828), 1, + ACTIONS(1804), 1, anon_sym_STAR, - ACTIONS(1834), 1, + ACTIONS(1810), 1, anon_sym_LBRACK, - ACTIONS(1836), 1, + ACTIONS(1812), 1, anon_sym_await, - ACTIONS(1838), 1, + ACTIONS(1818), 1, anon_sym_RPAREN, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1606), 1, - sym_list_splat_pattern, - STATE(1624), 1, + STATE(1581), 1, sym_primary_expression, - STATE(2424), 1, + STATE(1589), 1, + sym_list_splat_pattern, + STATE(2289), 1, sym_pattern, - STATE(2694), 1, + STATE(2709), 1, sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(1832), 2, + ACTIONS(1808), 2, anon_sym_match, anon_sym_type, - STATE(1607), 2, + STATE(1595), 2, sym_attribute, sym_subscript, - STATE(2597), 2, + STATE(2546), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1830), 3, + ACTIONS(1806), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -69707,7 +68440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [51499] = 3, + [51175] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -69724,7 +68457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1818), 33, + ACTIONS(1822), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69741,7 +68474,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -69758,13 +68490,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51553] = 3, + [51228] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1840), 12, + ACTIONS(1826), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69775,7 +68507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1842), 32, + ACTIONS(1824), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69808,11 +68540,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51606] = 3, + [51281] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1844), 12, + ACTIONS(1828), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -69825,7 +68557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1846), 32, + ACTIONS(1830), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69858,11 +68590,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51659] = 3, + [51334] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1848), 12, + ACTIONS(1832), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -69875,7 +68607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1850), 32, + ACTIONS(1834), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69908,13 +68640,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51712] = 3, + [51387] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1852), 12, + ACTIONS(1838), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69925,7 +68657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1854), 32, + ACTIONS(1836), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69958,11 +68690,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51765] = 3, + [51440] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1858), 12, + ACTIONS(1842), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69975,7 +68707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1856), 32, + ACTIONS(1840), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70008,11 +68740,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51818] = 3, + [51493] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1862), 12, + ACTIONS(1846), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70025,7 +68757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1860), 32, + ACTIONS(1844), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70058,11 +68790,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51871] = 3, + [51546] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1864), 12, + ACTIONS(1848), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70075,7 +68807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1866), 32, + ACTIONS(1850), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70108,11 +68840,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51924] = 3, + [51599] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1868), 12, + ACTIONS(1852), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70125,7 +68857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1870), 32, + ACTIONS(1854), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70158,11 +68890,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51977] = 3, + [51652] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1862), 12, + ACTIONS(1770), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70175,7 +68907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1860), 32, + ACTIONS(1772), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70208,11 +68940,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52030] = 3, + [51705] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1872), 12, + ACTIONS(1856), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70225,7 +68957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1874), 32, + ACTIONS(1858), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70258,11 +68990,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52083] = 3, + [51758] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1876), 12, + ACTIONS(1860), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70275,7 +69007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1878), 32, + ACTIONS(1862), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70308,11 +69040,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52136] = 3, + [51811] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1794), 12, + ACTIONS(1864), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70325,7 +69057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1796), 32, + ACTIONS(1866), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70358,79 +69090,161 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52189] = 21, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, + [51864] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1868), 12, sym_string_start, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1880), 1, - sym_identifier, - ACTIONS(1882), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1888), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1890), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1870), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1598), 1, - sym_list_splat_pattern, - STATE(1622), 1, - sym_primary_expression, - STATE(2279), 1, - sym_pattern, - STATE(2795), 1, - sym_pattern_list, + sym_true, + sym_false, + sym_none, + [51917] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(1874), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1886), 2, + ACTIONS(1872), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, anon_sym_type, - STATE(1610), 2, - sym_attribute, - sym_subscript, - STATE(1650), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 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, + [51970] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1876), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1884), 3, + sym_ellipsis, + sym_float, + ACTIONS(1878), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(324), 4, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - STATE(1311), 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, - [52278] = 3, + [52023] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1892), 12, + ACTIONS(1880), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70443,7 +69257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1894), 32, + ACTIONS(1882), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70476,11 +69290,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52331] = 3, + [52076] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1896), 12, + ACTIONS(1884), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70493,7 +69307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1898), 32, + ACTIONS(1886), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70526,13 +69340,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52384] = 3, + [52129] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1876), 12, - sym__dedent, + ACTIONS(1888), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70543,7 +69357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1878), 32, + ACTIONS(1890), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70576,13 +69390,149 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52437] = 3, + [52182] = 21, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(1798), 1, + sym_identifier, + ACTIONS(1800), 1, + anon_sym_LPAREN, + ACTIONS(1804), 1, + anon_sym_STAR, + ACTIONS(1810), 1, + anon_sym_LBRACK, + ACTIONS(1812), 1, + anon_sym_await, + ACTIONS(1892), 1, + anon_sym_RPAREN, + STATE(984), 1, + sym_string, + STATE(1581), 1, + sym_primary_expression, + STATE(1589), 1, + sym_list_splat_pattern, + STATE(2542), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1892), 12, - sym__dedent, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(1808), 2, + anon_sym_match, + anon_sym_type, + STATE(1595), 2, + sym_attribute, + sym_subscript, + STATE(2546), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1806), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1377), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [52271] = 21, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(1421), 1, + anon_sym_STAR, + ACTIONS(1894), 1, + sym_identifier, + ACTIONS(1896), 1, + anon_sym_LPAREN, + ACTIONS(1902), 1, + anon_sym_LBRACK, + ACTIONS(1904), 1, + anon_sym_await, + STATE(984), 1, + sym_string, + STATE(1588), 1, + sym_primary_expression, + STATE(1604), 1, + sym_list_splat_pattern, + STATE(2400), 1, + sym_pattern, + STATE(2587), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(1900), 2, + anon_sym_match, + anon_sym_type, + STATE(1611), 2, + sym_attribute, + sym_subscript, + STATE(1626), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1898), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1377), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [52360] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1906), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70593,7 +69543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1894), 32, + ACTIONS(1908), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70626,11 +69576,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52490] = 3, + [52413] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1900), 12, + ACTIONS(1910), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70643,7 +69593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1902), 32, + ACTIONS(1912), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70676,11 +69626,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52543] = 3, + [52466] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1904), 12, + ACTIONS(1914), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70693,7 +69643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1906), 32, + ACTIONS(1916), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70726,11 +69676,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52596] = 3, + [52519] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1908), 12, + ACTIONS(1918), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70743,7 +69693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1910), 32, + ACTIONS(1920), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70776,11 +69726,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52649] = 3, + [52572] = 21, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(1421), 1, + anon_sym_STAR, + ACTIONS(1894), 1, + sym_identifier, + ACTIONS(1896), 1, + anon_sym_LPAREN, + ACTIONS(1902), 1, + anon_sym_LBRACK, + ACTIONS(1904), 1, + anon_sym_await, + STATE(984), 1, + sym_string, + STATE(1588), 1, + sym_primary_expression, + STATE(1604), 1, + sym_list_splat_pattern, + STATE(2410), 1, + sym_pattern, + STATE(2613), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1912), 12, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(1900), 2, + anon_sym_match, + anon_sym_type, + STATE(1611), 2, + sym_attribute, + sym_subscript, + STATE(1626), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1898), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1377), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [52661] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1922), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70793,7 +69811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1914), 32, + ACTIONS(1924), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70826,13 +69844,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52702] = 3, + [52714] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1896), 12, - sym__dedent, + ACTIONS(1926), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70843,7 +69861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1898), 32, + ACTIONS(1928), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70876,11 +69894,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52755] = 3, + [52767] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1916), 12, + ACTIONS(1930), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70893,7 +69911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1918), 32, + ACTIONS(1932), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70926,11 +69944,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52808] = 3, + [52820] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1780), 12, + ACTIONS(1936), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70943,7 +69961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1778), 32, + ACTIONS(1934), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70976,11 +69994,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52861] = 3, + [52873] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1922), 12, + ACTIONS(1940), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70993,7 +70011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1920), 32, + ACTIONS(1938), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71026,11 +70044,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52914] = 3, + [52926] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1497), 12, + ACTIONS(1942), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71043,7 +70061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1499), 32, + ACTIONS(1944), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71076,13 +70094,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52967] = 3, + [52979] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1926), 12, - sym__dedent, + ACTIONS(1946), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71093,7 +70111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1924), 32, + ACTIONS(1948), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71126,13 +70144,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53020] = 3, + [53032] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1930), 12, - sym__dedent, + ACTIONS(1950), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71143,7 +70161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1928), 32, + ACTIONS(1952), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71176,13 +70194,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53073] = 3, + [53085] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1900), 12, - sym__dedent, + ACTIONS(1954), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71193,7 +70211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1902), 32, + ACTIONS(1956), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71226,13 +70244,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53126] = 3, + [53138] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1904), 12, - sym__dedent, + ACTIONS(1958), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71243,7 +70261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1906), 32, + ACTIONS(1960), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71276,13 +70294,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53179] = 3, + [53191] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1908), 12, - sym__dedent, + ACTIONS(1962), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71293,7 +70311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1910), 32, + ACTIONS(1964), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71326,13 +70344,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53232] = 3, + [53244] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1912), 12, - sym__dedent, + ACTIONS(1826), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71343,7 +70361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1914), 32, + ACTIONS(1824), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71376,13 +70394,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53285] = 3, + [53297] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1934), 12, - sym__dedent, + ACTIONS(1842), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71393,7 +70411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1932), 32, + ACTIONS(1840), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71426,13 +70444,81 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53338] = 3, + [53350] = 21, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(1421), 1, + anon_sym_STAR, + ACTIONS(1894), 1, + sym_identifier, + ACTIONS(1896), 1, + anon_sym_LPAREN, + ACTIONS(1902), 1, + anon_sym_LBRACK, + ACTIONS(1904), 1, + anon_sym_await, + STATE(984), 1, + sym_string, + STATE(1588), 1, + sym_primary_expression, + STATE(1604), 1, + sym_list_splat_pattern, + STATE(2478), 1, + sym_pattern, + STATE(2772), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1938), 12, - sym__dedent, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(1900), 2, + anon_sym_match, + anon_sym_type, + STATE(1611), 2, + sym_attribute, + sym_subscript, + STATE(1626), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1898), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1377), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [53439] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1437), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71443,7 +70529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1936), 32, + ACTIONS(1439), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71476,13 +70562,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53391] = 3, + [53492] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1916), 12, - sym__dedent, + ACTIONS(1966), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71493,7 +70579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1918), 32, + ACTIONS(1968), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71526,11 +70612,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53444] = 3, + [53545] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1940), 12, + ACTIONS(1970), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71543,7 +70629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1942), 32, + ACTIONS(1972), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71576,13 +70662,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53497] = 3, + [53598] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1844), 12, - sym__dedent, + ACTIONS(1838), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71593,7 +70679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1846), 32, + ACTIONS(1836), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71626,11 +70712,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53550] = 3, + [53651] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1944), 12, + ACTIONS(1874), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71643,7 +70729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1946), 32, + ACTIONS(1872), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71676,11 +70762,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53603] = 3, + [53704] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1948), 12, + ACTIONS(1974), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71693,7 +70779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1950), 32, + ACTIONS(1976), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71726,79 +70812,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53656] = 21, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(1822), 1, - sym_identifier, - ACTIONS(1824), 1, - anon_sym_LPAREN, - ACTIONS(1828), 1, - anon_sym_STAR, - ACTIONS(1834), 1, - anon_sym_LBRACK, - ACTIONS(1836), 1, - anon_sym_await, - ACTIONS(1952), 1, - anon_sym_RPAREN, - STATE(1025), 1, - sym_string, - STATE(1606), 1, - sym_list_splat_pattern, - STATE(1624), 1, - sym_primary_expression, - STATE(2611), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(1832), 2, - anon_sym_match, - anon_sym_type, - STATE(1607), 2, - sym_attribute, - sym_subscript, - STATE(2597), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1830), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1311), 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, - [53745] = 3, + [53757] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1954), 12, + ACTIONS(1978), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71811,7 +70829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1956), 32, + ACTIONS(1980), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71844,79 +70862,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53798] = 21, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1880), 1, - sym_identifier, - ACTIONS(1882), 1, - anon_sym_LPAREN, - ACTIONS(1888), 1, - anon_sym_LBRACK, - ACTIONS(1890), 1, - anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1598), 1, - sym_list_splat_pattern, - STATE(1622), 1, - sym_primary_expression, - STATE(2293), 1, - sym_pattern, - STATE(2783), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(1886), 2, - anon_sym_match, - anon_sym_type, - STATE(1610), 2, - sym_attribute, - sym_subscript, - STATE(1650), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1884), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1311), 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, - [53887] = 3, + [53810] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1958), 12, + ACTIONS(1982), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71929,7 +70879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1960), 32, + ACTIONS(1984), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71962,11 +70912,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53940] = 3, + [53863] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1962), 12, + ACTIONS(1986), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71979,7 +70929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1964), 32, + ACTIONS(1988), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72012,13 +70962,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53993] = 3, + [53916] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1848), 12, - sym__dedent, + ACTIONS(1846), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72029,7 +70979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1850), 32, + ACTIONS(1844), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72062,13 +71012,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54046] = 3, + [53969] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1852), 12, - sym__dedent, + ACTIONS(1936), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72079,7 +71029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1854), 32, + ACTIONS(1934), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72112,11 +71062,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54099] = 3, + [54022] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1966), 12, + ACTIONS(1940), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72129,7 +71079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1968), 32, + ACTIONS(1938), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72162,13 +71112,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54152] = 3, + [54075] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1970), 12, + ACTIONS(1992), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72179,7 +71129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1972), 32, + ACTIONS(1990), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72212,11 +71162,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54205] = 3, + [54128] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1974), 12, + ACTIONS(1992), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72229,7 +71179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1976), 32, + ACTIONS(1990), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72262,11 +71212,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54258] = 3, + [54181] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1978), 12, + ACTIONS(1994), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72279,7 +71229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1980), 32, + ACTIONS(1996), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72312,11 +71262,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54311] = 3, + [54234] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1984), 12, + ACTIONS(1994), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -72329,7 +71279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1982), 32, + ACTIONS(1996), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72362,11 +71312,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54364] = 3, + [54287] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1986), 12, + ACTIONS(1998), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72379,7 +71329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1988), 32, + ACTIONS(2000), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72412,161 +71362,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54417] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1940), 12, - sym__dedent, + [54340] = 21, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, sym_string_start, - anon_sym_LPAREN, + ACTIONS(1421), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1942), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(1894), 1, sym_identifier, + ACTIONS(1896), 1, + anon_sym_LPAREN, + ACTIONS(1902), 1, + anon_sym_LBRACK, + ACTIONS(1904), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [54470] = 3, + ACTIONS(2002), 1, + anon_sym_in, + STATE(984), 1, + sym_string, + STATE(1588), 1, + sym_primary_expression, + STATE(1604), 1, + sym_list_splat_pattern, + STATE(1636), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1990), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(1992), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, + ACTIONS(1900), 2, anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [54523] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1994), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + STATE(1611), 2, + sym_attribute, + sym_subscript, + STATE(1626), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(304), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1996), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1898), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(312), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [54576] = 3, + STATE(1377), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [54429] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1998), 12, + ACTIONS(1750), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72579,7 +71447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2000), 32, + ACTIONS(1752), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72612,63 +71480,81 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54629] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1944), 12, - sym__dedent, + [54482] = 21, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, sym_string_start, - anon_sym_LPAREN, + ACTIONS(1421), 1, anon_sym_STAR, + ACTIONS(1894), 1, + sym_identifier, + ACTIONS(1896), 1, + anon_sym_LPAREN, + ACTIONS(1902), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1904), 1, + anon_sym_await, + STATE(984), 1, + sym_string, + STATE(1588), 1, + sym_primary_expression, + STATE(1604), 1, + sym_list_splat_pattern, + STATE(2477), 1, + sym_pattern, + STATE(2768), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(1900), 2, + anon_sym_match, + anon_sym_type, + STATE(1611), 2, + sym_attribute, + sym_subscript, + STATE(1626), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(304), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1946), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1898), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(312), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [54682] = 3, + STATE(1377), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [54571] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2002), 12, + ACTIONS(1998), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72679,7 +71565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2004), 32, + ACTIONS(2000), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72712,11 +71598,147 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54735] = 3, + [54624] = 21, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(1421), 1, + anon_sym_STAR, + ACTIONS(1894), 1, + sym_identifier, + ACTIONS(1896), 1, + anon_sym_LPAREN, + ACTIONS(1902), 1, + anon_sym_LBRACK, + ACTIONS(1904), 1, + anon_sym_await, + STATE(984), 1, + sym_string, + STATE(1588), 1, + sym_primary_expression, + STATE(1604), 1, + sym_list_splat_pattern, + STATE(2437), 1, + sym_pattern, + STATE(2695), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2006), 12, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(1900), 2, + anon_sym_match, + anon_sym_type, + STATE(1611), 2, + sym_attribute, + sym_subscript, + STATE(1626), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1898), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1377), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [54713] = 21, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(2004), 1, + sym_identifier, + ACTIONS(2006), 1, + anon_sym_LPAREN, + ACTIONS(2008), 1, + anon_sym_STAR, + ACTIONS(2014), 1, + anon_sym_LBRACK, + ACTIONS(2016), 1, + anon_sym_RBRACK, + ACTIONS(2018), 1, + anon_sym_await, + STATE(984), 1, + sym_string, + STATE(1586), 1, + sym_list_splat_pattern, + STATE(1607), 1, + sym_primary_expression, + STATE(2565), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(2012), 2, + anon_sym_match, + anon_sym_type, + STATE(1587), 2, + sym_attribute, + sym_subscript, + STATE(2487), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(2010), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1377), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [54802] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2020), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72729,7 +71751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2008), 32, + ACTIONS(2022), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72762,13 +71784,81 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54788] = 3, + [54855] = 21, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(1421), 1, + anon_sym_STAR, + ACTIONS(1894), 1, + sym_identifier, + ACTIONS(1896), 1, + anon_sym_LPAREN, + ACTIONS(1902), 1, + anon_sym_LBRACK, + ACTIONS(1904), 1, + anon_sym_await, + ACTIONS(2024), 1, + anon_sym_in, + STATE(984), 1, + sym_string, + STATE(1588), 1, + sym_primary_expression, + STATE(1604), 1, + sym_list_splat_pattern, + STATE(1636), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1948), 12, - sym__dedent, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(1900), 2, + anon_sym_match, + anon_sym_type, + STATE(1611), 2, + sym_attribute, + sym_subscript, + STATE(1626), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1898), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1377), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [54944] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2026), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72779,7 +71869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1950), 32, + ACTIONS(2028), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72812,13 +71902,81 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54841] = 3, + [54997] = 21, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(1892), 1, + anon_sym_RBRACK, + ACTIONS(2004), 1, + sym_identifier, + ACTIONS(2006), 1, + anon_sym_LPAREN, + ACTIONS(2008), 1, + anon_sym_STAR, + ACTIONS(2014), 1, + anon_sym_LBRACK, + ACTIONS(2018), 1, + anon_sym_await, + STATE(984), 1, + sym_string, + STATE(1586), 1, + sym_list_splat_pattern, + STATE(1607), 1, + sym_primary_expression, + STATE(2565), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1954), 12, - sym__dedent, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(2012), 2, + anon_sym_match, + anon_sym_type, + STATE(1587), 2, + sym_attribute, + sym_subscript, + STATE(2487), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(2010), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1377), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [55086] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2030), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72829,7 +71987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1956), 32, + ACTIONS(2032), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72862,13 +72020,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54894] = 3, + [55139] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2010), 12, + ACTIONS(1950), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72879,7 +72037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2012), 32, + ACTIONS(1952), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72912,13 +72070,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54947] = 3, + [55192] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1553), 12, + ACTIONS(1958), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72929,7 +72087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1555), 32, + ACTIONS(1960), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72962,11 +72120,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55000] = 3, + [55245] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2016), 12, + ACTIONS(1437), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -72979,7 +72137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2014), 32, + ACTIONS(1439), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73012,11 +72170,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55053] = 3, + [55298] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2018), 12, + ACTIONS(2034), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73029,7 +72187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2020), 32, + ACTIONS(2036), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73062,79 +72220,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55106] = 21, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1880), 1, - sym_identifier, - ACTIONS(1882), 1, - anon_sym_LPAREN, - ACTIONS(1888), 1, - anon_sym_LBRACK, - ACTIONS(1890), 1, - anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1598), 1, - sym_list_splat_pattern, - STATE(1622), 1, - sym_primary_expression, - STATE(2511), 1, - sym_pattern, - STATE(2804), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(1886), 2, - anon_sym_match, - anon_sym_type, - STATE(1610), 2, - sym_attribute, - sym_subscript, - STATE(1650), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1884), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1311), 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, - [55195] = 3, + [55351] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2024), 12, + ACTIONS(1982), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73147,7 +72237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2022), 32, + ACTIONS(1984), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73180,11 +72270,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55248] = 3, + [55404] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1958), 12, + ACTIONS(1986), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73197,7 +72287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1960), 32, + ACTIONS(1988), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73230,11 +72320,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55301] = 3, + [55457] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1962), 12, + ACTIONS(2020), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73247,7 +72337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1964), 32, + ACTIONS(2022), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73280,11 +72370,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55354] = 3, + [55510] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2028), 12, + ACTIONS(2026), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73297,7 +72387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2026), 32, + ACTIONS(2028), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73330,13 +72420,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55407] = 3, + [55563] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(2030), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73380,11 +72470,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55460] = 3, + [55616] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2036), 12, + ACTIONS(2034), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73397,7 +72487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2034), 32, + ACTIONS(2036), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73430,13 +72520,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55513] = 3, + [55669] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1984), 12, + ACTIONS(2040), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73447,7 +72537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1982), 32, + ACTIONS(2038), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73480,11 +72570,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55566] = 3, + [55722] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2040), 12, + ACTIONS(1820), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73497,7 +72587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2038), 32, + ACTIONS(1822), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73530,60 +72620,60 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55619] = 21, - ACTIONS(311), 1, + [55775] = 21, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2042), 1, + ACTIONS(1421), 1, + anon_sym_STAR, + ACTIONS(1894), 1, sym_identifier, - ACTIONS(2044), 1, + ACTIONS(1896), 1, anon_sym_LPAREN, - ACTIONS(2046), 1, - anon_sym_STAR, - ACTIONS(2052), 1, + ACTIONS(1902), 1, anon_sym_LBRACK, - ACTIONS(2054), 1, - anon_sym_RBRACK, - ACTIONS(2056), 1, + ACTIONS(1904), 1, anon_sym_await, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1599), 1, - sym_list_splat_pattern, - STATE(1631), 1, + STATE(1588), 1, sym_primary_expression, - STATE(2612), 1, + STATE(1604), 1, + sym_list_splat_pattern, + STATE(2436), 1, sym_pattern, + STATE(2674), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(2050), 2, + ACTIONS(1900), 2, anon_sym_match, anon_sym_type, - STATE(1600), 2, + STATE(1611), 2, sym_attribute, sym_subscript, - STATE(2596), 2, + STATE(1626), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2048), 3, + ACTIONS(1898), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -73598,11 +72688,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [55708] = 3, + [55864] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1970), 12, + ACTIONS(1750), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73615,7 +72705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1972), 32, + ACTIONS(1752), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73648,11 +72738,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55761] = 3, + [55917] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1974), 12, + ACTIONS(1457), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73665,7 +72755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1976), 32, + ACTIONS(1455), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73698,11 +72788,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55814] = 3, + [55970] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2058), 12, + ACTIONS(2040), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73715,7 +72805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2060), 32, + ACTIONS(2038), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73748,81 +72838,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55867] = 21, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1880), 1, - sym_identifier, - ACTIONS(1882), 1, - anon_sym_LPAREN, - ACTIONS(1888), 1, - anon_sym_LBRACK, - ACTIONS(1890), 1, - anon_sym_await, - ACTIONS(2062), 1, - anon_sym_in, - STATE(1025), 1, - sym_string, - STATE(1598), 1, - sym_list_splat_pattern, - STATE(1622), 1, - sym_primary_expression, - STATE(1640), 1, - sym_pattern, + [56023] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(1886), 2, - anon_sym_match, - anon_sym_type, - STATE(1610), 2, - sym_attribute, - sym_subscript, - STATE(1650), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1884), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1311), 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, - [55956] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1926), 12, + ACTIONS(2044), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73833,7 +72855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1924), 32, + ACTIONS(2042), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73866,79 +72888,61 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56009] = 21, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, + [56076] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1828), 12, + sym__dedent, sym_string_start, - ACTIONS(1952), 1, - anon_sym_RBRACK, - ACTIONS(2042), 1, - sym_identifier, - ACTIONS(2044), 1, anon_sym_LPAREN, - ACTIONS(2046), 1, anon_sym_STAR, - ACTIONS(2052), 1, anon_sym_LBRACK, - ACTIONS(2056), 1, - anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1599), 1, - sym_list_splat_pattern, - STATE(1631), 1, - sym_primary_expression, - STATE(2612), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2050), 2, - anon_sym_match, - anon_sym_type, - STATE(1600), 2, - sym_attribute, - sym_subscript, - STATE(2596), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2048), 3, + sym_ellipsis, + sym_float, + ACTIONS(1830), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(324), 4, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - STATE(1311), 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, - [56098] = 3, + [56129] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1966), 12, + ACTIONS(1864), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73951,7 +72955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1968), 32, + ACTIONS(1866), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73984,11 +72988,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56151] = 3, + [56182] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1840), 12, + ACTIONS(1868), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74001,7 +73005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1842), 32, + ACTIONS(1870), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74034,13 +73038,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56204] = 3, + [56235] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2040), 12, + ACTIONS(1962), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74051,7 +73055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2038), 32, + ACTIONS(1964), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74084,11 +73088,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56257] = 3, + [56288] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1553), 12, + ACTIONS(2048), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74101,7 +73105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1555), 32, + ACTIONS(2046), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74134,11 +73138,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56310] = 3, + [56341] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2030), 12, + ACTIONS(2052), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74151,7 +73155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2032), 32, + ACTIONS(2050), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74184,11 +73188,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56363] = 3, + [56394] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2058), 12, + ACTIONS(1856), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74201,7 +73205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2060), 32, + ACTIONS(1858), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74234,13 +73238,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56416] = 3, + [56447] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1780), 12, + ACTIONS(1910), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74251,7 +73255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1778), 32, + ACTIONS(1912), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74284,11 +73288,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56469] = 3, + [56500] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1986), 12, + ACTIONS(1926), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74301,7 +73305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1988), 32, + ACTIONS(1928), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74334,13 +73338,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56522] = 3, + [56553] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2016), 12, + ACTIONS(1930), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74351,7 +73355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2014), 32, + ACTIONS(1932), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74384,11 +73388,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56575] = 3, + [56606] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1994), 12, + ACTIONS(1832), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74401,7 +73405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1996), 32, + ACTIONS(1834), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74434,11 +73438,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56628] = 3, + [56659] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2010), 12, + ACTIONS(1848), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74451,7 +73455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2012), 32, + ACTIONS(1850), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74484,11 +73488,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56681] = 3, + [56712] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2018), 12, + ACTIONS(1852), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74501,7 +73505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2020), 32, + ACTIONS(1854), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74534,13 +73538,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56734] = 3, + [56765] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2064), 12, + ACTIONS(1770), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74551,7 +73555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2066), 32, + ACTIONS(1772), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74584,11 +73588,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56787] = 3, + [56818] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2070), 12, + ACTIONS(1860), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74601,7 +73605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2068), 32, + ACTIONS(1862), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74634,11 +73638,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56840] = 3, + [56871] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1864), 12, + ACTIONS(1876), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74651,7 +73655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1866), 32, + ACTIONS(1878), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74684,13 +73688,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56893] = 3, + [56924] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1858), 12, + ACTIONS(1880), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74701,7 +73705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1856), 32, + ACTIONS(1882), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74734,13 +73738,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56946] = 3, + [56977] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1934), 12, + ACTIONS(1884), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74751,7 +73755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1932), 32, + ACTIONS(1886), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74784,81 +73788,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56999] = 21, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1880), 1, - sym_identifier, - ACTIONS(1882), 1, - anon_sym_LPAREN, - ACTIONS(1888), 1, - anon_sym_LBRACK, - ACTIONS(1890), 1, - anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1598), 1, - sym_list_splat_pattern, - STATE(1622), 1, - sym_primary_expression, - STATE(2262), 1, - sym_pattern, - STATE(2714), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(1886), 2, - anon_sym_match, - anon_sym_type, - STATE(1610), 2, - sym_attribute, - sym_subscript, - STATE(1650), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1884), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1311), 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, - [57088] = 3, + [57030] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2036), 12, + ACTIONS(1888), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74869,7 +73805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2034), 32, + ACTIONS(1890), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74902,13 +73838,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57141] = 3, + [57083] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1978), 12, - sym__dedent, + ACTIONS(2048), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74919,7 +73855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1980), 32, + ACTIONS(2046), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74952,13 +73888,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57194] = 3, + [57136] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2070), 12, + ACTIONS(1906), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74969,7 +73905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2068), 32, + ACTIONS(1908), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75002,13 +73938,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57247] = 3, + [57189] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1868), 12, - sym__dedent, + ACTIONS(2044), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -75019,7 +73955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1870), 32, + ACTIONS(2042), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75052,13 +73988,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57300] = 3, + [57242] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1938), 12, + ACTIONS(1914), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -75069,7 +74005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1936), 32, + ACTIONS(1916), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75102,13 +74038,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57353] = 3, + [57295] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1998), 12, - sym__dedent, + ACTIONS(2052), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -75119,7 +74055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2000), 32, + ACTIONS(2050), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75152,11 +74088,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57406] = 3, + [57348] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2006), 12, + ACTIONS(1918), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -75169,7 +74105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2008), 32, + ACTIONS(1920), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75202,11 +74138,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57459] = 3, + [57401] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1794), 12, + ACTIONS(1922), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -75219,7 +74155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1796), 32, + ACTIONS(1924), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75252,81 +74188,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57512] = 21, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(1822), 1, - sym_identifier, - ACTIONS(1824), 1, - anon_sym_LPAREN, - ACTIONS(1828), 1, - anon_sym_STAR, - ACTIONS(1834), 1, - anon_sym_LBRACK, - ACTIONS(1836), 1, - anon_sym_await, - ACTIONS(2054), 1, - anon_sym_RPAREN, - STATE(1025), 1, - sym_string, - STATE(1606), 1, - sym_list_splat_pattern, - STATE(1624), 1, - sym_primary_expression, - STATE(2611), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(1832), 2, - anon_sym_match, - anon_sym_type, - STATE(1607), 2, - sym_attribute, - sym_subscript, - STATE(2597), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1830), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1311), 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, - [57601] = 3, + [57454] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1872), 12, - sym__dedent, + ACTIONS(1457), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -75337,7 +74205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1874), 32, + ACTIONS(1455), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75370,11 +74238,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57654] = 3, + [57507] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2064), 12, + ACTIONS(1974), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -75387,7 +74255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2066), 32, + ACTIONS(1976), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75420,128 +74288,60 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57707] = 21, - ACTIONS(311), 1, + [57560] = 21, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(1443), 1, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(1880), 1, + ACTIONS(1894), 1, sym_identifier, - ACTIONS(1882), 1, + ACTIONS(1896), 1, anon_sym_LPAREN, - ACTIONS(1888), 1, + ACTIONS(1902), 1, anon_sym_LBRACK, - ACTIONS(1890), 1, + ACTIONS(1904), 1, anon_sym_await, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1598), 1, - sym_list_splat_pattern, - STATE(1622), 1, + STATE(1588), 1, sym_primary_expression, - STATE(2469), 1, - sym_pattern, - STATE(2700), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(1886), 2, - anon_sym_match, - anon_sym_type, - STATE(1610), 2, - sym_attribute, - sym_subscript, - STATE(1650), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1884), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1311), 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, - [57796] = 21, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1880), 1, - sym_identifier, - ACTIONS(1882), 1, - anon_sym_LPAREN, - ACTIONS(1888), 1, - anon_sym_LBRACK, - ACTIONS(1890), 1, - anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1598), 1, + STATE(1604), 1, sym_list_splat_pattern, - STATE(1622), 1, - sym_primary_expression, - STATE(2498), 1, + STATE(2439), 1, sym_pattern, - STATE(2775), 1, + STATE(2669), 1, sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(1886), 2, + ACTIONS(1900), 2, anon_sym_match, anon_sym_type, - STATE(1610), 2, + STATE(1611), 2, sym_attribute, sym_subscript, - STATE(1650), 2, + STATE(1626), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1884), 3, + ACTIONS(1898), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75556,60 +74356,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [57885] = 21, - ACTIONS(311), 1, + [57649] = 21, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(1443), 1, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(1880), 1, + ACTIONS(1894), 1, sym_identifier, - ACTIONS(1882), 1, + ACTIONS(1896), 1, anon_sym_LPAREN, - ACTIONS(1888), 1, + ACTIONS(1902), 1, anon_sym_LBRACK, - ACTIONS(1890), 1, + ACTIONS(1904), 1, anon_sym_await, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1598), 1, - sym_list_splat_pattern, - STATE(1622), 1, + STATE(1588), 1, sym_primary_expression, - STATE(2471), 1, + STATE(1604), 1, + sym_list_splat_pattern, + STATE(2441), 1, sym_pattern, - STATE(2709), 1, + STATE(2679), 1, sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(1886), 2, + ACTIONS(1900), 2, anon_sym_match, anon_sym_type, - STATE(1610), 2, + STATE(1611), 2, sym_attribute, sym_subscript, - STATE(1650), 2, + STATE(1626), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1884), 3, + ACTIONS(1898), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75624,61 +74424,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [57974] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1922), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1920), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [58027] = 3, + [57738] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1990), 12, + ACTIONS(1978), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -75691,7 +74441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1992), 32, + ACTIONS(1980), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75724,13 +74474,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [58080] = 3, + [57791] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1930), 12, + ACTIONS(1966), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -75741,7 +74491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1928), 32, + ACTIONS(1968), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75774,11 +74524,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [58133] = 3, + [57844] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1497), 12, + ACTIONS(1942), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -75791,7 +74541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1499), 32, + ACTIONS(1944), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75824,11 +74574,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [58186] = 3, + [57897] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2002), 12, + ACTIONS(1946), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -75841,7 +74591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2004), 32, + ACTIONS(1948), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75874,13 +74624,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [58239] = 3, + [57950] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2024), 12, + ACTIONS(1954), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -75891,7 +74641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2022), 32, + ACTIONS(1956), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75924,13 +74674,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [58292] = 3, + [58003] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2028), 12, + ACTIONS(1970), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -75941,7 +74691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2026), 32, + ACTIONS(1972), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75974,196 +74724,60 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [58345] = 21, - ACTIONS(311), 1, + [58056] = 21, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1880), 1, - sym_identifier, - ACTIONS(1882), 1, - anon_sym_LPAREN, - ACTIONS(1888), 1, - anon_sym_LBRACK, - ACTIONS(1890), 1, - anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1598), 1, - sym_list_splat_pattern, - STATE(1622), 1, - sym_primary_expression, - STATE(2483), 1, - sym_pattern, - STATE(2734), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(1886), 2, - anon_sym_match, - anon_sym_type, - STATE(1610), 2, - sym_attribute, - sym_subscript, - STATE(1650), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1884), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1311), 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, - [58434] = 21, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(1443), 1, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(1880), 1, + ACTIONS(1894), 1, sym_identifier, - ACTIONS(1882), 1, + ACTIONS(1896), 1, anon_sym_LPAREN, - ACTIONS(1888), 1, + ACTIONS(1902), 1, anon_sym_LBRACK, - ACTIONS(1890), 1, + ACTIONS(1904), 1, anon_sym_await, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1598), 1, - sym_list_splat_pattern, - STATE(1622), 1, + STATE(1588), 1, sym_primary_expression, - STATE(2484), 1, - sym_pattern, - STATE(2736), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(1886), 2, - anon_sym_match, - anon_sym_type, - STATE(1610), 2, - sym_attribute, - sym_subscript, - STATE(1650), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1884), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1311), 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, - [58523] = 21, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1880), 1, - sym_identifier, - ACTIONS(1882), 1, - anon_sym_LPAREN, - ACTIONS(1888), 1, - anon_sym_LBRACK, - ACTIONS(1890), 1, - anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1598), 1, + STATE(1604), 1, sym_list_splat_pattern, - STATE(1622), 1, - sym_primary_expression, - STATE(2510), 1, + STATE(2453), 1, sym_pattern, - STATE(2800), 1, + STATE(2703), 1, sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(1886), 2, + ACTIONS(1900), 2, anon_sym_match, anon_sym_type, - STATE(1610), 2, + STATE(1611), 2, sym_attribute, sym_subscript, - STATE(1650), 2, + STATE(1626), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1884), 3, + ACTIONS(1898), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76178,126 +74792,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58612] = 21, - ACTIONS(311), 1, + [58145] = 21, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(1443), 1, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(1880), 1, + ACTIONS(1894), 1, sym_identifier, - ACTIONS(1882), 1, + ACTIONS(1896), 1, anon_sym_LPAREN, - ACTIONS(1888), 1, + ACTIONS(1902), 1, anon_sym_LBRACK, - ACTIONS(1890), 1, + ACTIONS(1904), 1, anon_sym_await, - ACTIONS(2072), 1, - anon_sym_in, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1598), 1, - sym_list_splat_pattern, - STATE(1622), 1, + STATE(1588), 1, sym_primary_expression, - STATE(1640), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(1886), 2, - anon_sym_match, - anon_sym_type, - STATE(1610), 2, - sym_attribute, - sym_subscript, - STATE(1650), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1884), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1311), 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, - [58701] = 20, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(1125), 1, - sym_identifier, - ACTIONS(1127), 1, - anon_sym_LPAREN, - ACTIONS(1135), 1, - anon_sym_LBRACK, - ACTIONS(1137), 1, - anon_sym_await, - ACTIONS(2074), 1, - anon_sym_STAR, - STATE(1025), 1, - sym_string, - STATE(1489), 1, + STATE(1604), 1, sym_list_splat_pattern, - STATE(1625), 1, - sym_primary_expression, - STATE(1640), 1, + STATE(2454), 1, sym_pattern, + STATE(2705), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(1133), 2, + ACTIONS(1900), 2, anon_sym_match, anon_sym_type, - STATE(1491), 2, + STATE(1611), 2, sym_attribute, sym_subscript, - STATE(1650), 2, + STATE(1626), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1131), 3, + ACTIONS(1898), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76312,124 +74860,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58787] = 20, - ACTIONS(311), 1, + [58234] = 21, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(1822), 1, + ACTIONS(1798), 1, sym_identifier, - ACTIONS(1824), 1, + ACTIONS(1800), 1, anon_sym_LPAREN, - ACTIONS(1828), 1, + ACTIONS(1804), 1, anon_sym_STAR, - ACTIONS(1834), 1, + ACTIONS(1810), 1, anon_sym_LBRACK, - ACTIONS(1836), 1, + ACTIONS(1812), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(2016), 1, + anon_sym_RPAREN, + STATE(984), 1, sym_string, - STATE(1606), 1, - sym_list_splat_pattern, - STATE(1624), 1, + STATE(1581), 1, sym_primary_expression, - STATE(2611), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(1832), 2, - anon_sym_match, - anon_sym_type, - STATE(1607), 2, - sym_attribute, - sym_subscript, - STATE(2597), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1830), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1311), 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, - [58873] = 20, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1880), 1, - sym_identifier, - ACTIONS(1882), 1, - anon_sym_LPAREN, - ACTIONS(1888), 1, - anon_sym_LBRACK, - ACTIONS(1890), 1, - anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1598), 1, + STATE(1589), 1, sym_list_splat_pattern, - STATE(1622), 1, - sym_primary_expression, - STATE(1640), 1, + STATE(2542), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(1886), 2, + ACTIONS(1808), 2, anon_sym_match, anon_sym_type, - STATE(1610), 2, + STATE(1595), 2, sym_attribute, sym_subscript, - STATE(1650), 2, + STATE(2546), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1884), 3, + ACTIONS(1806), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76444,58 +74928,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58959] = 20, - ACTIONS(311), 1, + [58323] = 20, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(1704), 1, + ACTIONS(1083), 1, sym_identifier, - ACTIONS(1706), 1, + ACTIONS(1085), 1, anon_sym_LPAREN, - ACTIONS(1708), 1, - anon_sym_STAR, - ACTIONS(1714), 1, + ACTIONS(1093), 1, anon_sym_LBRACK, - ACTIONS(1716), 1, + ACTIONS(1095), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(2054), 1, + anon_sym_STAR, + STATE(984), 1, sym_string, - STATE(1584), 1, + STATE(1475), 1, sym_list_splat_pattern, - STATE(1632), 1, + STATE(1618), 1, sym_primary_expression, - STATE(2088), 1, + STATE(1636), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(1712), 2, + ACTIONS(1091), 2, anon_sym_match, anon_sym_type, - STATE(1585), 2, + STATE(1476), 2, sym_attribute, sym_subscript, - STATE(2122), 2, + STATE(1626), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1710), 3, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76510,58 +74994,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59045] = 20, + [58409] = 20, ACTIONS(17), 1, anon_sym_STAR, - ACTIONS(311), 1, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(979), 1, + ACTIONS(955), 1, sym_identifier, - ACTIONS(983), 1, + ACTIONS(959), 1, anon_sym_LPAREN, - ACTIONS(991), 1, + ACTIONS(967), 1, anon_sym_LBRACK, - ACTIONS(993), 1, + ACTIONS(969), 1, anon_sym_await, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1370), 1, + STATE(1345), 1, sym_list_splat_pattern, - STATE(1614), 1, + STATE(1593), 1, sym_pattern, - STATE(1616), 1, + STATE(1598), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(989), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - STATE(1371), 2, + STATE(1346), 2, sym_attribute, sym_subscript, - STATE(1628), 2, + STATE(1597), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(987), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76576,58 +75060,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59131] = 20, - ACTIONS(311), 1, + [58495] = 20, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2042), 1, + ACTIONS(1421), 1, + anon_sym_STAR, + ACTIONS(1894), 1, sym_identifier, - ACTIONS(2044), 1, + ACTIONS(1896), 1, anon_sym_LPAREN, - ACTIONS(2046), 1, - anon_sym_STAR, - ACTIONS(2052), 1, + ACTIONS(1902), 1, anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(1904), 1, anon_sym_await, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1599), 1, - sym_list_splat_pattern, - STATE(1631), 1, + STATE(1588), 1, sym_primary_expression, - STATE(2612), 1, + STATE(1604), 1, + sym_list_splat_pattern, + STATE(1636), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(2050), 2, + ACTIONS(1900), 2, anon_sym_match, anon_sym_type, - STATE(1600), 2, + STATE(1611), 2, sym_attribute, sym_subscript, - STATE(2596), 2, + STATE(1626), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2048), 3, + ACTIONS(1898), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76642,56 +75126,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59217] = 19, - ACTIONS(311), 1, + [58581] = 20, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(1736), 1, + sym_identifier, + ACTIONS(1738), 1, anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1443), 1, + ACTIONS(1740), 1, anon_sym_STAR, - ACTIONS(2076), 1, - sym_identifier, - ACTIONS(2084), 1, + ACTIONS(1746), 1, + anon_sym_LBRACK, + ACTIONS(1748), 1, anon_sym_await, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1569), 1, sym_list_splat_pattern, - STATE(1624), 1, + STATE(1608), 1, sym_primary_expression, + STATE(2053), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(2078), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2082), 2, + ACTIONS(1744), 2, anon_sym_match, anon_sym_type, - STATE(1592), 2, + STATE(1567), 2, sym_attribute, sym_subscript, - ACTIONS(316), 3, + STATE(2068), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2080), 3, + ACTIONS(1742), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76706,56 +75192,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59300] = 19, - ACTIONS(311), 1, + [58667] = 20, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(2004), 1, + sym_identifier, + ACTIONS(2006), 1, anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1443), 1, + ACTIONS(2008), 1, anon_sym_STAR, - ACTIONS(2086), 1, - sym_identifier, - ACTIONS(2092), 1, + ACTIONS(2014), 1, + anon_sym_LBRACK, + ACTIONS(2018), 1, anon_sym_await, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1586), 1, sym_list_splat_pattern, - STATE(1622), 1, + STATE(1607), 1, sym_primary_expression, + STATE(2565), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(2078), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2090), 2, + ACTIONS(2012), 2, anon_sym_match, anon_sym_type, - STATE(1630), 2, + STATE(1587), 2, sym_attribute, sym_subscript, - ACTIONS(316), 3, + STATE(2487), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2088), 3, + ACTIONS(2010), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76770,55 +75258,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59383] = 17, - ACTIONS(67), 1, + [58753] = 20, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(653), 1, + ACTIONS(1798), 1, + sym_identifier, + ACTIONS(1800), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1804), 1, + anon_sym_STAR, + ACTIONS(1810), 1, anon_sym_LBRACK, - ACTIONS(665), 1, + ACTIONS(1812), 1, anon_sym_await, - ACTIONS(1317), 1, - anon_sym_STAR, - ACTIONS(2094), 1, - anon_sym_not, - STATE(969), 1, + STATE(984), 1, sym_string, - STATE(988), 1, + STATE(1581), 1, sym_primary_expression, - STATE(1135), 1, + STATE(1589), 1, sym_list_splat_pattern, + STATE(2542), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(659), 2, + ACTIONS(1808), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + STATE(1595), 2, + sym_attribute, + sym_subscript, + STATE(2546), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(657), 3, + ACTIONS(1806), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(312), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1081), 16, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -76831,55 +75324,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59461] = 17, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [58839] = 19, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(731), 1, - anon_sym_await, - ACTIONS(733), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(1305), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(2094), 1, - anon_sym_not, - STATE(980), 1, + ACTIONS(2056), 1, + sym_identifier, + ACTIONS(2064), 1, + anon_sym_await, + STATE(984), 1, sym_string, - STATE(1004), 1, - sym_primary_expression, - STATE(1229), 1, + STATE(1372), 1, sym_list_splat_pattern, + STATE(1581), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(721), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(729), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(719), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(725), 3, + ACTIONS(2058), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2062), 2, + anon_sym_match, + anon_sym_type, + STATE(1579), 2, + sym_attribute, + sym_subscript, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(713), 5, + ACTIONS(2060), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(312), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1152), 16, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -76892,55 +75388,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59539] = 17, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LBRACK, - ACTIONS(702), 1, + [58922] = 19, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(706), 1, - anon_sym_await, - ACTIONS(708), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(1001), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(2094), 1, - anon_sym_not, - STATE(983), 1, + ACTIONS(2066), 1, + sym_identifier, + ACTIONS(2072), 1, + anon_sym_await, + STATE(984), 1, sym_string, - STATE(1019), 1, - sym_primary_expression, - STATE(1249), 1, + STATE(1372), 1, sym_list_splat_pattern, + STATE(1588), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(704), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(694), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(700), 3, + ACTIONS(2058), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(2070), 2, + anon_sym_match, + anon_sym_type, + STATE(1599), 2, + sym_attribute, + sym_subscript, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(688), 5, + ACTIONS(2068), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(312), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1198), 16, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -76953,112 +75452,116 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59617] = 17, - ACTIONS(805), 1, + [59005] = 21, + ACTIONS(2076), 1, + anon_sym_DOT, + ACTIONS(2078), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(2086), 1, + anon_sym_STAR_STAR, + ACTIONS(2088), 1, + anon_sym_EQ, + ACTIONS(2090), 1, anon_sym_LBRACK, - ACTIONS(817), 1, - anon_sym_LBRACE, - ACTIONS(821), 1, - anon_sym_await, - ACTIONS(823), 1, - sym_string_start, - ACTIONS(1265), 1, - anon_sym_STAR, - ACTIONS(2094), 1, + ACTIONS(2096), 1, + anon_sym_PIPE, + ACTIONS(2098), 1, anon_sym_not, - STATE(977), 1, - sym_string, - STATE(1040), 1, - sym_primary_expression, - STATE(1200), 1, - sym_list_splat_pattern, + ACTIONS(2100), 1, + anon_sym_AMP, + ACTIONS(2102), 1, + anon_sym_CARET, + ACTIONS(2104), 1, + anon_sym_is, + STATE(1545), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(811), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(819), 2, - sym_ellipsis, - sym_float, - ACTIONS(809), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(815), 3, + ACTIONS(2080), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2082), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2094), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(803), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1226), 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, + ACTIONS(2106), 2, + anon_sym_LT, + anon_sym_GT, + STATE(873), 2, + sym__not_in, + sym__is_not, + STATE(1066), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [59695] = 17, - ACTIONS(783), 1, + ACTIONS(2092), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2084), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2074), 9, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [59091] = 17, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(707), 1, anon_sym_await, - ACTIONS(801), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(1355), 1, + ACTIONS(1269), 1, anon_sym_STAR, - ACTIONS(2094), 1, + ACTIONS(2108), 1, anon_sym_not, - STATE(1034), 1, + STATE(969), 1, sym_string, - STATE(1102), 1, + STATE(1009), 1, sym_primary_expression, - STATE(1316), 1, + STATE(1283), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(789), 2, + ACTIONS(697), 2, anon_sym_match, anon_sym_type, - ACTIONS(797), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(787), 3, + ACTIONS(695), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(793), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(781), 5, + ACTIONS(689), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1418), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77075,51 +75578,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59773] = 17, - ACTIONS(737), 1, + [59169] = 17, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(751), 1, anon_sym_await, - ACTIONS(755), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1347), 1, + ACTIONS(1273), 1, anon_sym_STAR, - ACTIONS(2094), 1, + ACTIONS(2108), 1, anon_sym_not, - STATE(1110), 1, + STATE(958), 1, sym_string, - STATE(1258), 1, + STATE(993), 1, sym_primary_expression, - STATE(1451), 1, + STATE(1259), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(743), 2, + ACTIONS(741), 2, anon_sym_match, anon_sym_type, - ACTIONS(751), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(741), 3, + ACTIONS(739), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(747), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(735), 5, + ACTIONS(733), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1462), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77136,51 +75639,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59851] = 17, - ACTIONS(759), 1, + [59247] = 17, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(773), 1, - anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(779), 1, - sym_string_start, - ACTIONS(1273), 1, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(2094), 1, + ACTIONS(2108), 1, anon_sym_not, - STATE(1044), 1, + STATE(984), 1, sym_string, - STATE(1071), 1, + STATE(1125), 1, sym_primary_expression, - STATE(1390), 1, + STATE(1372), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(765), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(775), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(763), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(771), 3, + ACTIONS(656), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(757), 5, + ACTIONS(654), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(312), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1389), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77197,51 +75700,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59929] = 17, - ACTIONS(311), 1, + [59325] = 17, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(641), 1, anon_sym_await, - ACTIONS(1443), 1, + ACTIONS(1293), 1, anon_sym_STAR, - ACTIONS(2094), 1, + ACTIONS(2108), 1, anon_sym_not, - STATE(1025), 1, + STATE(954), 1, sym_string, - STATE(1062), 1, + STATE(973), 1, sym_primary_expression, - STATE(1325), 1, + STATE(1047), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(635), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(633), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77258,114 +75761,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60007] = 21, - ACTIONS(2098), 1, - anon_sym_DOT, - ACTIONS(2100), 1, + [59403] = 17, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, - anon_sym_STAR_STAR, - ACTIONS(2110), 1, - anon_sym_EQ, - ACTIONS(2112), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(2118), 1, - anon_sym_PIPE, - ACTIONS(2120), 1, - anon_sym_not, - ACTIONS(2122), 1, - anon_sym_AMP, - ACTIONS(2124), 1, - anon_sym_CARET, - ACTIONS(2126), 1, - anon_sym_is, - STATE(1564), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2102), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2104), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2116), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2128), 2, - anon_sym_LT, - anon_sym_GT, - STATE(965), 2, - sym__not_in, - sym__is_not, - STATE(1084), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2114), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2106), 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(2096), 9, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - [60093] = 16, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(791), 1, - anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(729), 1, anon_sym_await, - ACTIONS(801), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1355), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(1034), 1, + ACTIONS(2108), 1, + anon_sym_not, + STATE(995), 1, sym_string, - STATE(1096), 1, + STATE(1075), 1, sym_primary_expression, - STATE(1316), 1, + STATE(1301), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(789), 2, + ACTIONS(719), 2, anon_sym_match, anon_sym_type, - ACTIONS(797), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(787), 3, + ACTIONS(717), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(793), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(781), 5, + ACTIONS(711), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1418), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77382,49 +75822,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60168] = 16, - ACTIONS(690), 1, + [59481] = 17, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(706), 1, + ACTIONS(797), 1, anon_sym_await, - ACTIONS(708), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1001), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(983), 1, + ACTIONS(2108), 1, + anon_sym_not, + STATE(985), 1, sym_string, - STATE(1021), 1, + STATE(1089), 1, sym_primary_expression, - STATE(1249), 1, + STATE(1320), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(704), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(694), 3, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(700), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(688), 5, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1198), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77441,49 +75883,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60243] = 16, - ACTIONS(715), 1, + [59559] = 17, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(733), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1305), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(980), 1, + ACTIONS(2108), 1, + anon_sym_not, + STATE(1081), 1, sym_string, - STATE(1008), 1, + STATE(1212), 1, sym_primary_expression, - STATE(1229), 1, + STATE(1444), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(721), 2, + ACTIONS(763), 2, anon_sym_match, anon_sym_type, - ACTIONS(729), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(719), 3, + ACTIONS(761), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(725), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(713), 5, + ACTIONS(755), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1152), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77500,49 +75944,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60318] = 16, - ACTIONS(759), 1, + [59637] = 17, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(779), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(1273), 1, + ACTIONS(977), 1, anon_sym_STAR, - STATE(1044), 1, + ACTIONS(2108), 1, + anon_sym_not, + STATE(975), 1, sym_string, - STATE(1127), 1, + STATE(1030), 1, sym_primary_expression, - STATE(1390), 1, + STATE(1197), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(765), 2, + ACTIONS(672), 2, anon_sym_match, anon_sym_type, - ACTIONS(775), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(763), 3, + ACTIONS(670), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(771), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(757), 5, + ACTIONS(664), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1389), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77559,49 +76005,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60393] = 16, - ACTIONS(759), 1, + [59715] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(797), 1, anon_sym_await, - ACTIONS(779), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1273), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(1044), 1, + STATE(985), 1, sym_string, - STATE(1133), 1, + STATE(1089), 1, sym_primary_expression, - STATE(1390), 1, + STATE(1320), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(765), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(775), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(763), 3, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(771), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(757), 5, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1389), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77618,49 +76064,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60468] = 16, - ACTIONS(759), 1, + [59790] = 16, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(751), 1, anon_sym_await, - ACTIONS(779), 1, + ACTIONS(753), 1, sym_string_start, ACTIONS(1273), 1, anon_sym_STAR, - STATE(1044), 1, + STATE(958), 1, sym_string, - STATE(1071), 1, + STATE(1021), 1, sym_primary_expression, - STATE(1390), 1, + STATE(1259), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(765), 2, + ACTIONS(741), 2, anon_sym_match, anon_sym_type, - ACTIONS(775), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(763), 3, + ACTIONS(739), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(771), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(757), 5, + ACTIONS(733), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1389), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77677,49 +76123,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60543] = 16, - ACTIONS(759), 1, + [59865] = 16, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(779), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(1273), 1, + ACTIONS(977), 1, anon_sym_STAR, - STATE(1044), 1, + STATE(975), 1, sym_string, - STATE(1101), 1, + STATE(1030), 1, sym_primary_expression, - STATE(1390), 1, + STATE(1197), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(765), 2, + ACTIONS(672), 2, anon_sym_match, anon_sym_type, - ACTIONS(775), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(763), 3, + ACTIONS(670), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(771), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(757), 5, + ACTIONS(664), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1389), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77736,49 +76182,113 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60618] = 16, - ACTIONS(759), 1, + [59940] = 21, + ACTIONS(2088), 1, + anon_sym_as, + ACTIONS(2098), 1, + anon_sym_not, + ACTIONS(2110), 1, + anon_sym_DOT, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(2120), 1, + anon_sym_STAR_STAR, + ACTIONS(2122), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(2128), 1, + anon_sym_PIPE, + ACTIONS(2130), 1, + anon_sym_AMP, + ACTIONS(2132), 1, + anon_sym_CARET, + ACTIONS(2134), 1, + anon_sym_is, + STATE(1552), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2114), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2116), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2126), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2136), 2, + anon_sym_LT, + anon_sym_GT, + STATE(914), 2, + sym__not_in, + sym__is_not, + STATE(1281), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2124), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2118), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2074), 8, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [60025] = 16, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(779), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(1044), 1, + STATE(1081), 1, sym_string, - STATE(1055), 1, + STATE(1210), 1, sym_primary_expression, - STATE(1390), 1, + STATE(1444), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(765), 2, + ACTIONS(763), 2, anon_sym_match, anon_sym_type, - ACTIONS(775), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(763), 3, + ACTIONS(761), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(771), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(757), 5, + ACTIONS(755), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1389), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77795,49 +76305,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60693] = 16, - ACTIONS(759), 1, + [60100] = 16, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(779), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(1273), 1, + ACTIONS(977), 1, anon_sym_STAR, - STATE(1044), 1, + STATE(975), 1, sym_string, - STATE(1088), 1, + STATE(1015), 1, sym_primary_expression, - STATE(1390), 1, + STATE(1197), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(765), 2, + ACTIONS(672), 2, anon_sym_match, anon_sym_type, - ACTIONS(775), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(763), 3, + ACTIONS(670), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(771), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(757), 5, + ACTIONS(664), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1389), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77854,49 +76364,110 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60768] = 16, - ACTIONS(759), 1, + [60175] = 18, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(1421), 1, + anon_sym_STAR, + ACTIONS(2138), 1, + sym_identifier, + ACTIONS(2144), 1, + anon_sym_await, + STATE(984), 1, + sym_string, + STATE(1372), 1, + sym_list_splat_pattern, + STATE(1581), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(2142), 2, + anon_sym_match, + anon_sym_type, + STATE(1349), 2, + sym_attribute, + sym_subscript, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(2140), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1377), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [60254] = 16, + ACTIONS(735), 1, + anon_sym_LPAREN, + ACTIONS(743), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(751), 1, anon_sym_await, - ACTIONS(779), 1, + ACTIONS(753), 1, sym_string_start, ACTIONS(1273), 1, anon_sym_STAR, - STATE(1044), 1, + STATE(958), 1, sym_string, - STATE(1090), 1, + STATE(993), 1, sym_primary_expression, - STATE(1390), 1, + STATE(1259), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(765), 2, + ACTIONS(741), 2, anon_sym_match, anon_sym_type, - ACTIONS(775), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(763), 3, + ACTIONS(739), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(771), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(757), 5, + ACTIONS(733), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1389), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77913,49 +76484,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60843] = 16, - ACTIONS(759), 1, + [60329] = 16, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(779), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(1273), 1, + ACTIONS(977), 1, anon_sym_STAR, - STATE(1044), 1, + STATE(975), 1, sym_string, - STATE(1125), 1, + STATE(1005), 1, sym_primary_expression, - STATE(1390), 1, + STATE(1197), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(765), 2, + ACTIONS(672), 2, anon_sym_match, anon_sym_type, - ACTIONS(775), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(763), 3, + ACTIONS(670), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(771), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(757), 5, + ACTIONS(664), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1389), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77972,49 +76543,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60918] = 16, - ACTIONS(311), 1, + [60404] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(641), 1, anon_sym_await, - ACTIONS(1443), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(1025), 1, + STATE(954), 1, sym_string, - STATE(1060), 1, + STATE(959), 1, sym_primary_expression, - STATE(1325), 1, + STATE(1047), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(635), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(633), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78031,49 +76602,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60993] = 16, - ACTIONS(690), 1, + [60479] = 16, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(706), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(708), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(1001), 1, + ACTIONS(977), 1, anon_sym_STAR, - STATE(983), 1, + STATE(975), 1, sym_string, - STATE(1022), 1, + STATE(979), 1, sym_primary_expression, - STATE(1249), 1, + STATE(1197), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 2, + ACTIONS(672), 2, anon_sym_match, anon_sym_type, - ACTIONS(704), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(694), 3, + ACTIONS(670), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(700), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(688), 5, + ACTIONS(664), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1198), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78090,49 +76661,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61068] = 16, - ACTIONS(783), 1, + [60554] = 16, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(801), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(1355), 1, + ACTIONS(977), 1, anon_sym_STAR, - STATE(1034), 1, + STATE(975), 1, sym_string, - STATE(1104), 1, + STATE(1003), 1, sym_primary_expression, - STATE(1316), 1, + STATE(1197), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(789), 2, + ACTIONS(672), 2, anon_sym_match, anon_sym_type, - ACTIONS(797), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(787), 3, + ACTIONS(670), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(793), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(781), 5, + ACTIONS(664), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1418), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78149,49 +76720,108 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61143] = 16, - ACTIONS(783), 1, + [60629] = 16, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(801), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1355), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(1034), 1, + STATE(1081), 1, sym_string, - STATE(1105), 1, + STATE(1214), 1, sym_primary_expression, - STATE(1316), 1, + STATE(1444), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(789), 2, + ACTIONS(763), 2, anon_sym_match, anon_sym_type, - ACTIONS(797), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(787), 3, + ACTIONS(761), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(793), 3, + ACTIONS(767), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(755), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1441), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [60704] = 16, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(637), 1, + anon_sym_LBRACK, + ACTIONS(641), 1, + anon_sym_await, + ACTIONS(1293), 1, + anon_sym_STAR, + STATE(954), 1, + sym_string, + STATE(956), 1, + sym_primary_expression, + STATE(1047), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(635), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(781), 5, + ACTIONS(633), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1418), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78208,53 +76838,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61218] = 16, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LBRACK, - ACTIONS(702), 1, + [60779] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(706), 1, - anon_sym_await, - ACTIONS(708), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(1001), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(983), 1, + ACTIONS(2146), 1, + sym_identifier, + ACTIONS(2152), 1, + anon_sym_await, + STATE(984), 1, sym_string, - STATE(1023), 1, - sym_primary_expression, - STATE(1249), 1, + STATE(1372), 1, sym_list_splat_pattern, + STATE(1588), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(704), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(694), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(700), 3, + ACTIONS(2150), 2, + anon_sym_match, + anon_sym_type, + STATE(1378), 2, + sym_attribute, + sym_subscript, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(688), 5, + ACTIONS(2148), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(312), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1198), 16, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -78267,49 +76899,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61293] = 16, - ACTIONS(783), 1, + [60858] = 16, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(795), 1, - anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(641), 1, anon_sym_await, - ACTIONS(801), 1, - sym_string_start, - ACTIONS(1355), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(1034), 1, + STATE(954), 1, sym_string, - STATE(1106), 1, + STATE(965), 1, sym_primary_expression, - STATE(1316), 1, + STATE(1047), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(789), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(797), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(787), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(793), 3, + ACTIONS(635), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(781), 5, + ACTIONS(633), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1418), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78326,49 +76958,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61368] = 16, - ACTIONS(690), 1, + [60933] = 16, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(706), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(708), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(1001), 1, + ACTIONS(977), 1, anon_sym_STAR, - STATE(983), 1, + STATE(975), 1, sym_string, - STATE(1024), 1, + STATE(1010), 1, sym_primary_expression, - STATE(1249), 1, + STATE(1197), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 2, + ACTIONS(672), 2, anon_sym_match, anon_sym_type, - ACTIONS(704), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(694), 3, + ACTIONS(670), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(700), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(688), 5, + ACTIONS(664), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1198), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78385,55 +77017,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61443] = 18, - ACTIONS(311), 1, + [61008] = 16, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2130), 1, - sym_identifier, - ACTIONS(2136), 1, + ACTIONS(662), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(1421), 1, + anon_sym_STAR, + STATE(984), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1622), 1, + STATE(1129), 1, sym_primary_expression, + STATE(1372), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(2134), 2, + ACTIONS(656), 2, anon_sym_match, anon_sym_type, - STATE(1605), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2132), 3, + ACTIONS(654), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(312), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -78446,55 +77076,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61522] = 18, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [61083] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2138), 1, - sym_identifier, - ACTIONS(2144), 1, + ACTIONS(793), 1, + anon_sym_LBRACE, + ACTIONS(797), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(799), 1, + sym_string_start, + ACTIONS(1243), 1, + anon_sym_STAR, + STATE(985), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1631), 1, + STATE(1051), 1, sym_primary_expression, + STATE(1320), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2142), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - STATE(1268), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2140), 3, + ACTIONS(795), 2, + sym_ellipsis, + sym_float, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(791), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(777), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -78507,49 +77135,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61601] = 16, - ACTIONS(783), 1, + [61158] = 16, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(795), 1, - anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(641), 1, anon_sym_await, - ACTIONS(801), 1, - sym_string_start, - ACTIONS(1355), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(1034), 1, + STATE(954), 1, sym_string, - STATE(1107), 1, + STATE(973), 1, sym_primary_expression, - STATE(1316), 1, + STATE(1047), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(789), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(797), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(787), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(793), 3, + ACTIONS(635), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(781), 5, + ACTIONS(633), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1418), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78566,53 +77194,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61676] = 16, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [61233] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(753), 1, - anon_sym_await, - ACTIONS(755), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(1347), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(1110), 1, + ACTIONS(2154), 1, + sym_identifier, + ACTIONS(2160), 1, + anon_sym_await, + STATE(984), 1, sym_string, - STATE(1251), 1, - sym_primary_expression, - STATE(1451), 1, + STATE(1372), 1, sym_list_splat_pattern, + STATE(1606), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(743), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(751), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(741), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(747), 3, + ACTIONS(2158), 2, + anon_sym_match, + anon_sym_type, + STATE(1449), 2, + sym_attribute, + sym_subscript, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(735), 5, + ACTIONS(2156), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(312), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1462), 16, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -78625,53 +77255,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61751] = 16, - ACTIONS(311), 1, + [61312] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(686), 1, - anon_sym_await, - ACTIONS(1443), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(1025), 1, + ACTIONS(2162), 1, + sym_identifier, + ACTIONS(2168), 1, + anon_sym_await, + STATE(984), 1, sym_string, - STATE(1061), 1, - sym_primary_expression, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, + STATE(1588), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(2166), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, + STATE(1610), 2, + sym_attribute, + sym_subscript, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(2164), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(312), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 16, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -78684,49 +77316,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61826] = 16, - ACTIONS(805), 1, + [61391] = 16, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(821), 1, + ACTIONS(729), 1, anon_sym_await, - ACTIONS(823), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1265), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(977), 1, + STATE(995), 1, sym_string, - STATE(1038), 1, + STATE(1070), 1, sym_primary_expression, - STATE(1200), 1, + STATE(1301), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(811), 2, + ACTIONS(719), 2, anon_sym_match, anon_sym_type, - ACTIONS(819), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(809), 3, + ACTIONS(717), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(815), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(803), 5, + ACTIONS(711), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1226), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78743,53 +77375,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61901] = 16, - ACTIONS(805), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, - anon_sym_LBRACK, - ACTIONS(817), 1, + [61466] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(821), 1, - anon_sym_await, - ACTIONS(823), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(1265), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(977), 1, + ACTIONS(2170), 1, + sym_identifier, + ACTIONS(2176), 1, + anon_sym_await, + STATE(984), 1, sym_string, - STATE(1039), 1, - sym_primary_expression, - STATE(1200), 1, + STATE(1372), 1, sym_list_splat_pattern, + STATE(1590), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(811), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(819), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(809), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(815), 3, + ACTIONS(2174), 2, + anon_sym_match, + anon_sym_type, + STATE(1039), 2, + sym_attribute, + sym_subscript, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(803), 5, + ACTIONS(2172), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(312), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1226), 16, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -78802,55 +77436,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61976] = 18, - ACTIONS(311), 1, + [61545] = 16, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2146), 1, - sym_identifier, - ACTIONS(2152), 1, + ACTIONS(662), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(1421), 1, + anon_sym_STAR, + STATE(984), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1622), 1, + STATE(1130), 1, sym_primary_expression, + STATE(1372), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(2150), 2, + ACTIONS(656), 2, anon_sym_match, anon_sym_type, - STATE(1402), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2148), 3, + ACTIONS(654), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(312), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -78863,49 +77495,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62055] = 16, - ACTIONS(805), 1, + [61620] = 16, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(821), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(823), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(1265), 1, + ACTIONS(977), 1, anon_sym_STAR, - STATE(977), 1, + STATE(975), 1, sym_string, - STATE(1040), 1, + STATE(1011), 1, sym_primary_expression, - STATE(1200), 1, + STATE(1197), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(811), 2, + ACTIONS(672), 2, anon_sym_match, anon_sym_type, - ACTIONS(819), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(809), 3, + ACTIONS(670), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(815), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(803), 5, + ACTIONS(664), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1226), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78922,49 +77554,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62130] = 16, - ACTIONS(759), 1, + [61695] = 16, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(773), 1, - anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(779), 1, - sym_string_start, - ACTIONS(1273), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(1044), 1, + STATE(984), 1, sym_string, - STATE(1138), 1, + STATE(1115), 1, sym_primary_expression, - STATE(1390), 1, + STATE(1372), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(765), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(775), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(763), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(771), 3, + ACTIONS(656), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(757), 5, + ACTIONS(654), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(312), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1389), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78981,55 +77613,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62205] = 18, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [61770] = 16, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2154), 1, - sym_identifier, - ACTIONS(2160), 1, + ACTIONS(747), 1, + anon_sym_LBRACE, + ACTIONS(751), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(753), 1, + sym_string_start, + ACTIONS(1273), 1, + anon_sym_STAR, + STATE(958), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1627), 1, + STATE(1026), 1, sym_primary_expression, + STATE(1259), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2158), 2, + ACTIONS(741), 2, anon_sym_match, anon_sym_type, - STATE(1368), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2156), 3, + ACTIONS(749), 2, + sym_ellipsis, + sym_float, + ACTIONS(739), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(745), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(733), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -79042,49 +77672,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62284] = 16, - ACTIONS(311), 1, + [61845] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(641), 1, anon_sym_await, - ACTIONS(1443), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(1025), 1, + STATE(954), 1, sym_string, - STATE(1069), 1, + STATE(957), 1, sym_primary_expression, - STATE(1325), 1, + STATE(1047), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(635), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(633), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79101,49 +77731,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62359] = 16, - ACTIONS(805), 1, + [61920] = 16, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(821), 1, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(823), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1265), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(977), 1, + STATE(1081), 1, sym_string, - STATE(1041), 1, + STATE(1132), 1, sym_primary_expression, - STATE(1200), 1, + STATE(1444), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(811), 2, + ACTIONS(763), 2, anon_sym_match, anon_sym_type, - ACTIONS(819), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(809), 3, + ACTIONS(761), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(815), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(803), 5, + ACTIONS(755), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1226), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79160,24 +77790,24 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62434] = 16, + [61995] = 16, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(81), 1, sym_string_start, - ACTIONS(653), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(665), 1, + ACTIONS(641), 1, anon_sym_await, - ACTIONS(1317), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(969), 1, + STATE(954), 1, sym_string, - STATE(989), 1, + STATE(962), 1, sym_primary_expression, - STATE(1135), 1, + STATE(1047), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -79185,14 +77815,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(659), 2, + ACTIONS(635), 2, anon_sym_match, anon_sym_type, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(657), 3, + ACTIONS(633), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -79202,7 +77832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1081), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79219,53 +77849,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62509] = 16, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [62070] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(731), 1, - anon_sym_await, - ACTIONS(733), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(1305), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(980), 1, + ACTIONS(2160), 1, + anon_sym_await, + ACTIONS(2178), 1, + sym_identifier, + STATE(984), 1, sym_string, - STATE(998), 1, - sym_primary_expression, - STATE(1229), 1, + STATE(1372), 1, sym_list_splat_pattern, + STATE(1606), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(721), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(729), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(719), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(725), 3, + ACTIONS(2158), 2, + anon_sym_match, + anon_sym_type, + STATE(1449), 2, + sym_attribute, + sym_subscript, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(713), 5, + ACTIONS(2156), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(312), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1152), 16, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -79278,49 +77910,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62584] = 16, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [62149] = 16, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(747), 1, + anon_sym_LBRACE, + ACTIONS(751), 1, anon_sym_await, - ACTIONS(1443), 1, + ACTIONS(753), 1, + sym_string_start, + ACTIONS(1273), 1, anon_sym_STAR, - STATE(1025), 1, + STATE(958), 1, sym_string, - STATE(1062), 1, + STATE(990), 1, sym_primary_expression, - STATE(1325), 1, + STATE(1259), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(680), 2, + ACTIONS(741), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(749), 2, + sym_ellipsis, + sym_float, + ACTIONS(739), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(745), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(733), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79337,53 +77969,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62659] = 16, - ACTIONS(311), 1, + [62224] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(686), 1, - anon_sym_await, - ACTIONS(1443), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(1025), 1, + ACTIONS(2152), 1, + anon_sym_await, + ACTIONS(2180), 1, + sym_identifier, + STATE(984), 1, sym_string, - STATE(1063), 1, - sym_primary_expression, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, + STATE(1588), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(2150), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, + STATE(1378), 2, + sym_attribute, + sym_subscript, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(2148), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(312), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 16, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -79396,49 +78030,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62734] = 16, - ACTIONS(715), 1, + [62303] = 16, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(729), 1, anon_sym_await, - ACTIONS(733), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1305), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(980), 1, + STATE(995), 1, sym_string, - STATE(1002), 1, + STATE(1073), 1, sym_primary_expression, - STATE(1229), 1, + STATE(1301), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(721), 2, + ACTIONS(719), 2, anon_sym_match, anon_sym_type, - ACTIONS(729), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(719), 3, + ACTIONS(717), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(725), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(713), 5, + ACTIONS(711), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1152), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79455,53 +78089,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62809] = 16, - ACTIONS(805), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, - anon_sym_LBRACK, - ACTIONS(817), 1, + [62378] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(821), 1, - anon_sym_await, - ACTIONS(823), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(1265), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(977), 1, + ACTIONS(2160), 1, + anon_sym_await, + ACTIONS(2182), 1, + sym_identifier, + STATE(984), 1, sym_string, - STATE(1042), 1, - sym_primary_expression, - STATE(1200), 1, + STATE(1372), 1, sym_list_splat_pattern, + STATE(1607), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(811), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(819), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(809), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(815), 3, + ACTIONS(2186), 2, + anon_sym_match, + anon_sym_type, + STATE(1229), 2, + sym_attribute, + sym_subscript, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(803), 5, + ACTIONS(2184), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(312), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1226), 16, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -79514,49 +78150,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62884] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(653), 1, + [62457] = 16, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(665), 1, + ACTIONS(725), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, anon_sym_await, - ACTIONS(1317), 1, + ACTIONS(731), 1, + sym_string_start, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(969), 1, + STATE(995), 1, sym_string, - STATE(990), 1, + STATE(1074), 1, sym_primary_expression, - STATE(1135), 1, + STATE(1301), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(659), 2, + ACTIONS(719), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(657), 3, + ACTIONS(727), 2, + sym_ellipsis, + sym_float, + ACTIONS(717), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(723), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(711), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1081), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79573,49 +78209,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62959] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(653), 1, + [62532] = 16, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(665), 1, + ACTIONS(769), 1, + anon_sym_LBRACE, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(1317), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(969), 1, + STATE(1081), 1, sym_string, - STATE(991), 1, + STATE(1201), 1, sym_primary_expression, - STATE(1135), 1, + STATE(1444), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(659), 2, + ACTIONS(763), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(657), 3, + ACTIONS(771), 2, + sym_ellipsis, + sym_float, + ACTIONS(761), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(767), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(755), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1081), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79632,55 +78268,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63034] = 18, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [62607] = 16, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2162), 1, - sym_identifier, - ACTIONS(2168), 1, + ACTIONS(725), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(731), 1, + sym_string_start, + ACTIONS(1303), 1, + anon_sym_STAR, + STATE(995), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1632), 1, + STATE(1075), 1, sym_primary_expression, + STATE(1301), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2166), 2, + ACTIONS(719), 2, anon_sym_match, anon_sym_type, - STATE(1269), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2164), 3, + ACTIONS(727), 2, + sym_ellipsis, + sym_float, + ACTIONS(717), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(723), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(711), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -79690,52 +78324,116 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionary_comprehension, sym_set_comprehension, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [63113] = 16, - ACTIONS(715), 1, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [62682] = 21, + ACTIONS(2088), 1, + anon_sym_as, + ACTIONS(2098), 1, + anon_sym_not, + ACTIONS(2188), 1, + anon_sym_DOT, + ACTIONS(2190), 1, + anon_sym_LPAREN, + ACTIONS(2198), 1, + anon_sym_STAR_STAR, + ACTIONS(2200), 1, + anon_sym_LBRACK, + ACTIONS(2206), 1, + anon_sym_PIPE, + ACTIONS(2208), 1, + anon_sym_AMP, + ACTIONS(2210), 1, + anon_sym_CARET, + ACTIONS(2212), 1, + anon_sym_is, + STATE(1560), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2192), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2194), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2204), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2214), 2, + anon_sym_LT, + anon_sym_GT, + STATE(861), 2, + sym__not_in, + sym__is_not, + STATE(1233), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2202), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2196), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2074), 8, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + [62767] = 16, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(751), 1, anon_sym_await, - ACTIONS(733), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1305), 1, + ACTIONS(1273), 1, anon_sym_STAR, - STATE(980), 1, + STATE(958), 1, sym_string, - STATE(1003), 1, + STATE(977), 1, sym_primary_expression, - STATE(1229), 1, + STATE(1259), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(721), 2, + ACTIONS(741), 2, anon_sym_match, anon_sym_type, - ACTIONS(729), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(719), 3, + ACTIONS(739), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(725), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(713), 5, + ACTIONS(733), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1152), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79752,40 +78450,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63188] = 18, - ACTIONS(311), 1, + [62842] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(2170), 1, - sym_identifier, ACTIONS(2176), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(2216), 1, + sym_identifier, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1616), 1, + STATE(1590), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, ACTIONS(2174), 2, anon_sym_match, anon_sym_type, - STATE(639), 2, + STATE(1039), 2, sym_attribute, sym_subscript, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -79793,12 +78491,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -79813,116 +78511,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63267] = 18, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [62921] = 16, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2178), 1, - sym_identifier, - ACTIONS(2184), 1, + ACTIONS(725), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(731), 1, + sym_string_start, + ACTIONS(1303), 1, + anon_sym_STAR, + STATE(995), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1623), 1, + STATE(1076), 1, sym_primary_expression, + STATE(1301), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2182), 2, + ACTIONS(719), 2, anon_sym_match, anon_sym_type, - STATE(1085), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2180), 3, + ACTIONS(727), 2, + sym_ellipsis, + sym_float, + ACTIONS(717), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1311), 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, - [63346] = 18, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2184), 1, - anon_sym_await, - ACTIONS(2186), 1, - sym_identifier, - STATE(1025), 1, - sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1623), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2182), 2, - anon_sym_match, - anon_sym_type, - STATE(1085), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2180), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(711), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -79935,55 +78570,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63425] = 18, - ACTIONS(311), 1, + [62996] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2188), 1, - sym_identifier, - ACTIONS(2194), 1, + ACTIONS(641), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(1293), 1, + anon_sym_STAR, + STATE(954), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1625), 1, + STATE(966), 1, sym_primary_expression, + STATE(1047), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(2192), 2, + ACTIONS(635), 2, anon_sym_match, anon_sym_type, - STATE(1480), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2190), 3, + ACTIONS(633), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(77), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -79996,49 +78629,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63504] = 16, - ACTIONS(311), 1, + [63071] = 16, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(1443), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1070), 1, + STATE(1127), 1, sym_primary_expression, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(656), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(654), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(312), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80055,49 +78688,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63579] = 16, - ACTIONS(311), 1, + [63146] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(641), 1, anon_sym_await, - ACTIONS(1443), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(1025), 1, + STATE(954), 1, sym_string, - STATE(1052), 1, + STATE(967), 1, sym_primary_expression, - STATE(1325), 1, + STATE(1047), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(635), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(633), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80114,24 +78747,24 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63654] = 16, + [63221] = 16, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(81), 1, sym_string_start, - ACTIONS(653), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(665), 1, + ACTIONS(641), 1, anon_sym_await, - ACTIONS(1317), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(969), 1, + STATE(954), 1, sym_string, - STATE(987), 1, + STATE(972), 1, sym_primary_expression, - STATE(1135), 1, + STATE(1047), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -80139,14 +78772,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(659), 2, + ACTIONS(635), 2, anon_sym_match, anon_sym_type, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(657), 3, + ACTIONS(633), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -80156,7 +78789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1081), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80173,49 +78806,113 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63729] = 16, - ACTIONS(805), 1, + [63296] = 21, + ACTIONS(2088), 1, + anon_sym_EQ, + ACTIONS(2098), 1, + anon_sym_not, + ACTIONS(2218), 1, + anon_sym_DOT, + ACTIONS(2220), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(2228), 1, + anon_sym_STAR_STAR, + ACTIONS(2230), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(2236), 1, + anon_sym_PIPE, + ACTIONS(2238), 1, + anon_sym_AMP, + ACTIONS(2240), 1, + anon_sym_CARET, + ACTIONS(2242), 1, + anon_sym_is, + STATE(1558), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2222), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2224), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2234), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2244), 2, + anon_sym_LT, + anon_sym_GT, + STATE(856), 2, + sym__not_in, + sym__is_not, + STATE(1144), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2232), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2226), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2074), 8, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [63381] = 16, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(721), 1, + anon_sym_LBRACK, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(821), 1, + ACTIONS(729), 1, anon_sym_await, - ACTIONS(823), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1265), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(977), 1, + STATE(995), 1, sym_string, - STATE(1043), 1, + STATE(1077), 1, sym_primary_expression, - STATE(1200), 1, + STATE(1301), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(811), 2, + ACTIONS(719), 2, anon_sym_match, anon_sym_type, - ACTIONS(819), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(809), 3, + ACTIONS(717), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(815), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(803), 5, + ACTIONS(711), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1226), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80232,53 +78929,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63804] = 16, - ACTIONS(311), 1, + [63456] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(686), 1, - anon_sym_await, - ACTIONS(1443), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(1025), 1, + ACTIONS(2246), 1, + sym_identifier, + ACTIONS(2252), 1, + anon_sym_await, + STATE(984), 1, sym_string, - STATE(1072), 1, - sym_primary_expression, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, + STATE(1598), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(2250), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, + STATE(651), 2, + sym_attribute, + sym_subscript, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(2248), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(312), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 16, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -80291,53 +78990,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63879] = 16, - ACTIONS(311), 1, + [63535] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(686), 1, - anon_sym_await, - ACTIONS(1443), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(1025), 1, + ACTIONS(2254), 1, + sym_identifier, + ACTIONS(2260), 1, + anon_sym_await, + STATE(984), 1, sym_string, - STATE(1064), 1, - sym_primary_expression, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, + STATE(1608), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(2258), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, + STATE(1230), 2, + sym_attribute, + sym_subscript, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(2256), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(312), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 16, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -80350,49 +79051,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63954] = 16, - ACTIONS(715), 1, + [63614] = 16, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(727), 1, - anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(733), 1, - sym_string_start, - ACTIONS(1305), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(980), 1, + STATE(984), 1, sym_string, - STATE(1007), 1, + STATE(1123), 1, sym_primary_expression, - STATE(1229), 1, + STATE(1372), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(721), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(729), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(719), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(725), 3, + ACTIONS(656), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(713), 5, + ACTIONS(654), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(312), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1152), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80409,49 +79110,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64029] = 16, - ACTIONS(715), 1, + [63689] = 16, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(733), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1305), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(980), 1, + STATE(1081), 1, sym_string, - STATE(1009), 1, + STATE(1284), 1, sym_primary_expression, - STATE(1229), 1, + STATE(1444), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(721), 2, + ACTIONS(763), 2, anon_sym_match, anon_sym_type, - ACTIONS(729), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(719), 3, + ACTIONS(761), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(725), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(713), 5, + ACTIONS(755), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1152), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80468,49 +79169,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64104] = 16, - ACTIONS(715), 1, + [63764] = 16, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(729), 1, anon_sym_await, - ACTIONS(733), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1305), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(980), 1, + STATE(995), 1, sym_string, - STATE(1005), 1, + STATE(1078), 1, sym_primary_expression, - STATE(1229), 1, + STATE(1301), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(721), 2, + ACTIONS(719), 2, anon_sym_match, anon_sym_type, - ACTIONS(729), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(719), 3, + ACTIONS(717), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(725), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(713), 5, + ACTIONS(711), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1152), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80527,53 +79228,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64179] = 18, - ACTIONS(311), 1, + [63839] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(2196), 1, + ACTIONS(2262), 1, sym_identifier, - ACTIONS(2202), 1, + ACTIONS(2268), 1, anon_sym_await, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1624), 1, + STATE(1618), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(2200), 2, + ACTIONS(2266), 2, anon_sym_match, anon_sym_type, - STATE(1594), 2, + STATE(1471), 2, sym_attribute, sym_subscript, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2198), 3, + ACTIONS(2264), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -80588,53 +79289,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64258] = 18, - ACTIONS(311), 1, + [63918] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(2144), 1, - anon_sym_await, - ACTIONS(2204), 1, + ACTIONS(2270), 1, sym_identifier, - STATE(1025), 1, + ACTIONS(2276), 1, + anon_sym_await, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1629), 1, + STATE(1581), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(2208), 2, + ACTIONS(2274), 2, anon_sym_match, anon_sym_type, - STATE(1435), 2, + STATE(1580), 2, sym_attribute, sym_subscript, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2206), 3, + ACTIONS(2272), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -80649,177 +79350,226 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64337] = 21, - ACTIONS(2110), 1, - anon_sym_EQ, - ACTIONS(2120), 1, - anon_sym_not, - ACTIONS(2210), 1, - anon_sym_DOT, - ACTIONS(2212), 1, + [63997] = 16, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, - anon_sym_STAR_STAR, - ACTIONS(2222), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(2228), 1, - anon_sym_PIPE, - ACTIONS(2230), 1, - anon_sym_AMP, - ACTIONS(2232), 1, - anon_sym_CARET, - ACTIONS(2234), 1, - anon_sym_is, - STATE(1576), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(725), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, + anon_sym_await, + ACTIONS(731), 1, + sym_string_start, + ACTIONS(1303), 1, + anon_sym_STAR, + STATE(995), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1301), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2216), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2226), 2, + ACTIONS(719), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(727), 2, + sym_ellipsis, + sym_float, + ACTIONS(717), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2236), 2, - anon_sym_LT, - anon_sym_GT, - STATE(954), 2, - sym__not_in, - sym__is_not, - STATE(1205), 2, - sym_argument_list, + anon_sym_TILDE, + ACTIONS(711), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1381), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, sym_generator_expression, - ACTIONS(2224), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2218), 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(2096), 8, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [64422] = 21, - ACTIONS(2110), 1, - anon_sym_as, - ACTIONS(2120), 1, - anon_sym_not, - ACTIONS(2238), 1, - anon_sym_DOT, - ACTIONS(2240), 1, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [64072] = 16, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(2248), 1, - anon_sym_STAR_STAR, - ACTIONS(2250), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(2256), 1, - anon_sym_PIPE, - ACTIONS(2258), 1, - anon_sym_AMP, - ACTIONS(2260), 1, - anon_sym_CARET, - ACTIONS(2262), 1, - anon_sym_is, - STATE(1569), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(725), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, + anon_sym_await, + ACTIONS(731), 1, + sym_string_start, + ACTIONS(1303), 1, + anon_sym_STAR, + STATE(995), 1, + sym_string, + STATE(1080), 1, + sym_primary_expression, + STATE(1301), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2242), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2244), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2254), 2, + ACTIONS(719), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(727), 2, + sym_ellipsis, + sym_float, + ACTIONS(717), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2264), 2, - anon_sym_LT, - anon_sym_GT, - STATE(897), 2, - sym__not_in, - sym__is_not, - STATE(1250), 2, - sym_argument_list, + anon_sym_TILDE, + ACTIONS(711), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1381), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, sym_generator_expression, - ACTIONS(2252), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2246), 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(2096), 8, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [64507] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(653), 1, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [64147] = 16, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(665), 1, + ACTIONS(703), 1, + anon_sym_LBRACE, + ACTIONS(707), 1, anon_sym_await, - ACTIONS(1317), 1, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(1269), 1, anon_sym_STAR, STATE(969), 1, sym_string, - STATE(974), 1, + STATE(999), 1, sym_primary_expression, - STATE(1135), 1, + STATE(1283), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(659), 2, + ACTIONS(697), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(705), 2, + sym_ellipsis, + sym_float, + ACTIONS(695), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(657), 3, + ACTIONS(689), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1280), 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, + [64222] = 16, + ACTIONS(691), 1, + anon_sym_LPAREN, + ACTIONS(699), 1, + anon_sym_LBRACK, + ACTIONS(703), 1, + anon_sym_LBRACE, + ACTIONS(707), 1, + anon_sym_await, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(1269), 1, + anon_sym_STAR, + STATE(969), 1, + sym_string, + STATE(1001), 1, + sym_primary_expression, + STATE(1283), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(697), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(705), 2, + sym_ellipsis, + sym_float, + ACTIONS(695), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(701), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(689), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1081), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80836,55 +79586,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64582] = 18, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [64297] = 16, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2168), 1, + ACTIONS(703), 1, + anon_sym_LBRACE, + ACTIONS(707), 1, anon_sym_await, - ACTIONS(2266), 1, - sym_identifier, - STATE(1025), 1, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(1269), 1, + anon_sym_STAR, + STATE(969), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1626), 1, + STATE(1009), 1, sym_primary_expression, + STATE(1283), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2270), 2, + ACTIONS(697), 2, anon_sym_match, anon_sym_type, - STATE(1248), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2268), 3, + ACTIONS(705), 2, + sym_ellipsis, + sym_float, + ACTIONS(695), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(701), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(689), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -80897,49 +79645,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64661] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(653), 1, + [64372] = 16, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(665), 1, + ACTIONS(703), 1, + anon_sym_LBRACE, + ACTIONS(707), 1, anon_sym_await, - ACTIONS(1317), 1, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(1269), 1, anon_sym_STAR, STATE(969), 1, sym_string, - STATE(975), 1, + STATE(1016), 1, sym_primary_expression, - STATE(1135), 1, + STATE(1283), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(659), 2, + ACTIONS(697), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(657), 3, + ACTIONS(705), 2, + sym_ellipsis, + sym_float, + ACTIONS(695), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(701), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(689), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1081), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80956,53 +79704,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64736] = 16, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [64447] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(731), 1, - anon_sym_await, - ACTIONS(733), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(1305), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(980), 1, + ACTIONS(2260), 1, + anon_sym_await, + ACTIONS(2278), 1, + sym_identifier, + STATE(984), 1, sym_string, - STATE(1004), 1, - sym_primary_expression, - STATE(1229), 1, + STATE(1372), 1, sym_list_splat_pattern, + STATE(1600), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(721), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(729), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(719), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(725), 3, + ACTIONS(2282), 2, + anon_sym_match, + anon_sym_type, + STATE(1196), 2, + sym_attribute, + sym_subscript, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(713), 5, + ACTIONS(2280), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(312), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1152), 16, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -81015,49 +79765,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64811] = 16, - ACTIONS(805), 1, + [64526] = 16, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(821), 1, + ACTIONS(707), 1, anon_sym_await, - ACTIONS(823), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(1265), 1, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(977), 1, + STATE(969), 1, sym_string, - STATE(1010), 1, + STATE(997), 1, sym_primary_expression, - STATE(1200), 1, + STATE(1283), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(811), 2, + ACTIONS(697), 2, anon_sym_match, anon_sym_type, - ACTIONS(819), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(809), 3, + ACTIONS(695), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(815), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(803), 5, + ACTIONS(689), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1226), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81074,49 +79824,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64886] = 16, - ACTIONS(715), 1, + [64601] = 16, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(727), 1, - anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(733), 1, - sym_string_start, - ACTIONS(1305), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(980), 1, + STATE(984), 1, sym_string, - STATE(1006), 1, + STATE(1124), 1, sym_primary_expression, - STATE(1229), 1, + STATE(1372), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(721), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(729), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(719), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(725), 3, + ACTIONS(656), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(713), 5, + ACTIONS(654), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(312), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1152), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81133,49 +79883,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64961] = 16, - ACTIONS(805), 1, + [64676] = 16, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(821), 1, + ACTIONS(707), 1, anon_sym_await, - ACTIONS(823), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(1265), 1, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(977), 1, + STATE(969), 1, sym_string, - STATE(1045), 1, + STATE(1023), 1, sym_primary_expression, - STATE(1200), 1, + STATE(1283), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(811), 2, + ACTIONS(697), 2, anon_sym_match, anon_sym_type, - ACTIONS(819), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(809), 3, + ACTIONS(695), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(815), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(803), 5, + ACTIONS(689), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1226), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81192,49 +79942,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65036] = 16, - ACTIONS(805), 1, + [64751] = 16, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(821), 1, + ACTIONS(751), 1, anon_sym_await, - ACTIONS(823), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1265), 1, + ACTIONS(1273), 1, anon_sym_STAR, - STATE(977), 1, + STATE(958), 1, sym_string, - STATE(1017), 1, + STATE(1028), 1, sym_primary_expression, - STATE(1200), 1, + STATE(1259), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(811), 2, + ACTIONS(741), 2, anon_sym_match, anon_sym_type, - ACTIONS(819), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(809), 3, + ACTIONS(739), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(815), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(803), 5, + ACTIONS(733), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1226), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81251,49 +80001,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65111] = 16, - ACTIONS(690), 1, + [64826] = 16, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(706), 1, + ACTIONS(707), 1, anon_sym_await, - ACTIONS(708), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(1001), 1, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(983), 1, + STATE(969), 1, sym_string, - STATE(1048), 1, + STATE(1024), 1, sym_primary_expression, - STATE(1249), 1, + STATE(1283), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 2, + ACTIONS(697), 2, anon_sym_match, anon_sym_type, - ACTIONS(704), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(694), 3, + ACTIONS(695), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(700), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(688), 5, + ACTIONS(689), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1198), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81310,55 +80060,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65186] = 18, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [64901] = 16, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2160), 1, + ACTIONS(703), 1, + anon_sym_LBRACE, + ACTIONS(707), 1, anon_sym_await, - ACTIONS(2272), 1, - sym_identifier, - STATE(1025), 1, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(1269), 1, + anon_sym_STAR, + STATE(969), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1624), 1, + STATE(1025), 1, sym_primary_expression, + STATE(1283), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2276), 2, + ACTIONS(697), 2, anon_sym_match, anon_sym_type, - STATE(1374), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2274), 3, + ACTIONS(705), 2, + sym_ellipsis, + sym_float, + ACTIONS(695), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(701), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(689), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -81371,53 +80119,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65265] = 16, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LBRACK, - ACTIONS(702), 1, + [64976] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(706), 1, - anon_sym_await, - ACTIONS(708), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(1001), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(983), 1, + ACTIONS(2144), 1, + anon_sym_await, + ACTIONS(2284), 1, + sym_identifier, + STATE(984), 1, sym_string, - STATE(1018), 1, - sym_primary_expression, - STATE(1249), 1, + STATE(1372), 1, sym_list_splat_pattern, + STATE(1603), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(704), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(694), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(700), 3, + ACTIONS(2288), 2, + anon_sym_match, + anon_sym_type, + STATE(1342), 2, + sym_attribute, + sym_subscript, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(688), 5, + ACTIONS(2286), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(312), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1198), 16, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -81430,53 +80180,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65340] = 16, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LBRACK, - ACTIONS(702), 1, + [65055] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(706), 1, - anon_sym_await, - ACTIONS(708), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(1001), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(983), 1, + ACTIONS(2252), 1, + anon_sym_await, + ACTIONS(2290), 1, + sym_identifier, + STATE(984), 1, sym_string, - STATE(1013), 1, - sym_primary_expression, - STATE(1249), 1, + STATE(1372), 1, sym_list_splat_pattern, + STATE(1598), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(704), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(694), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(700), 3, + ACTIONS(2250), 2, + anon_sym_match, + anon_sym_type, + STATE(651), 2, + sym_attribute, + sym_subscript, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(688), 5, + ACTIONS(2248), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(312), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1198), 16, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -81489,49 +80241,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65415] = 16, - ACTIONS(783), 1, + [65134] = 16, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(801), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1355), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(1034), 1, + STATE(1081), 1, sym_string, - STATE(1100), 1, + STATE(1217), 1, sym_primary_expression, - STATE(1316), 1, + STATE(1444), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(789), 2, + ACTIONS(763), 2, anon_sym_match, anon_sym_type, - ACTIONS(797), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(787), 3, + ACTIONS(761), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(793), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(781), 5, + ACTIONS(755), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1418), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81548,49 +80300,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65490] = 16, - ACTIONS(783), 1, + [65209] = 16, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(707), 1, anon_sym_await, - ACTIONS(801), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(1355), 1, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(1034), 1, + STATE(969), 1, sym_string, - STATE(1148), 1, + STATE(982), 1, sym_primary_expression, - STATE(1316), 1, + STATE(1283), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(789), 2, + ACTIONS(697), 2, anon_sym_match, anon_sym_type, - ACTIONS(797), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(787), 3, + ACTIONS(695), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(793), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(781), 5, + ACTIONS(689), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1418), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81607,49 +80359,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65565] = 16, - ACTIONS(737), 1, + [65284] = 16, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(749), 1, - anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1347), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(1110), 1, + STATE(984), 1, sym_string, - STATE(1256), 1, + STATE(1125), 1, sym_primary_expression, - STATE(1451), 1, + STATE(1372), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(743), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(751), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(741), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(747), 3, + ACTIONS(656), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(735), 5, + ACTIONS(654), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(312), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1462), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81666,49 +80418,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65640] = 16, - ACTIONS(737), 1, + [65359] = 16, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(755), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(1110), 1, + STATE(1081), 1, sym_string, - STATE(1257), 1, + STATE(1211), 1, sym_primary_expression, - STATE(1451), 1, + STATE(1444), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(743), 2, + ACTIONS(763), 2, anon_sym_match, anon_sym_type, - ACTIONS(751), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(741), 3, + ACTIONS(761), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(747), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(735), 5, + ACTIONS(755), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1462), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81725,49 +80477,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65715] = 16, - ACTIONS(737), 1, + [65434] = 16, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(751), 1, anon_sym_await, - ACTIONS(755), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1347), 1, + ACTIONS(1273), 1, anon_sym_STAR, - STATE(1110), 1, + STATE(958), 1, sym_string, - STATE(1258), 1, + STATE(983), 1, sym_primary_expression, - STATE(1451), 1, + STATE(1259), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(743), 2, + ACTIONS(741), 2, anon_sym_match, anon_sym_type, - ACTIONS(751), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(741), 3, + ACTIONS(739), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(747), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(735), 5, + ACTIONS(733), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1462), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81784,49 +80536,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65790] = 16, - ACTIONS(737), 1, + [65509] = 16, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(749), 1, - anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1347), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(1110), 1, + STATE(984), 1, sym_string, - STATE(1259), 1, + STATE(1126), 1, sym_primary_expression, - STATE(1451), 1, + STATE(1372), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(743), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(751), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(741), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(747), 3, + ACTIONS(656), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(735), 5, + ACTIONS(654), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(312), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1462), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81843,55 +80595,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65865] = 18, - ACTIONS(311), 1, + [65584] = 16, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2152), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(2278), 1, - sym_identifier, - STATE(1025), 1, + ACTIONS(1421), 1, + anon_sym_STAR, + STATE(984), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1622), 1, + STATE(1128), 1, sym_primary_expression, + STATE(1372), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(2150), 2, + ACTIONS(656), 2, anon_sym_match, anon_sym_type, - STATE(1402), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2148), 3, + ACTIONS(654), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(312), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -81904,49 +80654,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65944] = 16, - ACTIONS(737), 1, + [65659] = 16, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(755), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(1347), 1, + ACTIONS(977), 1, anon_sym_STAR, - STATE(1110), 1, + STATE(975), 1, sym_string, - STATE(1260), 1, + STATE(1022), 1, sym_primary_expression, - STATE(1451), 1, + STATE(1197), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(743), 2, + ACTIONS(672), 2, anon_sym_match, anon_sym_type, - ACTIONS(751), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(741), 3, + ACTIONS(670), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(747), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(735), 5, + ACTIONS(664), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1462), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81963,49 +80713,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66019] = 16, - ACTIONS(737), 1, + [65734] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(797), 1, anon_sym_await, - ACTIONS(755), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1347), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(1110), 1, + STATE(985), 1, sym_string, - STATE(1261), 1, + STATE(1085), 1, sym_primary_expression, - STATE(1451), 1, + STATE(1320), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(743), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(751), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(741), 3, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(747), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(735), 5, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1462), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82022,55 +80772,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66094] = 18, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [65809] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2160), 1, + ACTIONS(793), 1, + anon_sym_LBRACE, + ACTIONS(797), 1, anon_sym_await, - ACTIONS(2280), 1, - sym_identifier, - STATE(1025), 1, + ACTIONS(799), 1, + sym_string_start, + ACTIONS(1243), 1, + anon_sym_STAR, + STATE(985), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1627), 1, + STATE(1087), 1, sym_primary_expression, + STATE(1320), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2158), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - STATE(1368), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2156), 3, + ACTIONS(795), 2, + sym_ellipsis, + sym_float, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(791), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(777), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -82083,49 +80831,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66173] = 16, - ACTIONS(737), 1, + [65884] = 16, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(751), 1, anon_sym_await, - ACTIONS(755), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1347), 1, + ACTIONS(1273), 1, anon_sym_STAR, - STATE(1110), 1, + STATE(958), 1, sym_string, - STATE(1262), 1, + STATE(1004), 1, sym_primary_expression, - STATE(1451), 1, + STATE(1259), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(743), 2, + ACTIONS(741), 2, anon_sym_match, anon_sym_type, - ACTIONS(751), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(741), 3, + ACTIONS(739), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(747), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(735), 5, + ACTIONS(733), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1462), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82142,55 +80890,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66248] = 18, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [65959] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2176), 1, + ACTIONS(793), 1, + anon_sym_LBRACE, + ACTIONS(797), 1, anon_sym_await, - ACTIONS(2282), 1, - sym_identifier, - STATE(1025), 1, + ACTIONS(799), 1, + sym_string_start, + ACTIONS(1243), 1, + anon_sym_STAR, + STATE(985), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1616), 1, + STATE(1090), 1, sym_primary_expression, + STATE(1320), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2174), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - STATE(639), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2172), 3, + ACTIONS(795), 2, + sym_ellipsis, + sym_float, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(791), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(777), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -82203,49 +80949,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66327] = 16, - ACTIONS(737), 1, + [66034] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(797), 1, anon_sym_await, - ACTIONS(755), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1347), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(1110), 1, + STATE(985), 1, sym_string, - STATE(1263), 1, + STATE(1091), 1, sym_primary_expression, - STATE(1451), 1, + STATE(1320), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(743), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(751), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(741), 3, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(747), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(735), 5, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1462), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82262,49 +81008,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66402] = 16, - ACTIONS(690), 1, + [66109] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(706), 1, + ACTIONS(797), 1, anon_sym_await, - ACTIONS(708), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1001), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(983), 1, + STATE(985), 1, sym_string, - STATE(1019), 1, + STATE(1092), 1, sym_primary_expression, - STATE(1249), 1, + STATE(1320), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(704), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(694), 3, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(700), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(688), 5, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1198), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82321,53 +81067,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66477] = 16, - ACTIONS(67), 1, + [66184] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(653), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(665), 1, - anon_sym_await, - ACTIONS(1317), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(969), 1, + ACTIONS(2144), 1, + anon_sym_await, + ACTIONS(2292), 1, + sym_identifier, + STATE(984), 1, sym_string, - STATE(973), 1, - sym_primary_expression, - STATE(1135), 1, + STATE(1372), 1, sym_list_splat_pattern, + STATE(1603), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(659), 2, + ACTIONS(2288), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + STATE(1342), 2, + sym_attribute, + sym_subscript, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(657), 3, + ACTIONS(2286), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(312), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1081), 16, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -82380,49 +81128,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66552] = 16, - ACTIONS(690), 1, + [66263] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(706), 1, + ACTIONS(797), 1, anon_sym_await, - ACTIONS(708), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1001), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(983), 1, + STATE(985), 1, sym_string, - STATE(993), 1, + STATE(1093), 1, sym_primary_expression, - STATE(1249), 1, + STATE(1320), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(704), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(694), 3, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(700), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(688), 5, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1198), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82439,53 +81187,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66627] = 16, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(791), 1, - anon_sym_LBRACK, - ACTIONS(795), 1, + [66338] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(799), 1, - anon_sym_await, - ACTIONS(801), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(1355), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(1034), 1, + ACTIONS(2260), 1, + anon_sym_await, + ACTIONS(2278), 1, + sym_identifier, + STATE(984), 1, sym_string, - STATE(1102), 1, - sym_primary_expression, - STATE(1316), 1, + STATE(1372), 1, sym_list_splat_pattern, + STATE(1608), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(789), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(797), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(787), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(793), 3, + ACTIONS(2282), 2, + anon_sym_match, + anon_sym_type, + STATE(1196), 2, + sym_attribute, + sym_subscript, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(781), 5, + ACTIONS(2280), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(312), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1418), 16, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -82498,53 +81248,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66702] = 18, - ACTIONS(311), 1, + [66417] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(2168), 1, + ACTIONS(2144), 1, anon_sym_await, - ACTIONS(2266), 1, + ACTIONS(2292), 1, sym_identifier, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1632), 1, + STATE(1581), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(2270), 2, + ACTIONS(2288), 2, anon_sym_match, anon_sym_type, - STATE(1248), 2, + STATE(1342), 2, sym_attribute, sym_subscript, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2268), 3, + ACTIONS(2286), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -82559,40 +81309,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66781] = 18, - ACTIONS(311), 1, + [66496] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, + ACTIONS(1421), 1, anon_sym_STAR, ACTIONS(2154), 1, sym_identifier, ACTIONS(2160), 1, anon_sym_await, - STATE(1025), 1, + STATE(984), 1, sym_string, - STATE(1325), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1624), 1, + STATE(1607), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, ACTIONS(2158), 2, anon_sym_match, anon_sym_type, - STATE(1368), 2, + STATE(1449), 2, sym_attribute, sym_subscript, - ACTIONS(316), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -82600,12 +81350,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -82620,55 +81370,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66860] = 18, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [66575] = 16, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2144), 1, + ACTIONS(747), 1, + anon_sym_LBRACE, + ACTIONS(751), 1, anon_sym_await, - ACTIONS(2284), 1, - sym_identifier, - STATE(1025), 1, + ACTIONS(753), 1, + sym_string_start, + ACTIONS(1273), 1, + anon_sym_STAR, + STATE(958), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1631), 1, + STATE(1008), 1, sym_primary_expression, + STATE(1259), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2208), 2, + ACTIONS(741), 2, anon_sym_match, anon_sym_type, - STATE(1435), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2206), 3, + ACTIONS(749), 2, + sym_ellipsis, + sym_float, + ACTIONS(739), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(745), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(733), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -82681,49 +81429,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66939] = 16, - ACTIONS(783), 1, + [66650] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(797), 1, anon_sym_await, - ACTIONS(801), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1355), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1103), 1, + STATE(1094), 1, sym_primary_expression, - STATE(1316), 1, + STATE(1320), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(789), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(797), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(787), 3, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(793), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(781), 5, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1418), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82740,55 +81488,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [67014] = 18, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [66725] = 16, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2144), 1, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(2284), 1, - sym_identifier, - STATE(1025), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(977), 1, + anon_sym_STAR, + STATE(975), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1629), 1, + STATE(1027), 1, sym_primary_expression, + STATE(1197), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2208), 2, + ACTIONS(672), 2, anon_sym_match, anon_sym_type, - STATE(1435), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2206), 3, + ACTIONS(680), 2, + sym_ellipsis, + sym_float, + ACTIONS(670), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(676), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(664), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -82801,49 +81547,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [67093] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(653), 1, + [66800] = 16, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(665), 1, + ACTIONS(769), 1, + anon_sym_LBRACE, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(1317), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(969), 1, + STATE(1081), 1, sym_string, - STATE(986), 1, + STATE(1212), 1, sym_primary_expression, - STATE(1135), 1, + STATE(1444), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(659), 2, + ACTIONS(763), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(657), 3, + ACTIONS(771), 2, + sym_ellipsis, + sym_float, + ACTIONS(761), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(767), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(755), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1081), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82860,113 +81606,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [67168] = 21, - ACTIONS(2110), 1, - anon_sym_as, - ACTIONS(2120), 1, - anon_sym_not, - ACTIONS(2286), 1, - anon_sym_DOT, - ACTIONS(2288), 1, + [66875] = 16, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(2296), 1, - anon_sym_STAR_STAR, - ACTIONS(2298), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(2304), 1, - anon_sym_PIPE, - ACTIONS(2306), 1, - anon_sym_AMP, - ACTIONS(2308), 1, - anon_sym_CARET, - ACTIONS(2310), 1, - anon_sym_is, - STATE(1574), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2290), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2292), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2302), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2312), 2, - anon_sym_LT, - anon_sym_GT, - STATE(932), 2, - sym__not_in, - sym__is_not, - STATE(1171), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2300), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2294), 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(2096), 8, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - [67253] = 16, - ACTIONS(67), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(665), 1, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(1317), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(969), 1, + STATE(1081), 1, sym_string, - STATE(988), 1, + STATE(1213), 1, sym_primary_expression, - STATE(1135), 1, + STATE(1444), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(659), 2, + ACTIONS(763), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(657), 3, + ACTIONS(771), 2, + sym_ellipsis, + sym_float, + ACTIONS(761), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(767), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(755), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1081), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82983,241 +81665,147 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [67328] = 5, - ACTIONS(2318), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(966), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2316), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2314), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, + [66950] = 20, + ACTIONS(2078), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, + ACTIONS(2086), 1, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2096), 1, anon_sym_PIPE, - anon_sym_PLUS, + ACTIONS(2098), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2100), 1, anon_sym_AMP, + ACTIONS(2102), 1, anon_sym_CARET, - anon_sym_LT_LT, + ACTIONS(2104), 1, anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [67380] = 21, - ACTIONS(2110), 1, - anon_sym_EQ, - ACTIONS(2120), 1, - anon_sym_not, - ACTIONS(2321), 1, + ACTIONS(2294), 1, anon_sym_DOT, - ACTIONS(2323), 1, - anon_sym_LPAREN, - ACTIONS(2331), 1, - anon_sym_STAR_STAR, - ACTIONS(2333), 1, + ACTIONS(2296), 1, anon_sym_LBRACK, - ACTIONS(2339), 1, - anon_sym_PIPE, - ACTIONS(2341), 1, - anon_sym_AMP, - ACTIONS(2343), 1, - anon_sym_CARET, - ACTIONS(2345), 1, - anon_sym_is, - STATE(1573), 1, + STATE(1545), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2325), 2, + ACTIONS(2080), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2327), 2, + ACTIONS(2082), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2337), 2, + ACTIONS(2094), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2347), 2, + ACTIONS(2106), 2, anon_sym_LT, anon_sym_GT, - STATE(957), 2, + STATE(873), 2, sym__not_in, sym__is_not, - STATE(1315), 2, + STATE(1066), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2335), 3, + ACTIONS(2092), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2329), 6, + ACTIONS(2084), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2096), 7, - anon_sym_RPAREN, + ACTIONS(2074), 8, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_and, anon_sym_or, - [67464] = 20, - ACTIONS(2100), 1, + [67032] = 21, + ACTIONS(2088), 1, + anon_sym_as, + ACTIONS(2098), 1, + anon_sym_not, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(2300), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2308), 1, anon_sym_STAR_STAR, - ACTIONS(2118), 1, + ACTIONS(2310), 1, + anon_sym_LBRACK, + ACTIONS(2316), 1, anon_sym_PIPE, - ACTIONS(2120), 1, - anon_sym_not, - ACTIONS(2122), 1, + ACTIONS(2318), 1, anon_sym_AMP, - ACTIONS(2124), 1, + ACTIONS(2320), 1, anon_sym_CARET, - ACTIONS(2126), 1, + ACTIONS(2322), 1, anon_sym_is, - ACTIONS(2349), 1, - anon_sym_DOT, - ACTIONS(2351), 1, - anon_sym_LBRACK, - STATE(1564), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2102), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2104), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2116), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2128), 2, - anon_sym_LT, - anon_sym_GT, - STATE(965), 2, - sym__not_in, - sym__is_not, - STATE(1084), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2114), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2106), 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(2096), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - [67546] = 5, - ACTIONS(81), 1, - sym_string_start, + STATE(1568), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(970), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1570), 5, + ACTIONS(2302), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1565), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(2304), 2, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2314), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(2324), 2, + anon_sym_LT, + anon_sym_GT, + STATE(854), 2, + sym__not_in, + sym__is_not, + STATE(1367), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2312), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, + ACTIONS(2306), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67598] = 5, - ACTIONS(81), 1, + ACTIONS(2074), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [67116] = 5, + ACTIONS(2330), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(966), 2, + STATE(951), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2355), 5, + ACTIONS(2328), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2353), 31, + ACTIONS(2326), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -83249,62 +81837,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67650] = 21, - ACTIONS(2110), 1, + [67168] = 21, + ACTIONS(2088), 1, anon_sym_EQ, - ACTIONS(2120), 1, + ACTIONS(2098), 1, anon_sym_not, - ACTIONS(2357), 1, + ACTIONS(2333), 1, anon_sym_DOT, - ACTIONS(2359), 1, + ACTIONS(2335), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2343), 1, anon_sym_STAR_STAR, - ACTIONS(2369), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2375), 1, + ACTIONS(2351), 1, anon_sym_PIPE, - ACTIONS(2377), 1, + ACTIONS(2353), 1, anon_sym_AMP, - ACTIONS(2379), 1, + ACTIONS(2355), 1, anon_sym_CARET, - ACTIONS(2381), 1, + ACTIONS(2357), 1, anon_sym_is, - STATE(1572), 1, + STATE(1554), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2363), 2, + ACTIONS(2339), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2373), 2, + ACTIONS(2349), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2383), 2, + ACTIONS(2359), 2, anon_sym_LT, anon_sym_GT, - STATE(904), 2, + STATE(927), 2, sym__not_in, sym__is_not, - STATE(1397), 2, + STATE(1386), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2371), 3, + ACTIONS(2347), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2365), 6, + ACTIONS(2341), 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(2096), 7, + ACTIONS(2074), 7, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -83312,100 +81900,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_and, anon_sym_or, - [67734] = 21, - ACTIONS(2110), 1, - anon_sym_as, - ACTIONS(2120), 1, + [67252] = 21, + ACTIONS(2088), 1, + anon_sym_EQ, + ACTIONS(2098), 1, anon_sym_not, - ACTIONS(2385), 1, + ACTIONS(2361), 1, anon_sym_DOT, - ACTIONS(2387), 1, + ACTIONS(2363), 1, anon_sym_LPAREN, - ACTIONS(2395), 1, + ACTIONS(2371), 1, anon_sym_STAR_STAR, - ACTIONS(2397), 1, + ACTIONS(2373), 1, anon_sym_LBRACK, - ACTIONS(2403), 1, + ACTIONS(2379), 1, anon_sym_PIPE, - ACTIONS(2405), 1, + ACTIONS(2381), 1, anon_sym_AMP, - ACTIONS(2407), 1, + ACTIONS(2383), 1, anon_sym_CARET, - ACTIONS(2409), 1, + ACTIONS(2385), 1, anon_sym_is, - STATE(1589), 1, + STATE(1555), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2389), 2, + ACTIONS(2365), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2391), 2, + ACTIONS(2367), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2401), 2, + ACTIONS(2377), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2411), 2, + ACTIONS(2387), 2, anon_sym_LT, anon_sym_GT, - STATE(876), 2, + STATE(892), 2, sym__not_in, sym__is_not, - STATE(1409), 2, + STATE(1289), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2399), 3, + ACTIONS(2375), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2393), 6, + ACTIONS(2369), 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(2096), 7, + ACTIONS(2074), 7, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_and, anon_sym_or, - [67818] = 8, - ACTIONS(2098), 1, - anon_sym_DOT, - ACTIONS(2100), 1, - anon_sym_LPAREN, - ACTIONS(2108), 1, - anon_sym_STAR_STAR, - ACTIONS(2112), 1, - anon_sym_LBRACK, + [67336] = 5, + ACTIONS(81), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1084), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2415), 5, + STATE(955), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1570), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 27, + ACTIONS(1565), 31, sym__newline, anon_sym_SEMI, + anon_sym_DOT, anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -83424,81 +82010,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67875] = 12, - ACTIONS(2098), 1, - anon_sym_DOT, - ACTIONS(2100), 1, - anon_sym_LPAREN, - ACTIONS(2108), 1, - anon_sym_STAR_STAR, - ACTIONS(2112), 1, - anon_sym_LBRACK, + [67388] = 5, + ACTIONS(81), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2102), 2, + STATE(951), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2391), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2104), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2116), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1084), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2114), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 20, + ACTIONS(2389), 31, sym__newline, anon_sym_SEMI, + anon_sym_DOT, anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67940] = 8, - ACTIONS(2098), 1, + [67440] = 8, + ACTIONS(2076), 1, anon_sym_DOT, - ACTIONS(2100), 1, + ACTIONS(2078), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2086), 1, anon_sym_STAR_STAR, - ACTIONS(2112), 1, + ACTIONS(2090), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1084), 2, + STATE(1066), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2419), 5, + ACTIONS(2395), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 27, + ACTIONS(2393), 27, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -83526,28 +82106,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67997] = 8, - ACTIONS(2098), 1, + [67497] = 8, + ACTIONS(2076), 1, anon_sym_DOT, - ACTIONS(2100), 1, + ACTIONS(2078), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2086), 1, anon_sym_STAR_STAR, - ACTIONS(2112), 1, + ACTIONS(2090), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1084), 2, + STATE(1066), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2423), 5, + ACTIONS(2395), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2421), 27, + ACTIONS(2393), 27, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -83575,13 +82155,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68054] = 5, - ACTIONS(823), 1, + [67554] = 5, + ACTIONS(753), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(978), 2, + STATE(971), 2, sym_string, aux_sym_concatenated_string_repeat1, ACTIONS(1570), 5, @@ -83602,10 +82182,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -83621,34 +82201,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68105] = 5, - ACTIONS(823), 1, - sym_string_start, + [67605] = 8, + ACTIONS(2076), 1, + anon_sym_DOT, + ACTIONS(2078), 1, + anon_sym_LPAREN, + ACTIONS(2086), 1, + anon_sym_STAR_STAR, + ACTIONS(2090), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(979), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2355), 5, - anon_sym_as, + STATE(1066), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2399), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2353), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2397), 27, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -83667,22 +82250,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68156] = 5, - ACTIONS(2425), 1, + [67662] = 5, + ACTIONS(2401), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(979), 2, + STATE(960), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2316), 5, + ACTIONS(2328), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2314), 30, + ACTIONS(2326), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -83694,10 +82277,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -83713,22 +82296,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68207] = 5, - ACTIONS(733), 1, + [67713] = 5, + ACTIONS(2404), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(981), 2, + STATE(961), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1570), 5, + ACTIONS(2328), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 30, + ACTIONS(2326), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -83740,10 +82323,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -83759,43 +82342,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68258] = 5, - ACTIONS(733), 1, - sym_string_start, + [67764] = 10, + ACTIONS(2076), 1, + anon_sym_DOT, + ACTIONS(2078), 1, + anon_sym_LPAREN, + ACTIONS(2086), 1, + anon_sym_STAR_STAR, + ACTIONS(2090), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(982), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2355), 5, - anon_sym_as, + ACTIONS(2080), 2, anon_sym_STAR, anon_sym_SLASH, + STATE(1066), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2092), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2395), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2353), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2393), 24, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -83805,160 +82393,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68309] = 5, - ACTIONS(2428), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(982), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2316), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2314), 30, + [67825] = 20, + ACTIONS(2098), 1, + anon_sym_not, + ACTIONS(2407), 1, anon_sym_DOT, + ACTIONS(2409), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, + ACTIONS(2417), 1, anon_sym_STAR_STAR, + ACTIONS(2419), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2425), 1, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2427), 1, anon_sym_AMP, + ACTIONS(2429), 1, anon_sym_CARET, - anon_sym_LT_LT, + ACTIONS(2431), 1, anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [68360] = 5, - ACTIONS(708), 1, - sym_string_start, + STATE(1559), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(984), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1570), 5, + ACTIONS(2411), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1565), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(2413), 2, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2423), 2, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(2433), 2, + anon_sym_LT, + anon_sym_GT, + STATE(947), 2, + sym__not_in, + sym__is_not, + STATE(1417), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2421), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, + ACTIONS(2415), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [68411] = 5, - ACTIONS(708), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(985), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2355), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2353), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2074), 7, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, + anon_sym_RBRACK, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - sym_type_conversion, - [68462] = 5, - ACTIONS(2431), 1, + [67906] = 5, + ACTIONS(684), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(985), 2, + STATE(970), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2316), 5, + ACTIONS(2391), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2314), 30, + ACTIONS(2389), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -83989,28 +82500,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [68513] = 8, - ACTIONS(2098), 1, + [67957] = 11, + ACTIONS(2076), 1, anon_sym_DOT, - ACTIONS(2100), 1, + ACTIONS(2078), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2086), 1, anon_sym_STAR_STAR, - ACTIONS(2112), 1, + ACTIONS(2090), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1084), 2, + ACTIONS(2080), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2094), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1066), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2415), 5, - anon_sym_STAR, + ACTIONS(2092), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2395), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 27, + ACTIONS(2393), 22, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -84020,15 +82539,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -84038,42 +82552,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68570] = 11, - ACTIONS(2098), 1, + [68020] = 14, + ACTIONS(2076), 1, anon_sym_DOT, - ACTIONS(2100), 1, + ACTIONS(2078), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2086), 1, anon_sym_STAR_STAR, - ACTIONS(2112), 1, + ACTIONS(2090), 1, anon_sym_LBRACK, + ACTIONS(2100), 1, + anon_sym_AMP, + ACTIONS(2102), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2102), 2, + ACTIONS(2080), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2116), 2, + ACTIONS(2082), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2094), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1084), 2, + STATE(1066), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2114), 3, + ACTIONS(2092), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, + ACTIONS(2395), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 22, + ACTIONS(2393), 18, sym__newline, anon_sym_SEMI, anon_sym_from, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, @@ -84081,54 +82601,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68633] = 15, - ACTIONS(2098), 1, + [68089] = 13, + ACTIONS(2076), 1, anon_sym_DOT, - ACTIONS(2100), 1, + ACTIONS(2078), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2086), 1, anon_sym_STAR_STAR, - ACTIONS(2112), 1, + ACTIONS(2090), 1, anon_sym_LBRACK, - ACTIONS(2118), 1, - anon_sym_PIPE, - ACTIONS(2122), 1, - anon_sym_AMP, - ACTIONS(2124), 1, + ACTIONS(2102), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2102), 2, + ACTIONS(2080), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2104), 2, + ACTIONS(2082), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2116), 2, + ACTIONS(2094), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1084), 2, + STATE(1066), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2114), 3, + ACTIONS(2092), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2436), 3, + ACTIONS(2395), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2434), 17, + ACTIONS(2393), 19, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -84137,57 +82650,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68704] = 10, - ACTIONS(2098), 1, - anon_sym_DOT, - ACTIONS(2100), 1, - anon_sym_LPAREN, - ACTIONS(2108), 1, - anon_sym_STAR_STAR, - ACTIONS(2112), 1, - anon_sym_LBRACK, + [68156] = 5, + ACTIONS(709), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2102), 2, + STATE(961), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2391), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - STATE(1084), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2114), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 24, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2389), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -84197,96 +82707,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68765] = 14, - ACTIONS(2098), 1, + [68207] = 5, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(968), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1570), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1565), 30, anon_sym_DOT, - ACTIONS(2100), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(2112), 1, anon_sym_LBRACK, - ACTIONS(2122), 1, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(2124), 1, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [68258] = 5, + ACTIONS(2435), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2102), 2, + STATE(970), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2328), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2104), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2326), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2116), 2, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, - STATE(1084), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2114), 3, - anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [68309] = 5, + ACTIONS(753), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(960), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2391), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2389), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68834] = 13, - ACTIONS(2098), 1, + [68360] = 12, + ACTIONS(2076), 1, anon_sym_DOT, - ACTIONS(2100), 1, + ACTIONS(2078), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2086), 1, anon_sym_STAR_STAR, - ACTIONS(2112), 1, + ACTIONS(2090), 1, anon_sym_LBRACK, - ACTIONS(2124), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2102), 2, + ACTIONS(2080), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2104), 2, + ACTIONS(2082), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2116), 2, + ACTIONS(2094), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1084), 2, + STATE(1066), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2114), 3, + ACTIONS(2092), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, + ACTIONS(2395), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 19, + ACTIONS(2393), 20, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -84300,95 +82891,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_AMP, + anon_sym_CARET, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68901] = 20, - ACTIONS(2120), 1, - anon_sym_not, - ACTIONS(2438), 1, + [68425] = 15, + ACTIONS(2076), 1, anon_sym_DOT, - ACTIONS(2440), 1, + ACTIONS(2078), 1, anon_sym_LPAREN, - ACTIONS(2448), 1, + ACTIONS(2086), 1, anon_sym_STAR_STAR, - ACTIONS(2450), 1, + ACTIONS(2090), 1, anon_sym_LBRACK, - ACTIONS(2456), 1, + ACTIONS(2096), 1, anon_sym_PIPE, - ACTIONS(2458), 1, + ACTIONS(2100), 1, anon_sym_AMP, - ACTIONS(2460), 1, + ACTIONS(2102), 1, anon_sym_CARET, - ACTIONS(2462), 1, - anon_sym_is, - STATE(1578), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2442), 2, + ACTIONS(2080), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2444), 2, + ACTIONS(2082), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2454), 2, + ACTIONS(2094), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2464), 2, - anon_sym_LT, - anon_sym_GT, - STATE(945), 2, - sym__not_in, - sym__is_not, - STATE(1440), 2, + STATE(1066), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2452), 3, + ACTIONS(2092), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2446), 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(2096), 7, + ACTIONS(2440), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2438), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_in, + anon_sym_not, anon_sym_and, anon_sym_or, - [68982] = 8, - ACTIONS(2210), 1, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [68496] = 8, + ACTIONS(2076), 1, anon_sym_DOT, - ACTIONS(2212), 1, + ACTIONS(2078), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2086), 1, anon_sym_STAR_STAR, - ACTIONS(2222), 1, + ACTIONS(2090), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1205), 2, + STATE(1066), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2415), 5, + ACTIONS(2444), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 26, + ACTIONS(2442), 27, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -84398,7 +82988,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -84414,23 +83003,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [69038] = 5, - ACTIONS(328), 1, + [68553] = 5, + ACTIONS(684), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(995), 2, + STATE(964), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2355), 5, + ACTIONS(1570), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2353), 29, + ACTIONS(1565), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -84438,13 +83026,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -84460,30 +83048,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69088] = 5, - ACTIONS(2466), 1, - sym_string_start, + sym_type_conversion, + [68604] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(995), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2316), 5, + ACTIONS(2448), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2314), 29, + ACTIONS(2446), 32, + sym__newline, + sym_string_start, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -84505,37 +83092,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69138] = 6, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(2469), 1, + [68650] = 8, + ACTIONS(2188), 1, + anon_sym_DOT, + ACTIONS(2190), 1, + anon_sym_LPAREN, + ACTIONS(2198), 1, + anon_sym_STAR_STAR, + ACTIONS(2200), 1, anon_sym_LBRACK, - STATE(2076), 1, - sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + STATE(1233), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2395), 5, anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2393), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -84551,26 +83140,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69190] = 6, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(2469), 1, - anon_sym_LBRACK, - STATE(2090), 1, - sym_type_parameter, + [68706] = 5, + ACTIONS(799), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, + STATE(981), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2391), 5, anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 28, + ACTIONS(2389), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -84578,7 +83166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -84597,84 +83185,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69242] = 8, - ACTIONS(2286), 1, + [68756] = 10, + ACTIONS(2218), 1, anon_sym_DOT, - ACTIONS(2288), 1, + ACTIONS(2220), 1, anon_sym_LPAREN, - ACTIONS(2296), 1, + ACTIONS(2228), 1, anon_sym_STAR_STAR, - ACTIONS(2298), 1, + ACTIONS(2230), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1171), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2419), 5, - anon_sym_as, + ACTIONS(2222), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2417), 26, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, + STATE(1144), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2232), 3, anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [69298] = 8, - ACTIONS(2286), 1, - anon_sym_DOT, - ACTIONS(2288), 1, - anon_sym_LPAREN, - ACTIONS(2296), 1, - anon_sym_STAR_STAR, - ACTIONS(2298), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1171), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2423), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2395), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2421), 26, + ACTIONS(2393), 23, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, @@ -84682,8 +83225,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -84693,20 +83234,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69354] = 4, - ACTIONS(292), 1, + sym_type_conversion, + [68816] = 4, + ACTIONS(280), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(267), 6, anon_sym_STAR, anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, + ACTIONS(265), 30, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -84737,28 +83279,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69402] = 3, + [68864] = 5, + ACTIONS(2450), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 5, + STATE(981), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2328), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2471), 32, - sym__newline, - sym_string_start, - anon_sym_SEMI, + ACTIONS(2326), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -84780,86 +83324,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69448] = 8, - ACTIONS(2286), 1, + [68914] = 12, + ACTIONS(2110), 1, anon_sym_DOT, - ACTIONS(2288), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2296), 1, + ACTIONS(2120), 1, anon_sym_STAR_STAR, - ACTIONS(2298), 1, + ACTIONS(2122), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1171), 2, + ACTIONS(2114), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2116), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2126), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1281), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2415), 5, + ACTIONS(2124), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2395), 3, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 26, + ACTIONS(2393), 19, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_AT, - anon_sym_DASH, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69504] = 11, - ACTIONS(2286), 1, + [68978] = 12, + ACTIONS(2188), 1, anon_sym_DOT, - ACTIONS(2288), 1, + ACTIONS(2190), 1, anon_sym_LPAREN, - ACTIONS(2296), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - ACTIONS(2298), 1, + ACTIONS(2200), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2290), 2, + ACTIONS(2192), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2302), 2, + ACTIONS(2194), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2204), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1171), 2, + STATE(1233), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2300), 3, + ACTIONS(2202), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, + ACTIONS(2395), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 21, + ACTIONS(2393), 19, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_async, @@ -84872,101 +83422,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69566] = 15, - ACTIONS(2286), 1, - anon_sym_DOT, - ACTIONS(2288), 1, - anon_sym_LPAREN, - ACTIONS(2296), 1, - anon_sym_STAR_STAR, - ACTIONS(2298), 1, - anon_sym_LBRACK, - ACTIONS(2304), 1, - anon_sym_PIPE, - ACTIONS(2306), 1, - anon_sym_AMP, - ACTIONS(2308), 1, - anon_sym_CARET, + [69042] = 5, + ACTIONS(316), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2290), 2, + STATE(1013), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1570), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2292), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2302), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1171), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2300), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2436), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2434), 16, + ACTIONS(1565), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, - anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69636] = 8, - ACTIONS(2286), 1, - anon_sym_DOT, - ACTIONS(2288), 1, - anon_sym_LPAREN, - ACTIONS(2296), 1, - anon_sym_STAR_STAR, - ACTIONS(2298), 1, - anon_sym_LBRACK, + [69092] = 5, + ACTIONS(799), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1171), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2415), 5, + STATE(978), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1570), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 26, + ACTIONS(1565), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -84982,47 +83518,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69692] = 10, - ACTIONS(2286), 1, - anon_sym_DOT, - ACTIONS(2288), 1, - anon_sym_LPAREN, - ACTIONS(2296), 1, - anon_sym_STAR_STAR, - ACTIONS(2298), 1, - anon_sym_LBRACK, + [69142] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2290), 2, + ACTIONS(2455), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - STATE(1171), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2300), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 23, + ACTIONS(2453), 32, + sym__newline, + sym_string_start, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -85032,187 +83561,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69752] = 14, - ACTIONS(2286), 1, - anon_sym_DOT, - ACTIONS(2288), 1, - anon_sym_LPAREN, - ACTIONS(2296), 1, - anon_sym_STAR_STAR, - ACTIONS(2298), 1, - anon_sym_LBRACK, - ACTIONS(2306), 1, - anon_sym_AMP, - ACTIONS(2308), 1, - anon_sym_CARET, + [69188] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2290), 2, + ACTIONS(1720), 6, + anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2292), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2302), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1171), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2300), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 17, + ACTIONS(1718), 31, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69820] = 13, - ACTIONS(2286), 1, - anon_sym_DOT, - ACTIONS(2288), 1, - anon_sym_LPAREN, - ACTIONS(2296), 1, - anon_sym_STAR_STAR, - ACTIONS(2298), 1, - anon_sym_LBRACK, - ACTIONS(2308), 1, - anon_sym_CARET, + sym_type_conversion, + [69234] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2290), 2, + ACTIONS(1672), 6, + anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2292), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2302), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1171), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2300), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 18, + ACTIONS(1670), 31, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69886] = 12, - ACTIONS(2286), 1, + sym_type_conversion, + [69280] = 20, + ACTIONS(2098), 1, + anon_sym_not, + ACTIONS(2188), 1, anon_sym_DOT, - ACTIONS(2288), 1, + ACTIONS(2200), 1, + anon_sym_LBRACK, + ACTIONS(2220), 1, anon_sym_LPAREN, - ACTIONS(2296), 1, + ACTIONS(2228), 1, anon_sym_STAR_STAR, - ACTIONS(2298), 1, - anon_sym_LBRACK, + ACTIONS(2236), 1, + anon_sym_PIPE, + ACTIONS(2238), 1, + anon_sym_AMP, + ACTIONS(2240), 1, + anon_sym_CARET, + ACTIONS(2242), 1, + anon_sym_is, + STATE(1558), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2290), 2, + ACTIONS(2222), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2292), 2, + ACTIONS(2224), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2302), 2, + ACTIONS(2234), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1171), 2, + ACTIONS(2244), 2, + anon_sym_LT, + anon_sym_GT, + STATE(856), 2, + sym__not_in, + sym__is_not, + STATE(1144), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2300), 3, + ACTIONS(2232), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2413), 19, + ACTIONS(2074), 6, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_is, + ACTIONS(2226), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69950] = 8, - ACTIONS(2238), 1, + [69360] = 10, + ACTIONS(2188), 1, anon_sym_DOT, - ACTIONS(2240), 1, + ACTIONS(2190), 1, anon_sym_LPAREN, - ACTIONS(2248), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - ACTIONS(2250), 1, + ACTIONS(2200), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1250), 2, + ACTIONS(2192), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1233), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2419), 5, + ACTIONS(2202), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2395), 3, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 26, + ACTIONS(2393), 23, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -85220,16 +83741,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -85239,28 +83757,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70006] = 8, - ACTIONS(2238), 1, + [69420] = 8, + ACTIONS(2110), 1, anon_sym_DOT, - ACTIONS(2240), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2248), 1, + ACTIONS(2120), 1, anon_sym_STAR_STAR, - ACTIONS(2250), 1, + ACTIONS(2122), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1250), 2, + STATE(1281), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2423), 5, + ACTIONS(2444), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2421), 26, + ACTIONS(2442), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -85287,29 +83805,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70062] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [69476] = 5, + ACTIONS(731), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + STATE(998), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2391), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2389), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -85331,119 +83850,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70110] = 8, - ACTIONS(2210), 1, + [69526] = 15, + ACTIONS(2188), 1, anon_sym_DOT, - ACTIONS(2212), 1, + ACTIONS(2190), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - ACTIONS(2222), 1, + ACTIONS(2200), 1, anon_sym_LBRACK, + ACTIONS(2206), 1, + anon_sym_PIPE, + ACTIONS(2208), 1, + anon_sym_AMP, + ACTIONS(2210), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1205), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2419), 5, + ACTIONS(2192), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2194), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2204), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1233), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2202), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2440), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 26, + ACTIONS(2438), 16, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [70166] = 8, - ACTIONS(2210), 1, + [69596] = 20, + ACTIONS(2098), 1, + anon_sym_not, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(2212), 1, + ACTIONS(2310), 1, + anon_sym_LBRACK, + ACTIONS(2363), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2371), 1, anon_sym_STAR_STAR, - ACTIONS(2222), 1, - anon_sym_LBRACK, + ACTIONS(2379), 1, + anon_sym_PIPE, + ACTIONS(2381), 1, + anon_sym_AMP, + ACTIONS(2383), 1, + anon_sym_CARET, + ACTIONS(2385), 1, + anon_sym_is, + STATE(1555), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1205), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2423), 5, + ACTIONS(2365), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2367), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2387), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2421), 26, + STATE(892), 2, + sym__not_in, + sym__is_not, + STATE(1289), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2375), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2074), 6, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, + ACTIONS(2369), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [70222] = 3, + [69676] = 5, + ACTIONS(731), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 5, + STATE(992), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1570), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 32, - sym__newline, - sym_string_start, - anon_sym_SEMI, + ACTIONS(1565), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -85470,18 +84010,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70268] = 3, + [69726] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1690), 6, + ACTIONS(1716), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1688), 31, + ACTIONS(1714), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -85513,99 +84053,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [70314] = 12, - ACTIONS(2238), 1, + [69772] = 8, + ACTIONS(2110), 1, anon_sym_DOT, - ACTIONS(2240), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2248), 1, + ACTIONS(2120), 1, anon_sym_STAR_STAR, - ACTIONS(2250), 1, + ACTIONS(2122), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2242), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2244), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2254), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1250), 2, + STATE(1281), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2252), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, + ACTIONS(2399), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 19, + ACTIONS(2397), 26, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70378] = 11, - ACTIONS(2210), 1, - anon_sym_DOT, - ACTIONS(2212), 1, - anon_sym_LPAREN, - ACTIONS(2220), 1, - anon_sym_STAR_STAR, - ACTIONS(2222), 1, - anon_sym_LBRACK, + [69828] = 5, + ACTIONS(2457), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2214), 2, + STATE(998), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2328), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2226), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1205), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2224), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 21, + ACTIONS(2326), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -85615,84 +84146,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [70440] = 15, - ACTIONS(2210), 1, + [69878] = 8, + ACTIONS(2110), 1, anon_sym_DOT, - ACTIONS(2212), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2120), 1, anon_sym_STAR_STAR, - ACTIONS(2222), 1, + ACTIONS(2122), 1, anon_sym_LBRACK, - ACTIONS(2228), 1, - anon_sym_PIPE, - ACTIONS(2230), 1, - anon_sym_AMP, - ACTIONS(2232), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2216), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2226), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1205), 2, + STATE(1281), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2224), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2436), 3, - anon_sym_EQ, + ACTIONS(2395), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2434), 16, + ACTIONS(2393), 26, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [70510] = 5, - ACTIONS(2479), 1, - sym_string_start, + [69934] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1020), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2316), 5, + ACTIONS(1708), 6, anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2314), 29, + ACTIONS(1706), 31, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -85701,6 +84220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -85716,43 +84236,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70560] = 10, - ACTIONS(2210), 1, + sym_type_conversion, + [69980] = 11, + ACTIONS(2110), 1, anon_sym_DOT, - ACTIONS(2212), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2120), 1, anon_sym_STAR_STAR, - ACTIONS(2222), 1, + ACTIONS(2122), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2214), 2, + ACTIONS(2114), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1205), 2, + ACTIONS(2126), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1281), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2224), 3, + ACTIONS(2124), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_EQ, + ACTIONS(2395), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 23, + ACTIONS(2393), 21, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_DASH, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, @@ -85765,96 +84288,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [70620] = 14, - ACTIONS(2210), 1, - anon_sym_DOT, - ACTIONS(2212), 1, - anon_sym_LPAREN, - ACTIONS(2220), 1, - anon_sym_STAR_STAR, - ACTIONS(2222), 1, + [70042] = 6, + ACTIONS(1572), 1, + anon_sym_COLON_EQ, + ACTIONS(2460), 1, anon_sym_LBRACK, - ACTIONS(2230), 1, - anon_sym_AMP, - ACTIONS(2232), 1, - anon_sym_CARET, + STATE(2011), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2214), 2, + ACTIONS(1570), 6, + anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, - ACTIONS(2216), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2226), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1205), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2224), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 17, + ACTIONS(1565), 28, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [70688] = 13, - ACTIONS(2210), 1, + [70094] = 14, + ACTIONS(2218), 1, anon_sym_DOT, - ACTIONS(2212), 1, - anon_sym_LPAREN, ACTIONS(2220), 1, + anon_sym_LPAREN, + ACTIONS(2228), 1, anon_sym_STAR_STAR, - ACTIONS(2222), 1, + ACTIONS(2230), 1, anon_sym_LBRACK, - ACTIONS(2232), 1, + ACTIONS(2238), 1, + anon_sym_AMP, + ACTIONS(2240), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2214), 2, + ACTIONS(2222), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2216), 2, + ACTIONS(2224), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2226), 2, + ACTIONS(2234), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1205), 2, + STATE(1144), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2224), 3, + ACTIONS(2232), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, + ACTIONS(2395), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 18, + ACTIONS(2393), 17, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -85865,7 +84381,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -85873,43 +84388,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [70754] = 12, - ACTIONS(2210), 1, + [70162] = 11, + ACTIONS(2188), 1, anon_sym_DOT, - ACTIONS(2212), 1, + ACTIONS(2190), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - ACTIONS(2222), 1, + ACTIONS(2200), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2214), 2, + ACTIONS(2192), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2216), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2226), 2, + ACTIONS(2204), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1205), 2, + STATE(1233), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2224), 3, + ACTIONS(2202), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_EQ, + ACTIONS(2395), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 19, + ACTIONS(2393), 21, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_RBRACE, @@ -85918,43 +84432,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [70818] = 5, - ACTIONS(328), 1, - sym_string_start, + [70224] = 8, + ACTIONS(2218), 1, + anon_sym_DOT, + ACTIONS(2220), 1, + anon_sym_LPAREN, + ACTIONS(2228), 1, + anon_sym_STAR_STAR, + ACTIONS(2230), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(994), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1570), 5, + STATE(1144), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2399), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2397), 26, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -85970,29 +84486,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70868] = 4, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [70280] = 5, + ACTIONS(2462), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, + STATE(1006), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2328), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2326), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -86014,106 +84532,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70916] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1671), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1669), 31, + [70330] = 20, + ACTIONS(2098), 1, + anon_sym_not, + ACTIONS(2110), 1, anon_sym_DOT, + ACTIONS(2122), 1, + anon_sym_LBRACK, + ACTIONS(2409), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, + ACTIONS(2417), 1, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2425), 1, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2427), 1, anon_sym_AMP, + ACTIONS(2429), 1, anon_sym_CARET, - anon_sym_LT_LT, + ACTIONS(2431), 1, anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - sym_type_conversion, - [70962] = 3, + STATE(1559), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1694), 6, - anon_sym_as, + ACTIONS(2411), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2413), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2423), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2433), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1692), 31, - anon_sym_DOT, - anon_sym_LPAREN, + STATE(947), 2, + sym__not_in, + sym__is_not, + STATE(1417), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2421), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2074), 6, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, + anon_sym_RBRACK, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, + ACTIONS(2415), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [71008] = 3, + [70410] = 8, + ACTIONS(2188), 1, + anon_sym_DOT, + ACTIONS(2190), 1, + anon_sym_LPAREN, + ACTIONS(2198), 1, + anon_sym_STAR_STAR, + ACTIONS(2200), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 6, + STATE(1233), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2399), 5, anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 31, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2397), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -86121,8 +84621,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -86142,129 +84640,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [71054] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1643), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 31, + [70466] = 15, + ACTIONS(2110), 1, anon_sym_DOT, + ACTIONS(2112), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, + ACTIONS(2120), 1, anon_sym_STAR_STAR, + ACTIONS(2122), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2128), 1, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2130), 1, anon_sym_AMP, + ACTIONS(2132), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - sym_type_conversion, - [71100] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 6, - anon_sym_as, + ACTIONS(2114), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2116), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2126), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1281), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2124), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2440), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 31, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2438), 16, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [71146] = 3, + [70536] = 13, + ACTIONS(2218), 1, + anon_sym_DOT, + ACTIONS(2220), 1, + anon_sym_LPAREN, + ACTIONS(2228), 1, + anon_sym_STAR_STAR, + ACTIONS(2230), 1, + anon_sym_LBRACK, + ACTIONS(2240), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 6, - anon_sym_as, + ACTIONS(2222), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2224), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2234), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1144), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2232), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2395), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 31, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2393), 18, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -86272,90 +84748,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [71192] = 20, - ACTIONS(2120), 1, - anon_sym_not, - ACTIONS(2323), 1, + [70602] = 12, + ACTIONS(2218), 1, + anon_sym_DOT, + ACTIONS(2220), 1, anon_sym_LPAREN, - ACTIONS(2331), 1, + ACTIONS(2228), 1, anon_sym_STAR_STAR, - ACTIONS(2339), 1, - anon_sym_PIPE, - ACTIONS(2341), 1, - anon_sym_AMP, - ACTIONS(2343), 1, - anon_sym_CARET, - ACTIONS(2345), 1, - anon_sym_is, - ACTIONS(2385), 1, - anon_sym_DOT, - ACTIONS(2397), 1, + ACTIONS(2230), 1, anon_sym_LBRACK, - STATE(1573), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2325), 2, + ACTIONS(2222), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2327), 2, + ACTIONS(2224), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2337), 2, + ACTIONS(2234), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2347), 2, - anon_sym_LT, - anon_sym_GT, - STATE(957), 2, - sym__not_in, - sym__is_not, - STATE(1315), 2, + STATE(1144), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2335), 3, + ACTIONS(2232), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2096), 6, - anon_sym_RPAREN, + ACTIONS(2395), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2393), 19, anon_sym_COMMA, anon_sym_as, anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(2329), 6, - anon_sym_in, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71272] = 5, - ACTIONS(801), 1, - sym_string_start, + sym_type_conversion, + [70666] = 4, + ACTIONS(1572), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1035), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1570), 5, + ACTIONS(1570), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(1565), 30, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -86377,30 +84844,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71322] = 5, - ACTIONS(801), 1, + [70714] = 5, + ACTIONS(316), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1036), 2, + STATE(1006), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2355), 5, + ACTIONS(2391), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2353), 29, + ACTIONS(2389), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -86422,36 +84889,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71372] = 5, - ACTIONS(2482), 1, - sym_string_start, + [70764] = 8, + ACTIONS(2188), 1, + anon_sym_DOT, + ACTIONS(2190), 1, + anon_sym_LPAREN, + ACTIONS(2198), 1, + anon_sym_STAR_STAR, + ACTIONS(2200), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1036), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2316), 5, + STATE(1233), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2444), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2314), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2442), 26, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -86467,88 +84937,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71422] = 20, - ACTIONS(2120), 1, - anon_sym_not, - ACTIONS(2238), 1, + [70820] = 8, + ACTIONS(2218), 1, anon_sym_DOT, - ACTIONS(2250), 1, - anon_sym_LBRACK, - ACTIONS(2440), 1, + ACTIONS(2220), 1, anon_sym_LPAREN, - ACTIONS(2448), 1, + ACTIONS(2228), 1, anon_sym_STAR_STAR, - ACTIONS(2456), 1, - anon_sym_PIPE, - ACTIONS(2458), 1, - anon_sym_AMP, - ACTIONS(2460), 1, - anon_sym_CARET, - ACTIONS(2462), 1, - anon_sym_is, - STATE(1578), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(2230), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2442), 2, + STATE(1144), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2395), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2444), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2454), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2464), 2, anon_sym_LT, anon_sym_GT, - STATE(945), 2, - sym__not_in, - sym__is_not, - STATE(1440), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2452), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2096), 6, + ACTIONS(2393), 26, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_in, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(2446), 6, - anon_sym_in, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71502] = 8, - ACTIONS(2238), 1, + sym_type_conversion, + [70876] = 8, + ACTIONS(2110), 1, anon_sym_DOT, - ACTIONS(2240), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2248), 1, + ACTIONS(2120), 1, anon_sym_STAR_STAR, - ACTIONS(2250), 1, + ACTIONS(2122), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1250), 2, + STATE(1281), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2415), 5, + ACTIONS(2395), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 26, + ACTIONS(2393), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -86575,36 +85033,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71558] = 11, - ACTIONS(2238), 1, - anon_sym_DOT, - ACTIONS(2240), 1, - anon_sym_LPAREN, - ACTIONS(2248), 1, - anon_sym_STAR_STAR, - ACTIONS(2250), 1, - anon_sym_LBRACK, + [70932] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2242), 2, + ACTIONS(1635), 6, + anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2254), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1250), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2252), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 21, + ACTIONS(1633), 31, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -86612,11 +85054,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -86626,83 +85075,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71620] = 15, - ACTIONS(2238), 1, - anon_sym_DOT, - ACTIONS(2240), 1, - anon_sym_LPAREN, - ACTIONS(2248), 1, - anon_sym_STAR_STAR, - ACTIONS(2250), 1, - anon_sym_LBRACK, - ACTIONS(2256), 1, - anon_sym_PIPE, - ACTIONS(2258), 1, - anon_sym_AMP, - ACTIONS(2260), 1, - anon_sym_CARET, + sym_type_conversion, + [70978] = 4, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2242), 2, + ACTIONS(267), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2244), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2254), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1250), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2252), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2436), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2434), 16, + ACTIONS(265), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71690] = 8, - ACTIONS(2238), 1, - anon_sym_DOT, - ACTIONS(2240), 1, - anon_sym_LPAREN, - ACTIONS(2248), 1, - anon_sym_STAR_STAR, - ACTIONS(2250), 1, - anon_sym_LBRACK, + [71026] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1250), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2415), 5, + ACTIONS(1720), 6, anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 26, + ACTIONS(1718), 31, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -86710,10 +85141,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -86729,47 +85162,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71746] = 10, - ACTIONS(2238), 1, + sym_type_conversion, + [71072] = 8, + ACTIONS(2218), 1, anon_sym_DOT, - ACTIONS(2240), 1, + ACTIONS(2220), 1, anon_sym_LPAREN, - ACTIONS(2248), 1, + ACTIONS(2228), 1, anon_sym_STAR_STAR, - ACTIONS(2250), 1, + ACTIONS(2230), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2242), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1250), 2, + STATE(1144), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2252), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_as, + ACTIONS(2444), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 23, + ACTIONS(2442), 26, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -86779,90 +85210,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71806] = 14, - ACTIONS(2238), 1, + sym_type_conversion, + [71128] = 8, + ACTIONS(2188), 1, anon_sym_DOT, - ACTIONS(2240), 1, + ACTIONS(2190), 1, anon_sym_LPAREN, - ACTIONS(2248), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - ACTIONS(2250), 1, + ACTIONS(2200), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, - anon_sym_AMP, - ACTIONS(2260), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2242), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2244), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2254), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1250), 2, + STATE(1233), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2252), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, + ACTIONS(2395), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 17, + ACTIONS(2393), 26, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71874] = 5, - ACTIONS(779), 1, - sym_string_start, + [71184] = 8, + ACTIONS(2218), 1, + anon_sym_DOT, + ACTIONS(2220), 1, + anon_sym_LPAREN, + ACTIONS(2228), 1, + anon_sym_STAR_STAR, + ACTIONS(2230), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1046), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1570), 5, - anon_sym_as, + STATE(1144), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2395), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2393), 26, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -86878,95 +85306,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71924] = 13, - ACTIONS(2238), 1, + sym_type_conversion, + [71240] = 10, + ACTIONS(2110), 1, anon_sym_DOT, - ACTIONS(2240), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2248), 1, + ACTIONS(2120), 1, anon_sym_STAR_STAR, - ACTIONS(2250), 1, + ACTIONS(2122), 1, anon_sym_LBRACK, - ACTIONS(2260), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2242), 2, + ACTIONS(2114), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2244), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2254), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1250), 2, + STATE(1281), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2252), 3, + ACTIONS(2124), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, + ACTIONS(2395), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 18, + ACTIONS(2393), 23, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [71990] = 5, - ACTIONS(779), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1020), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2355), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2353), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -86976,279 +85357,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72040] = 20, - ACTIONS(2120), 1, - anon_sym_not, - ACTIONS(2212), 1, + [71300] = 14, + ACTIONS(2110), 1, + anon_sym_DOT, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2120), 1, anon_sym_STAR_STAR, - ACTIONS(2228), 1, - anon_sym_PIPE, - ACTIONS(2230), 1, + ACTIONS(2122), 1, + anon_sym_LBRACK, + ACTIONS(2130), 1, anon_sym_AMP, - ACTIONS(2232), 1, + ACTIONS(2132), 1, anon_sym_CARET, - ACTIONS(2234), 1, - anon_sym_is, - ACTIONS(2286), 1, - anon_sym_DOT, - ACTIONS(2298), 1, - anon_sym_LBRACK, - STATE(1576), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2214), 2, + ACTIONS(2114), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2216), 2, + ACTIONS(2116), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2226), 2, + ACTIONS(2126), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2236), 2, - anon_sym_LT, - anon_sym_GT, - STATE(954), 2, - sym__not_in, - sym__is_not, - STATE(1205), 2, + STATE(1281), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2224), 3, + ACTIONS(2124), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2096), 6, - anon_sym_COMMA, + ACTIONS(2395), 3, anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2393), 17, + anon_sym_COMMA, anon_sym_if, - anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(2218), 6, - anon_sym_in, + anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72120] = 8, - ACTIONS(2210), 1, + [71368] = 13, + ACTIONS(2110), 1, anon_sym_DOT, - ACTIONS(2212), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2120), 1, anon_sym_STAR_STAR, - ACTIONS(2222), 1, + ACTIONS(2122), 1, anon_sym_LBRACK, + ACTIONS(2132), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1205), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2415), 5, + ACTIONS(2114), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2116), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2126), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1281), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2124), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2395), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 26, + ACTIONS(2393), 18, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_AT, - anon_sym_DASH, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [72176] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2487), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2485), 31, - sym__newline, - anon_sym_SEMI, + [71434] = 14, + ACTIONS(2188), 1, anon_sym_DOT, - anon_sym_from, + ACTIONS(2190), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, + ACTIONS(2198), 1, anon_sym_STAR_STAR, + ACTIONS(2200), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2208), 1, anon_sym_AMP, + ACTIONS(2210), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [72221] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(2192), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2489), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(2194), 2, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2204), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(1233), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2202), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [72266] = 4, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1570), 6, + ACTIONS(2395), 3, anon_sym_as, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2393), 17, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72313] = 8, - ACTIONS(2357), 1, + [71502] = 11, + ACTIONS(2218), 1, anon_sym_DOT, - ACTIONS(2359), 1, + ACTIONS(2220), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2228), 1, anon_sym_STAR_STAR, - ACTIONS(2369), 1, + ACTIONS(2230), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1397), 2, + ACTIONS(2222), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2234), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1144), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2419), 5, - anon_sym_STAR, + ACTIONS(2232), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2395), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 25, + ACTIONS(2393), 21, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + anon_sym_or, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -87258,65 +85568,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72368] = 8, - ACTIONS(2357), 1, + sym_type_conversion, + [71564] = 13, + ACTIONS(2188), 1, anon_sym_DOT, - ACTIONS(2359), 1, + ACTIONS(2190), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - ACTIONS(2369), 1, + ACTIONS(2200), 1, anon_sym_LBRACK, + ACTIONS(2210), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1397), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2423), 5, + ACTIONS(2192), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2194), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2204), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1233), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2202), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2395), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2421), 25, + ACTIONS(2393), 18, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72423] = 3, + [71630] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 5, + ACTIONS(1672), 6, anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 31, - sym_string_start, + ACTIONS(1670), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -87328,10 +85645,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -87347,85 +85664,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72468] = 10, - ACTIONS(2385), 1, + sym_type_conversion, + [71676] = 15, + ACTIONS(2218), 1, anon_sym_DOT, - ACTIONS(2387), 1, + ACTIONS(2220), 1, anon_sym_LPAREN, - ACTIONS(2395), 1, + ACTIONS(2228), 1, anon_sym_STAR_STAR, - ACTIONS(2397), 1, + ACTIONS(2230), 1, anon_sym_LBRACK, + ACTIONS(2236), 1, + anon_sym_PIPE, + ACTIONS(2238), 1, + anon_sym_AMP, + ACTIONS(2240), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2389), 2, + ACTIONS(2222), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1409), 2, + ACTIONS(2224), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2234), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1144), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2399), 3, + ACTIONS(2232), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_as, + ACTIONS(2440), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 22, - anon_sym_RPAREN, + ACTIONS(2438), 16, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72527] = 6, - ACTIONS(292), 1, + sym_type_conversion, + [71746] = 6, + ACTIONS(280), 1, anon_sym_COLON_EQ, - ACTIONS(674), 1, - anon_sym_COLON, + ACTIONS(2460), 1, + anon_sym_LBRACK, + STATE(2010), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(667), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(669), 5, + ACTIONS(267), 6, anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 27, + ACTIONS(265), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -87441,36 +85766,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72578] = 6, - ACTIONS(292), 1, + [71798] = 5, + ACTIONS(280), 1, anon_sym_COLON_EQ, - ACTIONS(674), 1, - anon_sym_COLON, + ACTIONS(787), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(667), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(669), 5, + ACTIONS(267), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 27, + ACTIONS(265), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -87486,36 +85810,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72629] = 6, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(1660), 1, - anon_sym_COLON, + [71847] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1652), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1657), 5, - anon_sym_as, + ACTIONS(1708), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 27, + ACTIONS(1706), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -87531,17 +85852,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72680] = 3, + [71892] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1690), 5, + ACTIONS(1720), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1688), 31, + ACTIONS(1718), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -87573,35 +85894,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72725] = 8, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_LPAREN, - ACTIONS(2367), 1, - anon_sym_STAR_STAR, - ACTIONS(2369), 1, - anon_sym_LBRACK, + [71937] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1397), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2415), 5, + ACTIONS(1720), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 25, + ACTIONS(1718), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87620,47 +85936,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72780] = 11, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_LPAREN, - ACTIONS(2367), 1, - anon_sym_STAR_STAR, - ACTIONS(2369), 1, - anon_sym_LBRACK, + [71982] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(1672), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2373), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1397), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2371), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 20, + ACTIONS(1670), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -87670,92 +85978,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72841] = 15, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_LPAREN, - ACTIONS(2367), 1, - anon_sym_STAR_STAR, - ACTIONS(2369), 1, - anon_sym_LBRACK, - ACTIONS(2375), 1, - anon_sym_PIPE, - ACTIONS(2377), 1, - anon_sym_AMP, - ACTIONS(2379), 1, - anon_sym_CARET, + [72027] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(1672), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2363), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2373), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1397), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2371), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2436), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2434), 15, + ACTIONS(1670), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72910] = 8, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_LPAREN, - ACTIONS(2367), 1, - anon_sym_STAR_STAR, - ACTIONS(2369), 1, - anon_sym_LBRACK, + [72072] = 5, + ACTIONS(1567), 1, + anon_sym_COMMA, + ACTIONS(1572), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1397), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2415), 5, + ACTIONS(1570), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 25, - anon_sym_COMMA, + ACTIONS(1565), 28, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -87771,82 +86063,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72965] = 10, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_LPAREN, - ACTIONS(2367), 1, - anon_sym_STAR_STAR, - ACTIONS(2369), 1, - anon_sym_LBRACK, + sym_type_conversion, + [72121] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(1614), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1397), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2371), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, + ACTIONS(1617), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 22, + ACTIONS(1611), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1607), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73024] = 3, + [72170] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 5, - anon_sym_as, + ACTIONS(2467), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2471), 31, - sym_string_start, + ACTIONS(2465), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -87862,31 +86150,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73069] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [72215] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, - anon_sym_as, + ACTIONS(2471), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2469), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87905,31 +86192,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73116] = 4, - ACTIONS(292), 1, + [72260] = 6, + ACTIONS(280), 1, anon_sym_COLON_EQ, + ACTIONS(2473), 1, + anon_sym_LBRACK, + STATE(1977), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, - anon_sym_as, + ACTIONS(267), 6, anon_sym_STAR, anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(265), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87948,31 +86237,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73163] = 4, + [72311] = 6, ACTIONS(1572), 1, anon_sym_COLON_EQ, + ACTIONS(2473), 1, + anon_sym_LBRACK, + STATE(1966), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(1570), 6, - anon_sym_as, anon_sym_STAR, anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(1565), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87991,240 +86282,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73210] = 14, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_LPAREN, - ACTIONS(2367), 1, - anon_sym_STAR_STAR, - ACTIONS(2369), 1, - anon_sym_LBRACK, - ACTIONS(2377), 1, - anon_sym_AMP, - ACTIONS(2379), 1, - anon_sym_CARET, + [72362] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2477), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2363), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2373), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1397), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2371), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 16, + ACTIONS(2475), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [73277] = 13, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_LPAREN, - ACTIONS(2367), 1, anon_sym_STAR_STAR, - ACTIONS(2369), 1, anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2361), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2363), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2373), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1397), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2371), 3, anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2413), 17, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73342] = 15, - ACTIONS(2385), 1, - anon_sym_DOT, - ACTIONS(2387), 1, - anon_sym_LPAREN, - ACTIONS(2395), 1, - anon_sym_STAR_STAR, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2403), 1, - anon_sym_PIPE, - ACTIONS(2405), 1, - anon_sym_AMP, - ACTIONS(2407), 1, - anon_sym_CARET, + [72407] = 7, + ACTIONS(1572), 1, + anon_sym_COLON_EQ, + ACTIONS(1619), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2389), 2, + ACTIONS(1607), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1609), 4, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_PIPE, + ACTIONS(1614), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2391), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2401), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1409), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2399), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2436), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2434), 15, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1611), 23, + anon_sym_LPAREN, + anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [73411] = 12, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_LPAREN, - ACTIONS(2367), 1, anon_sym_STAR_STAR, - ACTIONS(2369), 1, anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2361), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2363), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2373), 2, + anon_sym_AT, anon_sym_DASH, anon_sym_PLUS, - STATE(1397), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2371), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2413), 18, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73474] = 3, + [72460] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2455), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2453), 31, + sym_string_start, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -88243,33 +86412,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73519] = 3, + [72505] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 5, - anon_sym_as, + ACTIONS(1642), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 31, - sym_string_start, + ACTIONS(1637), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -88285,30 +86454,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73564] = 3, + [72550] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1671), 5, + ACTIONS(2448), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1669), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2446), 31, + sym_string_start, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -88327,30 +86496,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73609] = 3, + [72595] = 6, + ACTIONS(280), 1, + anon_sym_COLON_EQ, + ACTIONS(2479), 1, + anon_sym_LBRACK, + STATE(1956), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1694), 5, + ACTIONS(267), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1692), 31, + ACTIONS(265), 27, sym__newline, anon_sym_SEMI, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -88369,30 +86541,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73654] = 3, + [72646] = 6, + ACTIONS(1572), 1, + anon_sym_COLON_EQ, + ACTIONS(2479), 1, + anon_sym_LBRACK, + STATE(1961), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, + ACTIONS(1570), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 31, + ACTIONS(1565), 27, sym__newline, anon_sym_SEMI, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -88411,30 +86586,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73699] = 3, + [72697] = 8, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(2300), 1, + anon_sym_LPAREN, + ACTIONS(2308), 1, + anon_sym_STAR_STAR, + ACTIONS(2310), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, + STATE(1367), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2399), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2397), 25, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -88453,33 +86633,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73744] = 3, + [72752] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 5, + ACTIONS(2455), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2453), 31, + sym_string_start, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -88495,30 +86675,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73789] = 3, + [72797] = 4, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 5, + ACTIONS(267), 6, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(265), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -88537,30 +86718,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73834] = 3, + [72844] = 4, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, + ACTIONS(267), 6, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(265), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -88579,34 +86761,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73879] = 5, - ACTIONS(1567), 1, - anon_sym_COMMA, + [72891] = 4, ACTIONS(1572), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(1570), 6, + anon_sym_as, anon_sym_STAR, anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 28, + ACTIONS(1565), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -88622,31 +86804,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [73928] = 3, + [72938] = 8, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(2300), 1, + anon_sym_LPAREN, + ACTIONS(2308), 1, + anon_sym_STAR_STAR, + ACTIONS(2310), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + STATE(1367), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2444), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2442), 25, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -88665,17 +86851,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73973] = 3, + [72993] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(2483), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 31, + ACTIONS(2481), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -88707,77 +86893,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74018] = 5, + [73038] = 5, + ACTIONS(280), 1, + anon_sym_COLON_EQ, + ACTIONS(787), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, + ACTIONS(267), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 14, + ACTIONS(265), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1652), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74067] = 6, - ACTIONS(292), 1, + [73087] = 5, + ACTIONS(1572), 1, anon_sym_COLON_EQ, - ACTIONS(2497), 1, - anon_sym_LBRACK, - STATE(1968), 1, - sym_type_parameter, + ACTIONS(2485), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(1570), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 27, + ACTIONS(1565), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -88796,33 +86981,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74118] = 6, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(2497), 1, - anon_sym_LBRACK, - STATE(1970), 1, - sym_type_parameter, + [73136] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, + ACTIONS(2489), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 27, + ACTIONS(2487), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -88841,86 +87023,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74169] = 14, - ACTIONS(2385), 1, - anon_sym_DOT, - ACTIONS(2387), 1, - anon_sym_LPAREN, - ACTIONS(2395), 1, - anon_sym_STAR_STAR, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2405), 1, - anon_sym_AMP, - ACTIONS(2407), 1, - anon_sym_CARET, + [73181] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2389), 2, + ACTIONS(2493), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2391), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2401), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1409), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2399), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 16, - anon_sym_RPAREN, + ACTIONS(2491), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74236] = 3, + [73226] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, + ACTIONS(2448), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2446), 31, + sym_string_start, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -88936,82 +87107,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74281] = 13, - ACTIONS(2385), 1, - anon_sym_DOT, - ACTIONS(2387), 1, - anon_sym_LPAREN, - ACTIONS(2395), 1, - anon_sym_STAR_STAR, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2407), 1, - anon_sym_CARET, + [73271] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2389), 2, + ACTIONS(2497), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2391), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2401), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1409), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2399), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 17, - anon_sym_RPAREN, + ACTIONS(2495), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74346] = 3, + [73316] = 6, + ACTIONS(280), 1, + anon_sym_COLON_EQ, + ACTIONS(650), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, + ACTIONS(643), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(645), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(686), 27, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -89030,30 +87194,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74391] = 3, + [73367] = 6, + ACTIONS(280), 1, + anon_sym_COLON_EQ, + ACTIONS(650), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 5, + ACTIONS(643), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(645), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(686), 27, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -89072,17 +87239,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74436] = 3, + [73418] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2513), 5, + ACTIONS(2501), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 31, + ACTIONS(2499), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -89114,19 +87281,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74481] = 3, + [73463] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 5, + ACTIONS(1649), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2471), 31, - sym_string_start, + ACTIONS(1644), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -89139,7 +87308,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89155,18 +87323,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [74526] = 3, + [73508] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, + ACTIONS(1660), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 31, + ACTIONS(1655), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -89198,38 +87365,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74571] = 8, - ACTIONS(2321), 1, - anon_sym_DOT, - ACTIONS(2323), 1, - anon_sym_LPAREN, - ACTIONS(2331), 1, - anon_sym_STAR_STAR, - ACTIONS(2333), 1, - anon_sym_LBRACK, + [73553] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1315), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2419), 5, + ACTIONS(2455), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 25, - anon_sym_RPAREN, + ACTIONS(2453), 31, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89245,28 +87406,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74626] = 8, - ACTIONS(2321), 1, + sym_type_conversion, + [73598] = 8, + ACTIONS(2361), 1, anon_sym_DOT, - ACTIONS(2323), 1, + ACTIONS(2363), 1, anon_sym_LPAREN, - ACTIONS(2331), 1, + ACTIONS(2371), 1, anon_sym_STAR_STAR, - ACTIONS(2333), 1, + ACTIONS(2373), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1315), 2, + STATE(1289), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2423), 5, + ACTIONS(2399), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2421), 25, + ACTIONS(2397), 25, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -89292,30 +87454,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74681] = 3, + [73653] = 8, + ACTIONS(2361), 1, + anon_sym_DOT, + ACTIONS(2363), 1, + anon_sym_LPAREN, + ACTIONS(2371), 1, + anon_sym_STAR_STAR, + ACTIONS(2373), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, + STATE(1289), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2444), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2442), 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_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -89334,17 +87501,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74726] = 3, + [73708] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 5, + ACTIONS(2448), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 31, + ACTIONS(2446), 31, sym_string_start, anon_sym_DOT, anon_sym_LPAREN, @@ -89376,28 +87543,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [74771] = 8, - ACTIONS(2321), 1, + [73753] = 8, + ACTIONS(2361), 1, anon_sym_DOT, - ACTIONS(2323), 1, + ACTIONS(2363), 1, anon_sym_LPAREN, - ACTIONS(2331), 1, + ACTIONS(2371), 1, anon_sym_STAR_STAR, - ACTIONS(2333), 1, + ACTIONS(2373), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1315), 2, + STATE(1289), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2415), 5, + ACTIONS(2395), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 25, + ACTIONS(2393), 25, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -89423,44 +87590,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74826] = 8, - ACTIONS(2385), 1, + [73808] = 11, + ACTIONS(2361), 1, anon_sym_DOT, - ACTIONS(2387), 1, + ACTIONS(2363), 1, anon_sym_LPAREN, - ACTIONS(2395), 1, + ACTIONS(2371), 1, anon_sym_STAR_STAR, - ACTIONS(2397), 1, + ACTIONS(2373), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1409), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2415), 5, - anon_sym_as, + ACTIONS(2365), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2377), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1289), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2375), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2395), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 25, + ACTIONS(2393), 20, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -89470,45 +87640,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74881] = 15, - ACTIONS(2321), 1, + [73869] = 15, + ACTIONS(2361), 1, anon_sym_DOT, - ACTIONS(2323), 1, + ACTIONS(2363), 1, anon_sym_LPAREN, - ACTIONS(2331), 1, + ACTIONS(2371), 1, anon_sym_STAR_STAR, - ACTIONS(2333), 1, + ACTIONS(2373), 1, anon_sym_LBRACK, - ACTIONS(2339), 1, + ACTIONS(2379), 1, anon_sym_PIPE, - ACTIONS(2341), 1, + ACTIONS(2381), 1, anon_sym_AMP, - ACTIONS(2343), 1, + ACTIONS(2383), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2325), 2, + ACTIONS(2365), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2327), 2, + ACTIONS(2367), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2337), 2, + ACTIONS(2377), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1315), 2, + STATE(1289), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2335), 3, + ACTIONS(2375), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2436), 3, + ACTIONS(2440), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2434), 15, + ACTIONS(2438), 15, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -89524,28 +87694,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74950] = 8, - ACTIONS(2321), 1, + [73938] = 8, + ACTIONS(2361), 1, anon_sym_DOT, - ACTIONS(2323), 1, + ACTIONS(2363), 1, anon_sym_LPAREN, - ACTIONS(2331), 1, + ACTIONS(2371), 1, anon_sym_STAR_STAR, - ACTIONS(2333), 1, + ACTIONS(2373), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1315), 2, + STATE(1289), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2415), 5, + ACTIONS(2395), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 25, + ACTIONS(2393), 25, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -89571,33 +87741,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75005] = 10, - ACTIONS(2321), 1, + [73993] = 10, + ACTIONS(2361), 1, anon_sym_DOT, - ACTIONS(2323), 1, + ACTIONS(2363), 1, anon_sym_LPAREN, - ACTIONS(2331), 1, + ACTIONS(2371), 1, anon_sym_STAR_STAR, - ACTIONS(2333), 1, + ACTIONS(2373), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2325), 2, + ACTIONS(2365), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1315), 2, + STATE(1289), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2335), 3, + ACTIONS(2375), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, + ACTIONS(2395), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 22, + ACTIONS(2393), 22, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -89620,43 +87790,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75064] = 14, - ACTIONS(2321), 1, + [74052] = 14, + ACTIONS(2361), 1, anon_sym_DOT, - ACTIONS(2323), 1, + ACTIONS(2363), 1, anon_sym_LPAREN, - ACTIONS(2331), 1, + ACTIONS(2371), 1, anon_sym_STAR_STAR, - ACTIONS(2333), 1, + ACTIONS(2373), 1, anon_sym_LBRACK, - ACTIONS(2341), 1, + ACTIONS(2381), 1, anon_sym_AMP, - ACTIONS(2343), 1, + ACTIONS(2383), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2325), 2, + ACTIONS(2365), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2327), 2, + ACTIONS(2367), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2337), 2, + ACTIONS(2377), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1315), 2, + STATE(1289), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2335), 3, + ACTIONS(2375), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, + ACTIONS(2395), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 16, + ACTIONS(2393), 16, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -89673,41 +87843,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75131] = 13, - ACTIONS(2321), 1, + [74119] = 13, + ACTIONS(2361), 1, anon_sym_DOT, - ACTIONS(2323), 1, + ACTIONS(2363), 1, anon_sym_LPAREN, - ACTIONS(2331), 1, + ACTIONS(2371), 1, anon_sym_STAR_STAR, - ACTIONS(2333), 1, + ACTIONS(2373), 1, anon_sym_LBRACK, - ACTIONS(2343), 1, + ACTIONS(2383), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2325), 2, + ACTIONS(2365), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2327), 2, + ACTIONS(2367), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2337), 2, + ACTIONS(2377), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1315), 2, + STATE(1289), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2335), 3, + ACTIONS(2375), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, + ACTIONS(2395), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 17, + ACTIONS(2393), 17, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -89725,39 +87895,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75196] = 12, - ACTIONS(2321), 1, + [74184] = 12, + ACTIONS(2361), 1, anon_sym_DOT, - ACTIONS(2323), 1, + ACTIONS(2363), 1, anon_sym_LPAREN, - ACTIONS(2331), 1, + ACTIONS(2371), 1, anon_sym_STAR_STAR, - ACTIONS(2333), 1, + ACTIONS(2373), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2325), 2, + ACTIONS(2365), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2327), 2, + ACTIONS(2367), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2337), 2, + ACTIONS(2377), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1315), 2, + STATE(1289), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2335), 3, + ACTIONS(2375), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, + ACTIONS(2395), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 18, + ACTIONS(2393), 18, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -89776,97 +87946,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75259] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2525), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2523), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [75304] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2529), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2527), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [75349] = 5, - ACTIONS(755), 1, + [74247] = 5, + ACTIONS(775), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1116), 2, + STATE(1086), 2, sym_string, aux_sym_concatenated_string_repeat1, ACTIONS(1570), 4, @@ -89904,20 +87990,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75398] = 4, - ACTIONS(292), 1, + [74296] = 4, + ACTIONS(280), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(267), 6, anon_sym_STAR, anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(265), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -89947,20 +88033,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [75445] = 4, - ACTIONS(292), 1, + [74343] = 4, + ACTIONS(280), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(267), 6, anon_sym_STAR, anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(265), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -89990,7 +88076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [75492] = 4, + [74390] = 4, ACTIONS(1572), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, @@ -90033,72 +88119,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [75539] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2533), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2531), 31, - sym__newline, - anon_sym_SEMI, + [74437] = 8, + ACTIONS(2298), 1, anon_sym_DOT, - anon_sym_from, + ACTIONS(2300), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, + ACTIONS(2308), 1, anon_sym_STAR_STAR, + ACTIONS(2310), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [75584] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2537), 5, + STATE(1367), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2395), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2535), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2393), 25, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -90117,21 +88166,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75629] = 5, - ACTIONS(755), 1, + [74492] = 5, + ACTIONS(775), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1117), 2, + STATE(1088), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2355), 4, + ACTIONS(2391), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2353), 29, + ACTIONS(2389), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -90161,83 +88210,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75678] = 5, - ACTIONS(2539), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1117), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2316), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2314), 29, + [74541] = 11, + ACTIONS(2298), 1, anon_sym_DOT, + ACTIONS(2300), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, + ACTIONS(2308), 1, anon_sym_STAR_STAR, + ACTIONS(2310), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [75727] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(2302), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2314), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1367), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2312), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2395), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2393), 20, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -90247,21 +88260,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75772] = 3, + [74602] = 5, + ACTIONS(2503), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + STATE(1088), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2328), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2326), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -90271,6 +88285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -90289,151 +88304,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75817] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2552), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2550), 31, - sym__newline, - anon_sym_SEMI, + [74651] = 15, + ACTIONS(2298), 1, anon_sym_DOT, - anon_sym_from, + ACTIONS(2300), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, + ACTIONS(2308), 1, anon_sym_STAR_STAR, + ACTIONS(2310), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2316), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2318), 1, anon_sym_AMP, + ACTIONS(2320), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [75862] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, + ACTIONS(2302), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2554), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(2304), 2, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2314), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(1367), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2312), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [75907] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(767), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2440), 3, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2438), 15, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75956] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(767), 1, - anon_sym_EQ, + [74720] = 8, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(2300), 1, + anon_sym_LPAREN, + ACTIONS(2308), 1, + anon_sym_STAR_STAR, + ACTIONS(2310), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + STATE(1367), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2395), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2393), 25, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -90441,8 +88387,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -90461,23 +88405,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76005] = 5, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(2558), 1, - anon_sym_EQ, + [74775] = 10, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(2300), 1, + anon_sym_LPAREN, + ACTIONS(2308), 1, + anon_sym_STAR_STAR, + ACTIONS(2310), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, - anon_sym_as, + ACTIONS(2302), 2, anon_sym_STAR, anon_sym_SLASH, + STATE(1367), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2312), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2395), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2393), 22, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -90485,17 +88439,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -90505,39 +88454,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76054] = 12, - ACTIONS(2385), 1, + [74834] = 14, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(2387), 1, + ACTIONS(2300), 1, anon_sym_LPAREN, - ACTIONS(2395), 1, + ACTIONS(2308), 1, anon_sym_STAR_STAR, - ACTIONS(2397), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, + ACTIONS(2318), 1, + anon_sym_AMP, + ACTIONS(2320), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2389), 2, + ACTIONS(2302), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2391), 2, + ACTIONS(2304), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2401), 2, + ACTIONS(2314), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1409), 2, + STATE(1367), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2399), 3, + ACTIONS(2312), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, + ACTIONS(2395), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 18, + ACTIONS(2393), 16, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -90548,134 +88501,142 @@ 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76117] = 3, + [74901] = 13, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(2300), 1, + anon_sym_LPAREN, + ACTIONS(2308), 1, + anon_sym_STAR_STAR, + ACTIONS(2310), 1, + anon_sym_LBRACK, + ACTIONS(2320), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 5, + ACTIONS(2302), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2304), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2314), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1367), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2312), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2395), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2560), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2393), 17, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76162] = 8, - ACTIONS(2385), 1, + [74966] = 12, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(2387), 1, + ACTIONS(2300), 1, anon_sym_LPAREN, - ACTIONS(2395), 1, + ACTIONS(2308), 1, anon_sym_STAR_STAR, - ACTIONS(2397), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1409), 2, + ACTIONS(2302), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2304), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2314), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1367), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2415), 5, + ACTIONS(2312), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2395), 3, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 25, + ACTIONS(2393), 18, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76217] = 7, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(1675), 1, - anon_sym_COLON, + [75029] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1652), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1673), 4, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_PIPE, - ACTIONS(1657), 5, - anon_sym_as, + ACTIONS(267), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 23, + ACTIONS(265), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90691,34 +88652,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76270] = 5, - ACTIONS(284), 1, - anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [75074] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(2508), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(2506), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90734,35 +88694,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [76319] = 5, - ACTIONS(284), 1, - anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [75119] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(267), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(265), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90778,75 +88736,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [76368] = 5, + [75164] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, + ACTIONS(2512), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(674), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 14, + ACTIONS(2510), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(667), 17, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [75209] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1570), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1565), 31, sym__newline, anon_sym_SEMI, + anon_sym_DOT, anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76417] = 3, + [75254] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 5, - anon_sym_as, + ACTIONS(2516), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2471), 31, - sym_string_start, + ACTIONS(2514), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -90865,47 +88862,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76462] = 11, - ACTIONS(2385), 1, - anon_sym_DOT, - ACTIONS(2387), 1, - anon_sym_LPAREN, - ACTIONS(2395), 1, - anon_sym_STAR_STAR, - ACTIONS(2397), 1, - anon_sym_LBRACK, + [75299] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2389), 2, + ACTIONS(2520), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2401), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1409), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2399), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 20, - anon_sym_RPAREN, + ACTIONS(2518), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -90915,17 +88904,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76523] = 3, + [75344] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2566), 5, + ACTIONS(2524), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2564), 31, + ACTIONS(2522), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -90957,17 +88946,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76568] = 3, + [75389] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1667), 5, + ACTIONS(2528), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 31, + ACTIONS(2526), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -90999,33 +88988,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76613] = 6, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(2568), 1, - anon_sym_LBRACK, - STATE(1984), 1, - sym_type_parameter, + [75434] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(2532), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 27, + ACTIONS(2530), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -91044,33 +89030,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76664] = 6, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(2568), 1, - anon_sym_LBRACK, - STATE(1988), 1, - sym_type_parameter, + [75479] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, + ACTIONS(2536), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 27, + ACTIONS(2534), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -91089,35 +89072,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76715] = 8, - ACTIONS(2385), 1, - anon_sym_DOT, - ACTIONS(2387), 1, - anon_sym_LPAREN, - ACTIONS(2395), 1, - anon_sym_STAR_STAR, - ACTIONS(2397), 1, - anon_sym_LBRACK, + [75524] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1409), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2419), 5, - anon_sym_as, + ACTIONS(2540), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 25, - anon_sym_RPAREN, + ACTIONS(2538), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -91136,35 +89114,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76770] = 8, - ACTIONS(2385), 1, - anon_sym_DOT, - ACTIONS(2387), 1, - anon_sym_LPAREN, - ACTIONS(2395), 1, - anon_sym_STAR_STAR, - ACTIONS(2397), 1, - anon_sym_LBRACK, + [75569] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1409), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2423), 5, - anon_sym_as, + ACTIONS(2544), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2421), 25, - anon_sym_RPAREN, + ACTIONS(2542), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -91183,80 +89156,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76825] = 5, + [75614] = 5, + ACTIONS(272), 1, + anon_sym_COMMA, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, + ACTIONS(267), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(674), 3, + anon_sym_COLON, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 14, + ACTIONS(265), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(667), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76874] = 6, - ACTIONS(292), 1, + sym_type_conversion, + [75663] = 5, + ACTIONS(272), 1, + anon_sym_COMMA, + ACTIONS(280), 1, anon_sym_COLON_EQ, - ACTIONS(674), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(667), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(669), 5, - anon_sym_as, + ACTIONS(267), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 27, + ACTIONS(265), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91272,107 +89243,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76925] = 6, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(674), 1, - anon_sym_COLON, + sym_type_conversion, + [75712] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(667), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(669), 5, - anon_sym_as, + ACTIONS(645), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(650), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 27, + ACTIONS(686), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(643), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76976] = 3, + [75761] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 5, + ACTIONS(645), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(650), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(686), 14, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(643), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77021] = 4, - ACTIONS(292), 1, + [75810] = 4, + ACTIONS(280), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(267), 6, anon_sym_as, anon_sym_STAR, anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(265), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -91402,33 +89375,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77068] = 3, + [75857] = 4, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 5, + ACTIONS(267), 6, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1630), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(265), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91444,20 +89418,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77113] = 4, - ACTIONS(292), 1, + [75904] = 4, + ACTIONS(1572), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(1570), 6, anon_sym_as, anon_sym_STAR, anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1565), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -91487,30 +89461,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77160] = 3, + [75951] = 8, + ACTIONS(2333), 1, + anon_sym_DOT, + ACTIONS(2335), 1, + anon_sym_LPAREN, + ACTIONS(2343), 1, + anon_sym_STAR_STAR, + ACTIONS(2345), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, + STATE(1386), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2399), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2397), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -91529,47 +89508,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77205] = 11, - ACTIONS(2321), 1, + [76006] = 8, + ACTIONS(2333), 1, anon_sym_DOT, - ACTIONS(2323), 1, + ACTIONS(2335), 1, anon_sym_LPAREN, - ACTIONS(2331), 1, + ACTIONS(2343), 1, anon_sym_STAR_STAR, - ACTIONS(2333), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2325), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2337), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1315), 2, + STATE(1386), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2335), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, + ACTIONS(2444), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 20, - anon_sym_RPAREN, + ACTIONS(2442), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -91579,28 +89555,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77266] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [76061] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(284), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(2548), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 27, + ACTIONS(2546), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -91622,32 +89597,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77314] = 3, + [76106] = 6, + ACTIONS(280), 1, + anon_sym_COLON_EQ, + ACTIONS(650), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2533), 5, + ACTIONS(643), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(645), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 30, + ACTIONS(686), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91663,32 +89642,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77358] = 3, + [76157] = 6, + ACTIONS(280), 1, + anon_sym_COLON_EQ, + ACTIONS(650), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2537), 5, + ACTIONS(643), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(645), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2535), 30, + ACTIONS(686), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91704,25 +89687,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77402] = 3, + [76208] = 6, + ACTIONS(1572), 1, + anon_sym_COLON_EQ, + ACTIONS(1617), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, + ACTIONS(1607), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1614), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 30, + ACTIONS(1611), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -91745,21 +89732,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77446] = 4, - ACTIONS(1664), 1, - anon_sym_COMMA, + [76259] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1667), 5, + ACTIONS(2552), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 29, + ACTIONS(2550), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -91770,7 +89759,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91786,22 +89774,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77492] = 4, - ACTIONS(1567), 1, - anon_sym_COMMA, + [76304] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, + ACTIONS(1635), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(1633), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -91812,7 +89801,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91828,33 +89816,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77538] = 4, - ACTIONS(1679), 1, - anon_sym_COMMA, + [76349] = 8, + ACTIONS(2333), 1, + anon_sym_DOT, + ACTIONS(2335), 1, + anon_sym_LPAREN, + ACTIONS(2343), 1, + anon_sym_STAR_STAR, + ACTIONS(2345), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 5, + STATE(1386), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2395), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2393), 25, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91870,83 +89863,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77584] = 5, + [76404] = 11, + ACTIONS(2333), 1, + anon_sym_DOT, + ACTIONS(2335), 1, + anon_sym_LPAREN, + ACTIONS(2343), 1, + anon_sym_STAR_STAR, + ACTIONS(2345), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(710), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2349), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(1386), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2347), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(667), 16, + ACTIONS(2395), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2393), 20, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77632] = 5, + [76465] = 15, + ACTIONS(2333), 1, + anon_sym_DOT, + ACTIONS(2335), 1, + anon_sym_LPAREN, + ACTIONS(2343), 1, + anon_sym_STAR_STAR, + ACTIONS(2345), 1, + anon_sym_LBRACK, + ACTIONS(2351), 1, + anon_sym_PIPE, + ACTIONS(2353), 1, + anon_sym_AMP, + ACTIONS(2355), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(710), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2339), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2349), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(1386), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2347), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(667), 16, + ACTIONS(2440), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2438), 15, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -91956,31 +89967,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77680] = 4, + [76534] = 8, + ACTIONS(2333), 1, + anon_sym_DOT, + ACTIONS(2335), 1, + anon_sym_LPAREN, + ACTIONS(2343), 1, + anon_sym_STAR_STAR, + ACTIONS(2345), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1652), 3, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - ACTIONS(1657), 5, - anon_sym_as, + STATE(1386), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2395), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 27, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2393), 25, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -91999,39 +90014,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77726] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [76589] = 10, + ACTIONS(2333), 1, + anon_sym_DOT, + ACTIONS(2335), 1, + anon_sym_LPAREN, + ACTIONS(2343), 1, + anon_sym_STAR_STAR, + ACTIONS(2345), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(2337), 2, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, + STATE(1386), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2347), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2395), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2393), 22, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -92041,158 +90063,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77772] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [76648] = 14, + ACTIONS(2333), 1, + anon_sym_DOT, + ACTIONS(2335), 1, + anon_sym_LPAREN, + ACTIONS(2343), 1, + anon_sym_STAR_STAR, + ACTIONS(2345), 1, + anon_sym_LBRACK, + ACTIONS(2353), 1, + anon_sym_AMP, + ACTIONS(2355), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(2337), 2, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2339), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2349), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1386), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2347), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2395), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2393), 16, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77818] = 4, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + [76715] = 13, + ACTIONS(2333), 1, + anon_sym_DOT, + ACTIONS(2335), 1, + anon_sym_LPAREN, + ACTIONS(2343), 1, + anon_sym_STAR_STAR, + ACTIONS(2345), 1, + anon_sym_LBRACK, + ACTIONS(2355), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, + ACTIONS(2337), 2, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2339), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2349), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1386), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2347), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2395), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2393), 17, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77864] = 4, - ACTIONS(1632), 1, - anon_sym_COMMA, + [76780] = 12, + ACTIONS(2333), 1, + anon_sym_DOT, + ACTIONS(2335), 1, + anon_sym_LPAREN, + ACTIONS(2343), 1, + anon_sym_STAR_STAR, + ACTIONS(2345), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 5, + ACTIONS(2337), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2339), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2349), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1386), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2347), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2395), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1630), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2393), 18, + anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77910] = 3, + [76843] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(1716), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, + ACTIONS(1714), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92208,58 +90261,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77954] = 3, + [76888] = 14, + ACTIONS(2407), 1, + anon_sym_DOT, + ACTIONS(2409), 1, + anon_sym_LPAREN, + ACTIONS(2417), 1, + anon_sym_STAR_STAR, + ACTIONS(2419), 1, + anon_sym_LBRACK, + ACTIONS(2427), 1, + anon_sym_AMP, + ACTIONS(2429), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2395), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(2411), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2413), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2423), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1417), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2421), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2393), 16, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77998] = 3, + [76954] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 5, + ACTIONS(2467), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 30, + ACTIONS(2465), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92271,10 +90335,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92290,25 +90354,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78042] = 3, + [76998] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, - anon_sym_as, + ACTIONS(267), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 30, + ACTIONS(265), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -92331,25 +90394,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78086] = 3, + sym_type_conversion, + [77042] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 5, - anon_sym_as, + ACTIONS(267), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1630), 30, + ACTIONS(265), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -92372,34 +90435,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78130] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [77086] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(667), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(669), 5, - anon_sym_as, + ACTIONS(2528), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 27, + ACTIONS(2526), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92415,31 +90476,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78178] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [77130] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(667), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(669), 5, + ACTIONS(2471), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 27, + ACTIONS(2469), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -92458,31 +90518,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78226] = 5, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + [77174] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1652), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1657), 5, + ACTIONS(2477), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 27, + ACTIONS(2475), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -92501,23 +90559,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78274] = 3, + [77218] = 5, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(272), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(267), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 30, + ACTIONS(265), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -92526,7 +90587,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92542,17 +90602,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78318] = 3, + [77266] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, + ACTIONS(2483), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 30, + ACTIONS(2481), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92564,10 +90624,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92583,32 +90643,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78362] = 3, + [77310] = 6, + ACTIONS(280), 1, + anon_sym_COLON_EQ, + ACTIONS(1579), 1, + anon_sym_LBRACK, + STATE(2081), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, - anon_sym_as, + ACTIONS(267), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 30, + ACTIONS(265), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92624,17 +90687,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78406] = 3, + [77360] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(2508), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 30, + ACTIONS(2506), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92646,10 +90709,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92665,32 +90728,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78450] = 3, + [77404] = 6, + ACTIONS(1572), 1, + anon_sym_COLON_EQ, + ACTIONS(1579), 1, + anon_sym_LBRACK, + STATE(2082), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, - anon_sym_as, + ACTIONS(1570), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 30, + ACTIONS(1565), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92706,25 +90772,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78494] = 3, + [77454] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, - anon_sym_as, + ACTIONS(2501), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 30, + ACTIONS(2499), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -92747,17 +90812,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78538] = 3, + sym_type_conversion, + [77498] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1690), 5, + ACTIONS(2532), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1688), 30, + ACTIONS(2530), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92788,17 +90854,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78582] = 3, + [77542] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, + ACTIONS(2536), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 30, + ACTIONS(2534), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92810,10 +90876,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92829,32 +90895,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78626] = 3, + [77586] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1671), 5, - anon_sym_as, + ACTIONS(2512), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1669), 30, + ACTIONS(2510), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92870,25 +90935,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78670] = 3, + sym_type_conversion, + [77630] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, - anon_sym_as, + ACTIONS(2516), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 30, + ACTIONS(2514), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -92911,17 +90976,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78714] = 3, + sym_type_conversion, + [77674] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, + ACTIONS(1649), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 30, + ACTIONS(1644), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92933,10 +90999,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92952,17 +91018,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78758] = 3, + [77718] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2513), 5, + ACTIONS(1660), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 30, + ACTIONS(1655), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92974,10 +91040,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92993,25 +91059,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78802] = 3, + [77762] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, - anon_sym_as, + ACTIONS(2467), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 30, + ACTIONS(2465), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -93034,25 +91099,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78846] = 3, + sym_type_conversion, + [77806] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2525), 5, - anon_sym_as, + ACTIONS(2471), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 30, + ACTIONS(2469), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -93075,25 +91140,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78890] = 3, + sym_type_conversion, + [77850] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2529), 5, - anon_sym_as, + ACTIONS(2477), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2527), 30, + ACTIONS(2475), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -93116,25 +91181,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78934] = 3, + sym_type_conversion, + [77894] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 5, - anon_sym_as, + ACTIONS(2483), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2560), 30, + ACTIONS(2481), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -93157,17 +91222,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78978] = 3, + sym_type_conversion, + [77938] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1671), 5, + ACTIONS(2540), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1669), 30, + ACTIONS(2538), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93198,23 +91264,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79022] = 3, + [77982] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 5, + ACTIONS(2448), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 30, + ACTIONS(2446), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -93223,7 +91290,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93239,17 +91305,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79066] = 3, + [78026] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2566), 5, + ACTIONS(2544), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2564), 30, + ACTIONS(2542), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93261,10 +91327,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93280,23 +91346,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79110] = 3, + [78070] = 5, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(272), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(267), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 30, + ACTIONS(265), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -93305,7 +91374,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93321,25 +91389,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79154] = 3, + [78118] = 5, + ACTIONS(1572), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1694), 5, + ACTIONS(1607), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1614), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1692), 30, + ACTIONS(1611), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -93362,32 +91432,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79198] = 3, + [78166] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, - anon_sym_as, + ACTIONS(2508), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 30, + ACTIONS(2506), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93403,32 +91472,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79242] = 3, + sym_type_conversion, + [78210] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, - anon_sym_as, + ACTIONS(2532), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 30, + ACTIONS(2530), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93444,25 +91513,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79286] = 3, + sym_type_conversion, + [78254] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2533), 5, - anon_sym_as, + ACTIONS(2536), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 30, + ACTIONS(2534), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -93485,25 +91554,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79330] = 3, + sym_type_conversion, + [78298] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2537), 5, - anon_sym_as, + ACTIONS(2540), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2535), 30, + ACTIONS(2538), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -93526,32 +91595,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79374] = 3, + sym_type_conversion, + [78342] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 5, - anon_sym_as, + ACTIONS(2544), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 30, + ACTIONS(2542), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93567,32 +91636,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79418] = 3, + sym_type_conversion, + [78386] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 5, + ACTIONS(2548), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2546), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [78430] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2552), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 30, + ACTIONS(2550), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93608,17 +91718,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79462] = 3, + sym_type_conversion, + [78474] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, + ACTIONS(2489), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 30, + ACTIONS(2487), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93649,26 +91760,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79506] = 4, + [78518] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1652), 3, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - ACTIONS(1657), 5, - anon_sym_as, + ACTIONS(2493), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 27, + ACTIONS(2491), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -93691,32 +91800,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79552] = 3, + sym_type_conversion, + [78562] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1667), 5, - anon_sym_as, + ACTIONS(2497), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 30, + ACTIONS(2495), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93732,31 +91841,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79596] = 5, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [78606] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1567), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1570), 5, + ACTIONS(2548), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 27, + ACTIONS(2546), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -93775,17 +91883,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79644] = 3, + [78650] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2520), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, + ACTIONS(2518), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93816,17 +91924,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79688] = 3, + [78694] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2524), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, + ACTIONS(2522), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93857,31 +91965,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79732] = 3, + [78738] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, + ACTIONS(2552), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 30, + ACTIONS(2550), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93897,32 +92006,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79776] = 3, + [78782] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(2489), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 30, + ACTIONS(2487), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93938,32 +92047,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79820] = 3, + [78826] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, + ACTIONS(2493), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 30, + ACTIONS(2491), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93979,32 +92088,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79864] = 3, + [78870] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, + ACTIONS(2497), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 30, + ACTIONS(2495), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94020,18 +92129,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79908] = 3, + [78914] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 5, + ACTIONS(2520), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 30, + ACTIONS(2518), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94062,17 +92170,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79952] = 3, + [78958] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 5, + ACTIONS(2524), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1630), 30, + ACTIONS(2522), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94103,17 +92211,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79996] = 3, + [79002] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(1635), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 30, + ACTIONS(1633), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94144,24 +92252,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [80040] = 3, + [79046] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(1570), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 30, + ACTIONS(1565), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -94184,21 +92293,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80084] = 3, + [79090] = 4, + ACTIONS(1639), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(1642), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 30, + ACTIONS(1637), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -94226,31 +92335,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [80128] = 3, + [79136] = 4, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, + ACTIONS(267), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 30, + ACTIONS(265), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94266,33 +92377,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80172] = 3, + [79182] = 4, + ACTIONS(1567), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 5, + ACTIONS(1570), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2471), 30, - sym_string_start, + ACTIONS(1565), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94308,24 +92418,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80216] = 3, + sym_type_conversion, + [79228] = 4, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1694), 5, + ACTIONS(267), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1692), 30, + ACTIONS(265), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -94349,20 +92461,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80260] = 3, + [79274] = 4, + ACTIONS(1646), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, + ACTIONS(1649), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 30, + ACTIONS(1644), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -94390,40 +92503,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [80304] = 3, + [79320] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, + ACTIONS(645), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(650), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 30, + ACTIONS(686), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(643), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -94431,40 +92546,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [80348] = 3, + [79368] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2513), 5, + ACTIONS(645), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(650), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 30, + ACTIONS(686), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(643), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -94472,17 +92589,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [80392] = 3, + [79416] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, + ACTIONS(1716), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 30, + ACTIONS(1714), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94513,17 +92630,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [80436] = 3, + [79460] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2525), 5, + ACTIONS(1708), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 30, + ACTIONS(1706), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94554,17 +92671,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [80480] = 3, + [79504] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2529), 5, + ACTIONS(1720), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2527), 30, + ACTIONS(1718), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94595,17 +92712,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [80524] = 3, + [79548] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 5, + ACTIONS(1720), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2560), 30, + ACTIONS(1718), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94636,17 +92753,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [80568] = 3, + [79592] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 5, + ACTIONS(1672), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 30, + ACTIONS(1670), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94677,17 +92794,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [80612] = 3, + [79636] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2566), 5, + ACTIONS(1672), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2564), 30, + ACTIONS(1670), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94718,31 +92835,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [80656] = 3, + [79680] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(1607), 3, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + ACTIONS(1614), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 30, + ACTIONS(1611), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94758,30 +92877,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80700] = 3, + [79726] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, - anon_sym_as, + ACTIONS(2455), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 30, + ACTIONS(2453), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -94800,40 +92918,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80744] = 3, + [79770] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2533), 5, + ACTIONS(1614), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1617), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 30, + ACTIONS(1611), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1607), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -94841,17 +92961,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [80788] = 3, + [79818] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2537), 5, + ACTIONS(1642), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2535), 30, + ACTIONS(1637), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94882,32 +93002,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [80832] = 3, + [79862] = 4, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1667), 5, - anon_sym_as, + ACTIONS(267), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 30, + ACTIONS(265), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94923,26 +93044,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80876] = 3, + [79908] = 4, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, - anon_sym_as, + ACTIONS(267), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 30, + ACTIONS(265), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -94964,26 +93086,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80920] = 3, + [79954] = 4, + ACTIONS(1572), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, - anon_sym_as, + ACTIONS(1570), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 30, + ACTIONS(1565), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -95005,30 +93128,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80964] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [80000] = 8, + ACTIONS(2407), 1, + anon_sym_DOT, + ACTIONS(2409), 1, + anon_sym_LPAREN, + ACTIONS(2417), 1, + anon_sym_STAR_STAR, + ACTIONS(2419), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + STATE(1417), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2399), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2397), 25, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -95047,28 +93174,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81010] = 3, + [80054] = 8, + ACTIONS(2407), 1, + anon_sym_DOT, + ACTIONS(2409), 1, + anon_sym_LPAREN, + ACTIONS(2417), 1, + anon_sym_STAR_STAR, + ACTIONS(2419), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, - anon_sym_as, + STATE(1417), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2444), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2442), 25, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, @@ -95088,25 +93220,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81054] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [80108] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(1635), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1633), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -95130,23 +93261,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81100] = 4, + [80152] = 5, ACTIONS(1572), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, + ACTIONS(1567), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(1570), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(1565), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -95172,32 +93304,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81146] = 3, + [80200] = 4, + ACTIONS(1657), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(1660), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, + ACTIONS(1655), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95213,29 +93345,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81190] = 3, + sym_type_conversion, + [80246] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(2448), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, + ACTIONS(2446), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -95254,35 +93387,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81234] = 6, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(2469), 1, - anon_sym_LBRACK, - STATE(2076), 1, - sym_type_parameter, + [80290] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(1649), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 27, + ACTIONS(1644), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95298,17 +93427,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81284] = 3, + sym_type_conversion, + [80334] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1671), 5, + ACTIONS(1660), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1669), 30, + ACTIONS(1655), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95339,24 +93469,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [81328] = 3, + [80378] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1694), 5, + ACTIONS(267), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1692), 30, + ACTIONS(265), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -95379,32 +93510,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [81372] = 3, + [80422] = 8, + ACTIONS(2407), 1, + anon_sym_DOT, + ACTIONS(2409), 1, + anon_sym_LPAREN, + ACTIONS(2417), 1, + anon_sym_STAR_STAR, + ACTIONS(2419), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, + STATE(1417), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2395), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2393), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95420,32 +93556,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [81416] = 3, + [80476] = 11, + ACTIONS(2407), 1, + anon_sym_DOT, + ACTIONS(2409), 1, + anon_sym_LPAREN, + ACTIONS(2417), 1, + anon_sym_STAR_STAR, + ACTIONS(2419), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, + ACTIONS(2395), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2411), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2423), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1417), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2421), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2393), 20, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [80536] = 15, + ACTIONS(2407), 1, + anon_sym_DOT, + ACTIONS(2409), 1, + anon_sym_LPAREN, + ACTIONS(2417), 1, + anon_sym_STAR_STAR, + ACTIONS(2419), 1, + anon_sym_LBRACK, + ACTIONS(2425), 1, + anon_sym_PIPE, + ACTIONS(2427), 1, + anon_sym_AMP, + ACTIONS(2429), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2411), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2413), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2423), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2440), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 30, + STATE(1417), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2421), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2438), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [80604] = 8, + ACTIONS(2407), 1, anon_sym_DOT, + ACTIONS(2409), 1, anon_sym_LPAREN, + ACTIONS(2417), 1, + anon_sym_STAR_STAR, + ACTIONS(2419), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1417), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2395), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2393), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95461,38 +93704,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [81460] = 3, + [80658] = 10, + ACTIONS(2407), 1, + anon_sym_DOT, + ACTIONS(2409), 1, + anon_sym_LPAREN, + ACTIONS(2417), 1, + anon_sym_STAR_STAR, + ACTIONS(2419), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(2395), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2411), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1417), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2421), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2393), 22, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_RBRACK, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -95502,32 +93752,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [81504] = 3, + [80716] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 5, + ACTIONS(2512), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 30, + ACTIONS(2510), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95543,18 +93793,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [81548] = 3, + [80760] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, + ACTIONS(2516), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 30, + ACTIONS(2514), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95585,35 +93834,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81592] = 6, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(2469), 1, + [80804] = 12, + ACTIONS(2407), 1, + anon_sym_DOT, + ACTIONS(2409), 1, + anon_sym_LPAREN, + ACTIONS(2417), 1, + anon_sym_STAR_STAR, + ACTIONS(2419), 1, anon_sym_LBRACK, - STATE(2090), 1, - sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, + ACTIONS(2395), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2411), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2413), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2423), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1417), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2421), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2393), 18, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [80866] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(267), 5, + anon_sym_as, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 27, + ACTIONS(265), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95629,32 +93925,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81642] = 3, + [80910] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 5, + ACTIONS(2528), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2471), 30, - sym_string_start, + ACTIONS(2526), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95670,18 +93966,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81686] = 5, + [80954] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, + ACTIONS(645), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 3, - anon_sym_EQ, + ACTIONS(650), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 14, + ACTIONS(686), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -95696,13 +93992,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1652), 16, + ACTIONS(643), 16, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -95712,71 +94009,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [81734] = 3, + [81002] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1667), 5, + ACTIONS(645), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(650), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 30, + ACTIONS(686), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(643), 16, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [81778] = 3, + [81050] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(2455), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 30, + ACTIONS(2453), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -95795,118 +94093,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81822] = 8, - ACTIONS(2438), 1, - anon_sym_DOT, - ACTIONS(2440), 1, - anon_sym_LPAREN, - ACTIONS(2448), 1, - anon_sym_STAR_STAR, - ACTIONS(2450), 1, - anon_sym_LBRACK, + [81094] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1440), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2419), 4, + ACTIONS(645), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(650), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 25, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(686), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(643), 16, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81876] = 8, - ACTIONS(2438), 1, - anon_sym_DOT, - ACTIONS(2440), 1, - anon_sym_LPAREN, - ACTIONS(2448), 1, - anon_sym_STAR_STAR, - ACTIONS(2450), 1, - anon_sym_LBRACK, + [81142] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1440), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2423), 4, + ACTIONS(645), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(650), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2421), 25, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(686), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(643), 16, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81930] = 3, + [81190] = 5, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 5, + ACTIONS(272), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(267), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 30, - sym_string_start, + ACTIONS(265), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -95928,31 +94222,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81974] = 3, + [81238] = 5, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 5, + ACTIONS(272), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(267), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 30, + ACTIONS(265), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95968,32 +94265,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [82018] = 3, + [81286] = 4, + ACTIONS(1572), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 5, + ACTIONS(1570), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1630), 30, + ACTIONS(1565), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96009,35 +94307,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [82062] = 8, - ACTIONS(2438), 1, - anon_sym_DOT, - ACTIONS(2440), 1, - anon_sym_LPAREN, - ACTIONS(2448), 1, - anon_sym_STAR_STAR, - ACTIONS(2450), 1, - anon_sym_LBRACK, + [81332] = 4, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1440), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2415), 4, + ACTIONS(267), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 25, + ACTIONS(265), 28, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96056,99 +94349,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82116] = 11, - ACTIONS(2438), 1, - anon_sym_DOT, - ACTIONS(2440), 1, - anon_sym_LPAREN, - ACTIONS(2448), 1, - anon_sym_STAR_STAR, - ACTIONS(2450), 1, - anon_sym_LBRACK, + [81378] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2415), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2442), 2, + ACTIONS(1614), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2454), 2, + ACTIONS(1617), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1440), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2452), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2413), 20, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1607), 16, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_RBRACK, - anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82176] = 15, - ACTIONS(2438), 1, - anon_sym_DOT, - ACTIONS(2440), 1, - anon_sym_LPAREN, - ACTIONS(2448), 1, - anon_sym_STAR_STAR, - ACTIONS(2450), 1, - anon_sym_LBRACK, - ACTIONS(2456), 1, - anon_sym_PIPE, - ACTIONS(2458), 1, - anon_sym_AMP, - ACTIONS(2460), 1, - anon_sym_CARET, + [81426] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2436), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2442), 2, + ACTIONS(1614), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2444), 2, + ACTIONS(1617), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2454), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1440), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2452), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2434), 15, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1607), 16, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -96158,34 +94435,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82244] = 8, - ACTIONS(2438), 1, - anon_sym_DOT, - ACTIONS(2440), 1, - anon_sym_LPAREN, - ACTIONS(2448), 1, - anon_sym_STAR_STAR, - ACTIONS(2450), 1, - anon_sym_LBRACK, + [81474] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1440), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2415), 4, + ACTIONS(1716), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 25, + ACTIONS(1714), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96204,45 +94476,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82298] = 10, - ACTIONS(2438), 1, - anon_sym_DOT, - ACTIONS(2440), 1, - anon_sym_LPAREN, - ACTIONS(2448), 1, - anon_sym_STAR_STAR, - ACTIONS(2450), 1, - anon_sym_LBRACK, + [81518] = 4, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2415), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2442), 2, + ACTIONS(267), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, - STATE(1440), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2452), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2413), 22, + anon_sym_LT, + anon_sym_GT, + ACTIONS(265), 28, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -96252,440 +94518,323 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82356] = 14, - ACTIONS(2438), 1, - anon_sym_DOT, - ACTIONS(2440), 1, - anon_sym_LPAREN, - ACTIONS(2448), 1, - anon_sym_STAR_STAR, - ACTIONS(2450), 1, - anon_sym_LBRACK, - ACTIONS(2458), 1, - anon_sym_AMP, - ACTIONS(2460), 1, - anon_sym_CARET, + [81564] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2415), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2442), 2, + ACTIONS(2501), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2444), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2454), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1440), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2452), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2413), 16, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [82422] = 13, - ACTIONS(2438), 1, - anon_sym_DOT, - ACTIONS(2440), 1, - anon_sym_LPAREN, - ACTIONS(2448), 1, - anon_sym_STAR_STAR, - ACTIONS(2450), 1, - anon_sym_LBRACK, - ACTIONS(2460), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2415), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2442), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2444), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2454), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1440), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2452), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2413), 17, + ACTIONS(2499), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [82486] = 12, - ACTIONS(2438), 1, - anon_sym_DOT, - ACTIONS(2440), 1, - anon_sym_LPAREN, - ACTIONS(2448), 1, anon_sym_STAR_STAR, - ACTIONS(2450), 1, anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2415), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2442), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2444), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2454), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1440), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2452), 3, anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2413), 18, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82548] = 5, + [81608] = 5, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, + ACTIONS(643), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(645), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 14, + ACTIONS(686), 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(667), 16, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82596] = 5, + [81656] = 5, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, + ACTIONS(643), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(645), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 14, + ACTIONS(686), 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(667), 16, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82644] = 5, + [81704] = 5, + ACTIONS(1572), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, + ACTIONS(1607), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1614), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 14, + ACTIONS(1611), 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(667), 16, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82692] = 5, + [81752] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, + ACTIONS(1708), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 14, + ACTIONS(1706), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(667), 16, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82740] = 5, + [81796] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, + ACTIONS(1720), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 14, + ACTIONS(1718), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1652), 16, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82788] = 5, + [81840] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, + ACTIONS(1720), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 14, + ACTIONS(1718), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1652), 16, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82836] = 3, + [81884] = 4, + ACTIONS(1572), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, - anon_sym_as, + ACTIONS(1570), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 30, + ACTIONS(1565), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96704,17 +94853,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82880] = 3, + [81930] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, + ACTIONS(267), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 30, + ACTIONS(265), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96745,17 +94894,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82924] = 3, + [81974] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(2512), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 30, + ACTIONS(2510), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96767,10 +94916,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96786,17 +94935,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82968] = 3, + [82018] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(2516), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 30, + ACTIONS(2514), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96808,10 +94957,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96827,17 +94976,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83012] = 3, + [82062] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(2467), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 30, + ACTIONS(2465), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96849,10 +94998,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96868,17 +95017,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83056] = 3, + [82106] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, + ACTIONS(2471), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 30, + ACTIONS(2469), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96890,10 +95039,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96909,20 +95058,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83100] = 3, + [82150] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 5, + ACTIONS(2477), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 30, + ACTIONS(2475), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -96935,6 +95083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96950,26 +95099,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83144] = 5, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + [82194] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1567), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1570), 5, + ACTIONS(1672), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 27, + ACTIONS(1670), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -96993,26 +95140,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83192] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [82238] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(284), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(279), 5, + ACTIONS(1672), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 27, + ACTIONS(1670), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -97036,31 +95181,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83240] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [82282] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(284), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(279), 5, + ACTIONS(1635), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 27, + ACTIONS(1633), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97079,24 +95222,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83288] = 3, + [82326] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 5, + ACTIONS(2483), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2471), 30, - sym_string_start, + ACTIONS(2481), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -97105,6 +95247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97120,31 +95263,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83332] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [82370] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(284), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(279), 5, + ACTIONS(267), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 27, + ACTIONS(265), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97163,20 +95304,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83380] = 3, + [82414] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 5, + ACTIONS(2528), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 30, + ACTIONS(2526), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -97186,6 +95326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97204,27 +95345,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83424] = 4, - ACTIONS(292), 1, + [82458] = 5, + ACTIONS(1572), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(1567), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1570), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(1565), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97246,26 +95388,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83470] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [82506] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(2455), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(2453), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, @@ -97288,33 +95429,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83516] = 4, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + [82550] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, + ACTIONS(2508), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 28, + ACTIONS(2506), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [82594] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2532), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2530), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_else, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97330,32 +95511,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83562] = 3, + [82638] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 5, + ACTIONS(2536), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 30, - sym_string_start, + ACTIONS(2534), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [82682] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2540), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2538), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97371,17 +95593,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83606] = 3, + [82726] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, + ACTIONS(1642), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 30, + ACTIONS(1637), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97393,10 +95615,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97412,17 +95634,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83650] = 3, + [82770] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, + ACTIONS(2544), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 30, + ACTIONS(2542), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97434,10 +95656,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97453,24 +95675,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83694] = 3, + [82814] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 5, + ACTIONS(2548), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 30, - sym_string_start, + ACTIONS(2546), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -97479,6 +95700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97494,17 +95716,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83738] = 3, + [82858] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2513), 5, + ACTIONS(2552), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 30, + ACTIONS(2550), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97516,6 +95738,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [82902] = 6, + ACTIONS(280), 1, + anon_sym_COLON_EQ, + ACTIONS(2460), 1, + anon_sym_LBRACK, + STATE(2010), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(267), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(265), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [82952] = 6, + ACTIONS(1572), 1, + anon_sym_COLON_EQ, + ACTIONS(2460), 1, + anon_sym_LBRACK, + STATE(2011), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1570), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1565), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, @@ -97535,17 +95845,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83782] = 3, + [83002] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, + ACTIONS(1716), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 30, + ACTIONS(1714), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97576,34 +95886,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83826] = 5, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + [83046] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1652), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1657), 5, + ACTIONS(2489), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 27, + ACTIONS(2487), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97619,17 +95927,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83874] = 3, + [83090] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2566), 5, + ACTIONS(2493), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2564), 30, + ACTIONS(2491), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97641,10 +95949,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97660,17 +95968,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83918] = 3, + [83134] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2525), 5, + ACTIONS(2448), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2446), 30, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [83178] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2497), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 30, + ACTIONS(2495), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97682,10 +96031,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97701,17 +96050,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83962] = 3, + [83222] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2529), 5, + ACTIONS(1708), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2527), 30, + ACTIONS(1706), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97742,17 +96091,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84006] = 3, + [83266] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 5, + ACTIONS(1720), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2560), 30, + ACTIONS(1718), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97783,35 +96132,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84050] = 6, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(1579), 1, - anon_sym_LBRACK, - STATE(2062), 1, - sym_type_parameter, + [83310] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(1649), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 26, + ACTIONS(1644), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97827,35 +96173,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84100] = 6, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(1579), 1, - anon_sym_LBRACK, - STATE(2077), 1, - sym_type_parameter, + [83354] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, + ACTIONS(1660), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 26, + ACTIONS(1655), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97871,17 +96214,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84150] = 3, + [83398] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 5, + ACTIONS(1720), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 30, + ACTIONS(1718), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97912,20 +96255,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84194] = 3, + [83442] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1690), 5, + ACTIONS(2520), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1688), 30, + ACTIONS(2518), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -97938,6 +96280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97953,24 +96296,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84238] = 3, + [83486] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1690), 5, + ACTIONS(2524), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1688), 30, + ACTIONS(2522), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97993,29 +96337,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [84282] = 3, + [83530] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, + ACTIONS(1672), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 29, + ACTIONS(1670), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98034,29 +96378,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84325] = 4, + [83574] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1682), 5, + ACTIONS(1672), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 27, + ACTIONS(1670), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98075,109 +96419,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84370] = 5, + [83618] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, + ACTIONS(1570), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 14, + ACTIONS(1565), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(667), 15, - anon_sym_RPAREN, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [83662] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1570), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1565), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84417] = 5, + [83706] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, + ACTIONS(2501), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 14, + ACTIONS(2499), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(667), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [83750] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1607), 3, + anon_sym_COLON, anon_sym_async, anon_sym_for, + ACTIONS(1614), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84464] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [83796] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(1642), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(1637), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98200,29 +96625,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84509] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [83840] = 13, + ACTIONS(2407), 1, + anon_sym_DOT, + ACTIONS(2409), 1, + anon_sym_LPAREN, + ACTIONS(2417), 1, + anon_sym_STAR_STAR, + ACTIONS(2419), 1, + anon_sym_LBRACK, + ACTIONS(2429), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2395), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2411), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2413), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2423), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1417), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2421), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2393), 17, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [83904] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2471), 5, + anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(2469), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98241,29 +96716,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84554] = 4, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + [83947] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, + ACTIONS(2467), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 28, + ACTIONS(2465), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98282,65 +96756,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84599] = 3, + [83990] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(277), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2471), 5, anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [84642] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(279), 5, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2469), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98362,25 +96796,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84685] = 3, + [84033] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, + ACTIONS(2477), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(2475), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98402,7 +96836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84728] = 3, + [84076] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -98442,105 +96876,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84771] = 3, + [84119] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1677), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(267), 5, anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [84814] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1635), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1630), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [84857] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2495), 5, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 29, + ACTIONS(265), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98562,17 +96916,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84900] = 3, + [84162] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1667), 5, + ACTIONS(2512), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 29, + ACTIONS(2510), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98602,17 +96956,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84943] = 3, + [84205] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, + ACTIONS(2516), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 29, + ACTIONS(2514), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98642,17 +96996,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84986] = 3, + [84248] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, + ACTIONS(2467), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 29, + ACTIONS(2465), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98682,17 +97036,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85029] = 3, + [84291] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(2471), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 29, + ACTIONS(2469), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98722,25 +97076,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85072] = 3, + [84334] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(2489), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(2487), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98762,17 +97116,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85115] = 3, + [84377] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(2483), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(2481), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98802,67 +97156,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85158] = 5, + [84420] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(710), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(667), 15, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(267), 5, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [85205] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2556), 5, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 29, + ACTIONS(265), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98884,59 +97196,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85248] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(710), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(667), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [85295] = 3, + [84463] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1667), 5, + ACTIONS(1708), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 29, + ACTIONS(1706), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -98966,58 +97236,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85338] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1632), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1635), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1630), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [85383] = 3, + [84506] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 5, + ACTIONS(1720), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 29, + ACTIONS(1718), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -99047,17 +97276,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85426] = 3, + [84549] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, + ACTIONS(1720), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 29, + ACTIONS(1718), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -99087,17 +97316,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85469] = 3, + [84592] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, + ACTIONS(1642), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 29, + ACTIONS(1637), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99127,25 +97356,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85512] = 3, + [84635] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, + ACTIONS(1672), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 29, + ACTIONS(1670), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99167,25 +97396,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85555] = 3, + [84678] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2513), 5, + ACTIONS(1672), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 29, + ACTIONS(1670), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99207,17 +97436,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85598] = 3, + [84721] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, + ACTIONS(2508), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 29, + ACTIONS(2506), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99247,17 +97476,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85641] = 3, + [84764] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2525), 5, + ACTIONS(2532), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 29, + ACTIONS(2530), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99287,17 +97516,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85684] = 3, + [84807] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2529), 5, + ACTIONS(2536), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2527), 29, + ACTIONS(2534), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99327,17 +97556,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85727] = 3, + [84850] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 5, + ACTIONS(2540), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2560), 29, + ACTIONS(2538), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99367,25 +97596,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85770] = 3, + [84893] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, + ACTIONS(2544), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 29, + ACTIONS(2542), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99407,17 +97636,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85813] = 3, + [84936] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 5, + ACTIONS(2548), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 29, + ACTIONS(2546), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99447,17 +97676,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85856] = 3, + [84979] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2566), 5, + ACTIONS(2552), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2564), 29, + ACTIONS(2550), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99487,17 +97716,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85899] = 3, + [85022] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(2489), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 29, + ACTIONS(2487), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99527,107 +97756,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85942] = 4, + [85065] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 3, + ACTIONS(2493), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2491), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(279), 13, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_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(320), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [85987] = 4, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [85108] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 3, + ACTIONS(2497), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2495), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(279), 13, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_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(320), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [86032] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [85151] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2513), 5, + ACTIONS(2520), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 29, + ACTIONS(2518), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99649,17 +97876,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86075] = 3, + [85194] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2533), 5, + ACTIONS(2524), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 29, + ACTIONS(2522), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99689,25 +97916,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86118] = 3, + [85237] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2537), 5, + ACTIONS(2520), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2535), 29, + ACTIONS(2518), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99729,25 +97956,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86161] = 3, + [85280] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2529), 5, - anon_sym_as, + ACTIONS(1649), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2527), 29, + ACTIONS(1644), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99769,25 +97996,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86204] = 3, + [85323] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, + ACTIONS(1660), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 29, + ACTIONS(1655), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99809,25 +98036,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86247] = 3, + [85366] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, + ACTIONS(2528), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 29, + ACTIONS(2526), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99849,17 +98076,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86290] = 3, + [85409] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 5, + ACTIONS(1642), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2560), 29, + ACTIONS(1637), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99889,25 +98116,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86333] = 3, + [85452] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2525), 5, + ACTIONS(2483), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 29, + ACTIONS(2481), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99929,25 +98156,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86376] = 3, + [85495] = 5, + ACTIONS(280), 1, + anon_sym_COLON_EQ, + ACTIONS(787), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2529), 5, + ACTIONS(267), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2527), 29, + ACTIONS(265), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99969,25 +98198,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86419] = 3, + [85542] = 5, + ACTIONS(280), 1, + anon_sym_COLON_EQ, + ACTIONS(787), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(267), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(265), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100009,25 +98240,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86462] = 3, + [85589] = 5, + ACTIONS(1572), 1, + anon_sym_COLON_EQ, + ACTIONS(2485), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 5, + ACTIONS(1570), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 29, + ACTIONS(1565), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100049,25 +98282,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86505] = 3, + [85636] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(645), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(650), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(686), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(643), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [85683] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(645), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(650), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(686), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(643), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [85730] = 7, + ACTIONS(1619), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1614), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1617), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1609), 5, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(1607), 12, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1611), 12, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [85781] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(1635), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1633), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100089,105 +98450,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86548] = 3, + [85824] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2560), 29, + ACTIONS(265), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + anon_sym_LBRACK, + ACTIONS(267), 13, + anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [86591] = 3, + ACTIONS(308), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [85869] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2525), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2523), 29, + ACTIONS(265), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(267), 13, + anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [86634] = 3, + ACTIONS(308), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [85914] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1690), 5, + ACTIONS(1570), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1688), 29, + ACTIONS(1565), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100209,25 +98572,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86677] = 3, + [85957] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, - anon_sym_as, + ACTIONS(2524), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 29, + ACTIONS(2522), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100249,25 +98612,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86720] = 3, + [86000] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2513), 5, - anon_sym_as, + ACTIONS(1716), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 29, + ACTIONS(1714), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100289,25 +98652,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86763] = 3, + [86043] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, - anon_sym_as, + ACTIONS(1708), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 29, + ACTIONS(1706), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100329,20 +98692,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86806] = 5, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(2558), 1, - anon_sym_EQ, + [86086] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 4, + ACTIONS(1720), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 28, + ACTIONS(1718), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100350,6 +98710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100371,17 +98732,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86853] = 3, + [86129] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1671), 5, + ACTIONS(1720), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1669), 29, + ACTIONS(1718), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100411,17 +98772,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86896] = 3, + [86172] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1694), 5, + ACTIONS(1672), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1692), 29, + ACTIONS(1670), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100451,17 +98812,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86939] = 3, + [86215] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, + ACTIONS(1672), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 29, + ACTIONS(1670), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100491,20 +98852,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86982] = 3, + [86258] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, + ACTIONS(2455), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 29, + ACTIONS(2453), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -100513,6 +98873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -100531,25 +98892,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87025] = 3, + [86301] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 5, + ACTIONS(1639), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1642), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 29, + ACTIONS(1637), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100571,25 +98933,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87068] = 3, + [86346] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 5, + ACTIONS(1639), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1642), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 29, + ACTIONS(1637), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100611,98 +98974,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87111] = 3, + [86391] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 4, + ACTIONS(1614), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1617), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2471), 30, - sym_string_start, + ACTIONS(1611), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1607), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87154] = 5, + [86438] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, + ACTIONS(1567), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1570), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 14, + ACTIONS(1565), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1652), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87201] = 3, + [86483] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 4, + ACTIONS(2448), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 30, + ACTIONS(2446), 30, sym_string_start, anon_sym_DOT, anon_sym_LPAREN, @@ -100733,15 +99097,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87244] = 4, + [86526] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1662), 3, + ACTIONS(1637), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1667), 13, + ACTIONS(1642), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -100774,7 +99138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [87289] = 4, + [86571] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -100815,15 +99179,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [87334] = 4, + [86616] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1677), 3, + ACTIONS(1644), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1682), 13, + ACTIONS(1649), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -100837,7 +99201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1686), 18, + ACTIONS(1653), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -100856,25 +99220,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [87379] = 3, + [86661] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 5, + ACTIONS(1646), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1649), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 29, + ACTIONS(1644), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100896,18 +99261,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87422] = 5, + [86706] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, + ACTIONS(1614), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 3, + ACTIONS(1617), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 14, + ACTIONS(1611), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -100922,7 +99287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1652), 15, + ACTIONS(1607), 15, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -100938,15 +99303,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87469] = 4, + [86753] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1630), 3, + ACTIONS(1655), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1635), 13, + ACTIONS(1660), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -100960,7 +99325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1637), 18, + ACTIONS(1664), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -100979,17 +99344,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [87514] = 3, + [86798] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2566), 5, + ACTIONS(1635), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2564), 29, + ACTIONS(1633), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -101019,25 +99384,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87557] = 3, + [86841] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(1567), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1570), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 29, + ACTIONS(1565), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101059,17 +99425,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87600] = 3, + [86886] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 5, + ACTIONS(645), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(650), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(686), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(643), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [86933] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2508), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 29, + ACTIONS(2506), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101099,25 +99507,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87643] = 3, + [86976] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 5, + ACTIONS(2532), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 29, + ACTIONS(2530), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101139,25 +99547,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87686] = 3, + [87019] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 5, + ACTIONS(2536), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1630), 29, + ACTIONS(2534), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101179,61 +99587,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87729] = 7, - ACTIONS(1675), 1, - anon_sym_EQ, + [87062] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, + ACTIONS(2540), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1673), 5, + ACTIONS(2538), 29, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(1652), 12, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(1654), 12, - anon_sym_LPAREN, - anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [87780] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [87105] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2566), 5, + ACTIONS(2544), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2564), 29, + ACTIONS(2542), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101263,25 +99667,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87823] = 3, + [87148] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2533), 5, + ACTIONS(2548), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 29, + ACTIONS(2546), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101303,25 +99707,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87866] = 3, + [87191] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2537), 5, + ACTIONS(2552), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2535), 29, + ACTIONS(2550), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101343,65 +99747,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87909] = 3, + [87234] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2537), 5, - anon_sym_as, + ACTIONS(645), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(650), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2535), 29, + ACTIONS(686), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(643), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87952] = 3, + [87281] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1690), 5, + ACTIONS(1607), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1614), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1688), 29, + ACTIONS(1611), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101423,17 +99830,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87995] = 3, + [87326] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(2489), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 29, + ACTIONS(2487), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101463,25 +99870,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88038] = 3, + [87369] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, + ACTIONS(2493), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 29, + ACTIONS(2491), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101503,17 +99910,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88081] = 3, + [87412] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, + ACTIONS(2497), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(2495), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101543,21 +99950,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88124] = 3, + [87455] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1667), 5, + ACTIONS(1646), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1649), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 29, + ACTIONS(1644), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -101583,22 +99991,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88167] = 4, + [87500] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1667), 5, + ACTIONS(2501), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 27, + ACTIONS(2499), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -101624,25 +100031,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88212] = 3, + [87543] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, + ACTIONS(1657), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1660), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 29, + ACTIONS(1655), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101664,26 +100072,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88255] = 4, + [87588] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1567), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1570), 5, - anon_sym_as, + ACTIONS(2497), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 27, + ACTIONS(2495), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101705,17 +100112,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88300] = 3, + [87631] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(1649), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 29, + ACTIONS(1644), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -101745,17 +100152,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88343] = 3, + [87674] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1694), 5, + ACTIONS(1660), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1692), 29, + ACTIONS(1655), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -101785,26 +100192,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88386] = 4, + [87717] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1682), 5, - anon_sym_as, + ACTIONS(1642), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 27, + ACTIONS(1637), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101826,25 +100232,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88431] = 3, + [87760] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(2520), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 29, + ACTIONS(2518), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101866,110 +100272,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88474] = 5, + [87803] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, + ACTIONS(2524), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 14, + ACTIONS(2522), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(667), 15, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88521] = 5, + [87846] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, + ACTIONS(1649), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 14, + ACTIONS(1644), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(667), 15, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88568] = 4, + [87889] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1652), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1657), 5, + ACTIONS(1660), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 27, + ACTIONS(1655), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101991,17 +100392,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88613] = 3, + [87932] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(1570), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(1565), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102031,18 +100432,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88656] = 5, + [87975] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, + ACTIONS(1614), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 3, + ACTIONS(1617), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 14, + ACTIONS(1611), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -102057,7 +100458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1652), 15, + ACTIONS(1607), 15, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -102073,25 +100474,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88703] = 3, + [88022] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(2512), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(2510), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102113,22 +100514,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88746] = 4, + [88065] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1632), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1635), 5, + ACTIONS(2516), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1630), 27, + ACTIONS(2514), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -102154,25 +100554,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88791] = 3, + [88108] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1570), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1565), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [88151] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(267), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(265), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102194,25 +100634,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88834] = 3, + [88194] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(267), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(265), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102234,25 +100674,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88877] = 3, + [88237] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, + ACTIONS(1716), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [88280] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2528), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 29, + ACTIONS(2526), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102274,25 +100754,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88920] = 3, + [88323] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(2501), 5, - anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, ACTIONS(2499), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102314,57 +100794,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88963] = 3, + [88366] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, - anon_sym_as, + ACTIONS(645), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(650), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 29, + ACTIONS(686), 14, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(643), 15, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [88413] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(645), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(650), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(686), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(643), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89006] = 3, + [88460] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, + ACTIONS(2512), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 29, + ACTIONS(2510), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102394,17 +100918,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89049] = 3, + [88503] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, + ACTIONS(2516), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 29, + ACTIONS(2514), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102434,28 +100958,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89092] = 3, + [88546] = 4, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 5, - anon_sym_as, + ACTIONS(267), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 29, + ACTIONS(265), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -102474,25 +100999,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89135] = 3, + [88591] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, - anon_sym_as, + ACTIONS(2467), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 29, + ACTIONS(2465), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102514,25 +101039,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89178] = 3, + [88634] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 5, - anon_sym_as, + ACTIONS(2493), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1630), 29, + ACTIONS(2491), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102554,17 +101079,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89221] = 3, + [88677] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, + ACTIONS(2477), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 29, + ACTIONS(2475), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102594,29 +101119,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89264] = 4, + [88720] = 4, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1667), 5, - anon_sym_as, + ACTIONS(267), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 27, + ACTIONS(265), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -102635,17 +101160,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89309] = 3, + [88765] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1671), 5, + ACTIONS(2483), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1669), 29, + ACTIONS(2481), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102675,17 +101200,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89352] = 3, + [88808] = 4, + ACTIONS(1572), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(1570), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1565), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [88853] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(267), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(265), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102715,69 +101281,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89395] = 7, - ACTIONS(1675), 1, - anon_sym_EQ, + [88896] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, + ACTIONS(267), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(1660), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1673), 5, - sym__newline, - anon_sym_SEMI, + ACTIONS(265), 29, anon_sym_DOT, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(1652), 12, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1654), 12, + [88939] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1657), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1660), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1655), 27, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [89446] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [88984] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, - anon_sym_as, + ACTIONS(2528), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 29, + ACTIONS(2526), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102799,25 +101402,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89489] = 3, + [89027] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, - anon_sym_as, + ACTIONS(2508), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(2506), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102839,25 +101442,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89532] = 3, + [89070] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, - anon_sym_as, + ACTIONS(2532), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(2530), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102879,26 +101482,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89575] = 4, + [89113] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1567), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1570), 5, - anon_sym_as, + ACTIONS(2536), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 27, + ACTIONS(2534), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102920,25 +101522,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89620] = 3, + [89156] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, - anon_sym_as, + ACTIONS(2540), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 29, + ACTIONS(2538), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102960,27 +101562,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89663] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(767), 1, - anon_sym_EQ, + [89199] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 4, + ACTIONS(2544), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(2542), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -103002,27 +101602,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89710] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(767), 1, - anon_sym_EQ, + [89242] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 4, + ACTIONS(2548), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(2546), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -103044,25 +101642,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89757] = 3, + [89285] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2533), 5, - anon_sym_as, + ACTIONS(2552), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 29, + ACTIONS(2550), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -103084,18 +101682,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89800] = 3, + [89328] = 7, + ACTIONS(1619), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 4, + ACTIONS(1614), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1617), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 29, + ACTIONS(1609), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(1607), 12, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1611), 12, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [89379] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2477), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2475), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -103104,7 +101748,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -103123,16 +101766,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89842] = 3, + [89422] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 4, + ACTIONS(2477), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 29, + ACTIONS(2475), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103162,16 +101805,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89884] = 3, + [89464] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 4, + ACTIONS(2493), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 29, + ACTIONS(2491), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103201,30 +101844,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89926] = 3, + [89506] = 4, + ACTIONS(1572), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 4, + ACTIONS(1614), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1611), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -103240,16 +101884,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89968] = 3, + [89550] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 4, + ACTIONS(2497), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2495), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103279,26 +101923,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90010] = 6, + [89592] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, + ACTIONS(645), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(650), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1673), 5, + ACTIONS(686), 14, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(1652), 12, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(643), 15, + anon_sym_COMMA, anon_sym_as, anon_sym_if, + anon_sym_COLON, anon_sym_in, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -103308,29 +101964,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1654), 12, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [90058] = 3, + [89638] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 4, + ACTIONS(1660), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 29, + ACTIONS(1655), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103360,57 +102003,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90100] = 5, + [89680] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, + ACTIONS(2501), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 14, + ACTIONS(2499), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1652), 15, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90146] = 3, + [89722] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 4, + ACTIONS(2520), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 29, + ACTIONS(2518), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103440,16 +102081,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90188] = 3, + [89764] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 4, + ACTIONS(2524), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1630), 29, + ACTIONS(2522), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103479,61 +102120,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90230] = 7, - ACTIONS(1675), 1, - anon_sym_EQ, + [89806] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, + ACTIONS(1649), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1673), 4, + ACTIONS(1644), 29, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(1652), 12, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(1654), 12, - anon_sym_LPAREN, - anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [90280] = 4, - ACTIONS(292), 1, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [89848] = 4, + ACTIONS(280), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 4, + ACTIONS(645), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 28, + ACTIONS(686), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103562,16 +102199,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90324] = 3, + [89892] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 4, + ACTIONS(2512), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 29, + ACTIONS(2510), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103601,21 +102238,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90366] = 4, - ACTIONS(292), 1, + [89934] = 4, + ACTIONS(280), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 4, + ACTIONS(645), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 28, + ACTIONS(686), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -103623,6 +102259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -103641,16 +102278,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90410] = 3, + [89978] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 4, + ACTIONS(2516), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 29, + ACTIONS(2514), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103680,23 +102317,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90452] = 3, + [90020] = 4, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 4, + ACTIONS(645), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 29, + ACTIONS(686), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -103719,16 +102357,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90494] = 3, + [90064] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 4, + ACTIONS(267), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 29, + ACTIONS(265), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103758,23 +102396,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90536] = 3, + [90106] = 4, + ACTIONS(1572), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 4, + ACTIONS(1614), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(1611), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -103797,16 +102436,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90578] = 3, + [90150] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 4, + ACTIONS(2467), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(2465), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103836,16 +102475,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90620] = 3, + [90192] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 4, + ACTIONS(2471), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 29, + ACTIONS(2469), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103875,71 +102514,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90662] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [90234] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 4, + ACTIONS(645), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(650), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 28, + ACTIONS(686), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(643), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90706] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [90280] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 4, + ACTIONS(2489), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 28, + ACTIONS(2487), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -103955,31 +102594,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90750] = 4, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + [90322] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 4, + ACTIONS(1716), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 28, + ACTIONS(1714), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -103995,16 +102633,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90794] = 3, + [90364] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1667), 4, + ACTIONS(1708), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 29, + ACTIONS(1706), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104034,28 +102672,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90836] = 4, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + [90406] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 4, + ACTIONS(1720), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 28, + ACTIONS(1718), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -104074,16 +102711,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90880] = 3, + [90448] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 4, + ACTIONS(1720), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 29, + ACTIONS(1718), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104113,16 +102750,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90922] = 3, + [90490] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 4, + ACTIONS(1672), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 29, + ACTIONS(1670), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104152,24 +102789,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90964] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [90532] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 4, + ACTIONS(1672), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 28, + ACTIONS(1670), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -104192,16 +102828,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91008] = 3, + [90574] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2513), 4, + ACTIONS(267), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 29, + ACTIONS(265), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104231,16 +102867,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91050] = 3, + [90616] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 4, + ACTIONS(2483), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 29, + ACTIONS(2481), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104270,16 +102906,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91092] = 3, + [90658] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2525), 4, + ACTIONS(2528), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 29, + ACTIONS(2526), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104309,16 +102945,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91134] = 3, + [90700] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2529), 4, + ACTIONS(1570), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2527), 29, + ACTIONS(1565), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104348,27 +102984,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91176] = 3, + [90742] = 4, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 4, + ACTIONS(645), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2560), 29, + ACTIONS(686), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -104387,20 +103024,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91218] = 4, - ACTIONS(292), 1, + [90786] = 4, + ACTIONS(1572), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 4, + ACTIONS(1614), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 28, + ACTIONS(1611), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -104408,7 +103046,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -104427,16 +103064,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91262] = 3, + [90830] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 4, + ACTIONS(1642), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(1637), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104466,56 +103103,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91304] = 4, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + [90872] = 6, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 4, + ACTIONS(1614), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1617), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 28, + ACTIONS(1609), 5, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + ACTIONS(1607), 12, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1611), 12, + anon_sym_LPAREN, + anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + [90920] = 7, + ACTIONS(1619), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1614), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1617), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1609), 4, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(1607), 12, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91348] = 3, + ACTIONS(1611), 12, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [90970] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 4, + ACTIONS(2508), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 29, + ACTIONS(2506), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104545,16 +103227,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91390] = 3, + [91012] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2566), 4, + ACTIONS(2532), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2564), 29, + ACTIONS(2530), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104584,55 +103266,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91432] = 3, + [91054] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 4, + ACTIONS(1614), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1617), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 29, + ACTIONS(1611), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1607), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91474] = 3, + [91100] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2533), 4, + ACTIONS(2536), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 29, + ACTIONS(2534), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104662,30 +103346,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91516] = 3, + [91142] = 4, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2537), 4, + ACTIONS(645), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2535), 29, + ACTIONS(686), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -104701,98 +103386,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91558] = 5, + [91186] = 4, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, + ACTIONS(645), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 14, + ACTIONS(686), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(667), 15, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91604] = 5, + [91230] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, + ACTIONS(2552), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 14, + ACTIONS(2550), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(667), 15, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [91272] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2540), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2538), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91650] = 3, + [91314] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1694), 4, + ACTIONS(2544), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1692), 29, + ACTIONS(2542), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104822,16 +103543,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91692] = 3, + [91356] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1690), 4, + ACTIONS(2548), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1688), 29, + ACTIONS(2546), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104861,16 +103582,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91734] = 3, + [91398] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1671), 4, + ACTIONS(1635), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1669), 29, + ACTIONS(1633), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104900,23 +103621,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91776] = 3, + [91440] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 4, + ACTIONS(1614), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 29, + ACTIONS(1611), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -104939,15 +103659,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91818] = 4, + [91481] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(710), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(669), 13, + ACTIONS(1720), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104961,10 +103677,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(667), 16, + ACTIONS(1718), 19, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104978,11 +103697,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91861] = 3, + [91522] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1690), 13, + ACTIONS(1672), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104996,7 +103715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1688), 19, + ACTIONS(1670), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -105016,11 +103735,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91902] = 3, + [91563] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1671), 13, + ACTIONS(1672), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105034,7 +103753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1669), 19, + ACTIONS(1670), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -105054,11 +103773,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91943] = 3, + [91604] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1694), 13, + ACTIONS(686), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(645), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105072,13 +103795,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1692), 19, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(643), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105092,15 +103812,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91984] = 4, + [91647] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1630), 3, + ACTIONS(265), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1635), 13, + ACTIONS(267), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105114,7 +103834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1637), 16, + ACTIONS(308), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -105131,15 +103851,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92027] = 4, + [91690] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1654), 3, + ACTIONS(1644), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1657), 13, + ACTIONS(1649), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105153,7 +103873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1652), 16, + ACTIONS(1653), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -105170,129 +103890,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92070] = 3, + [91733] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1654), 28, + ACTIONS(686), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [92111] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1657), 4, + ACTIONS(645), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1654), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [92152] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1657), 4, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1654), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [92193] = 4, + ACTIONS(643), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [91776] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1677), 3, + ACTIONS(1655), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1682), 13, + ACTIONS(1660), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105306,7 +103951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1686), 16, + ACTIONS(1664), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -105323,11 +103968,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92236] = 3, + [91819] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 13, + ACTIONS(265), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(267), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105341,13 +103990,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1645), 19, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(308), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105361,11 +104007,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92277] = 3, + [91862] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 13, + ACTIONS(1635), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105379,7 +104025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1641), 19, + ACTIONS(1633), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -105399,11 +104045,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92318] = 3, + [91903] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 13, + ACTIONS(1716), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105417,7 +104063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1641), 19, + ACTIONS(1714), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -105437,15 +104083,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92359] = 4, + [91944] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(279), 13, + ACTIONS(1708), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105459,10 +104101,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(320), 16, + ACTIONS(1706), 19, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105476,15 +104121,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92402] = 4, + [91985] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1662), 3, + ACTIONS(1611), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1667), 13, + ACTIONS(1614), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105498,7 +104143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1581), 16, + ACTIONS(1607), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -105515,54 +104160,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92445] = 4, + [92028] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 3, + ACTIONS(1614), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(279), 13, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_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(320), 16, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [92488] = 4, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [92069] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1565), 3, + ACTIONS(1614), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(1570), 13, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [92110] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1720), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105576,10 +104254,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1581), 16, + ACTIONS(1718), 19, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105593,11 +104274,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92531] = 3, + [92151] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 13, + ACTIONS(1637), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1642), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105611,13 +104296,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1645), 19, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1581), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105631,15 +104313,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92572] = 4, + [92194] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(710), 3, + ACTIONS(1565), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(669), 13, + ACTIONS(1570), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105653,7 +104335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(667), 16, + ACTIONS(1581), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -105670,51 +104352,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92615] = 20, - ACTIONS(328), 1, + [92237] = 20, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2574), 1, + ACTIONS(2554), 1, sym_identifier, - ACTIONS(2576), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2578), 1, + ACTIONS(2558), 1, anon_sym_STAR, - ACTIONS(2580), 1, + ACTIONS(2560), 1, anon_sym_if, - ACTIONS(2582), 1, + ACTIONS(2562), 1, anon_sym_COLON, - ACTIONS(2584), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2586), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2576), 1, sym_float, - STATE(1820), 1, + STATE(1791), 1, sym_string, - STATE(1912), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2161), 1, + STATE(2230), 1, sym_case_pattern, - STATE(2625), 1, + STATE(2722), 1, sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2225), 2, + STATE(2150), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2590), 4, + ACTIONS(2570), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1914), 9, + STATE(1944), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105724,51 +104406,51 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92689] = 20, - ACTIONS(328), 1, + [92311] = 20, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2574), 1, + ACTIONS(2554), 1, sym_identifier, - ACTIONS(2576), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2578), 1, + ACTIONS(2558), 1, anon_sym_STAR, - ACTIONS(2580), 1, + ACTIONS(2560), 1, anon_sym_if, - ACTIONS(2584), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2586), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2598), 1, + ACTIONS(2578), 1, anon_sym_COLON, - STATE(1820), 1, + STATE(1791), 1, sym_string, - STATE(1912), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2161), 1, + STATE(2230), 1, sym_case_pattern, - STATE(2662), 1, + STATE(2762), 1, sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2225), 2, + STATE(2150), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2590), 4, + ACTIONS(2570), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1914), 9, + STATE(1944), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105778,47 +104460,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92763] = 18, - ACTIONS(801), 1, + [92385] = 18, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2604), 1, - anon_sym_RPAREN, - ACTIONS(2606), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2590), 1, + anon_sym_RBRACK, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2600), 1, sym_float, - STATE(1858), 1, + STATE(1837), 1, sym_string, - STATE(2069), 1, + STATE(2090), 1, sym_dotted_name, - STATE(2241), 1, + STATE(2394), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2063), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105828,47 +104510,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92831] = 18, - ACTIONS(801), 1, + [92453] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2600), 1, - sym_identifier, ACTIONS(2602), 1, + sym_identifier, + ACTIONS(2604), 1, anon_sym_LPAREN, ACTIONS(2606), 1, - anon_sym_STAR, + anon_sym_RPAREN, ACTIONS(2608), 1, - anon_sym_STAR_STAR, + anon_sym_STAR, ACTIONS(2610), 1, - anon_sym_LBRACK, + anon_sym_STAR_STAR, ACTIONS(2612), 1, + anon_sym_LBRACK, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2616), 1, - anon_sym_LBRACE, ACTIONS(2618), 1, - sym_integer, + anon_sym_LBRACE, ACTIONS(2620), 1, - sym_float, + sym_integer, ACTIONS(2622), 1, - anon_sym_RPAREN, - STATE(1858), 1, + sym_float, + STATE(1853), 1, sym_string, - STATE(2069), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2311), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105878,47 +104560,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92899] = 18, - ACTIONS(801), 1, + [92521] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2600), 1, - sym_identifier, ACTIONS(2602), 1, + sym_identifier, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, - anon_sym_STAR, ACTIONS(2608), 1, - anon_sym_STAR_STAR, + anon_sym_STAR, ACTIONS(2610), 1, - anon_sym_LBRACK, + anon_sym_STAR_STAR, ACTIONS(2612), 1, + anon_sym_LBRACK, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2616), 1, - anon_sym_LBRACE, ACTIONS(2618), 1, - sym_integer, + anon_sym_LBRACE, ACTIONS(2620), 1, + sym_integer, + ACTIONS(2622), 1, sym_float, ACTIONS(2624), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1853), 1, sym_string, - STATE(2069), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2311), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105928,47 +104610,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92967] = 18, - ACTIONS(801), 1, + [92589] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2600), 1, - sym_identifier, ACTIONS(2602), 1, + sym_identifier, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, - anon_sym_STAR, ACTIONS(2608), 1, - anon_sym_STAR_STAR, + anon_sym_STAR, ACTIONS(2610), 1, - anon_sym_LBRACK, + anon_sym_STAR_STAR, ACTIONS(2612), 1, + anon_sym_LBRACK, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2616), 1, - anon_sym_LBRACE, ACTIONS(2618), 1, - sym_integer, + anon_sym_LBRACE, ACTIONS(2620), 1, + sym_integer, + ACTIONS(2622), 1, sym_float, ACTIONS(2626), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1853), 1, sym_string, - STATE(2069), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2311), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105978,47 +104660,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93035] = 18, - ACTIONS(801), 1, + [92657] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2600), 1, - sym_identifier, ACTIONS(2602), 1, + sym_identifier, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, - anon_sym_STAR, ACTIONS(2608), 1, - anon_sym_STAR_STAR, + anon_sym_STAR, ACTIONS(2610), 1, - anon_sym_LBRACK, + anon_sym_STAR_STAR, ACTIONS(2612), 1, + anon_sym_LBRACK, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2616), 1, - anon_sym_LBRACE, ACTIONS(2618), 1, - sym_integer, + anon_sym_LBRACE, ACTIONS(2620), 1, + sym_integer, + ACTIONS(2622), 1, sym_float, ACTIONS(2628), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1853), 1, sym_string, - STATE(2069), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2202), 1, + STATE(2148), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106028,47 +104710,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93103] = 18, - ACTIONS(755), 1, + [92725] = 18, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2640), 1, - anon_sym_RBRACK, - ACTIONS(2642), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2600), 1, sym_float, - STATE(1877), 1, + ACTIONS(2630), 1, + anon_sym_RBRACK, + STATE(1837), 1, sym_string, - STATE(2085), 1, + STATE(2090), 1, sym_dotted_name, - STATE(2203), 1, + STATE(2149), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(2063), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106078,47 +104760,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93171] = 18, - ACTIONS(801), 1, + [92793] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2600), 1, - sym_identifier, ACTIONS(2602), 1, + sym_identifier, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, - anon_sym_STAR, ACTIONS(2608), 1, - anon_sym_STAR_STAR, + anon_sym_STAR, ACTIONS(2610), 1, - anon_sym_LBRACK, + anon_sym_STAR_STAR, ACTIONS(2612), 1, + anon_sym_LBRACK, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2616), 1, - anon_sym_LBRACE, ACTIONS(2618), 1, - sym_integer, + anon_sym_LBRACE, ACTIONS(2620), 1, + sym_integer, + ACTIONS(2622), 1, sym_float, - ACTIONS(2652), 1, + ACTIONS(2632), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1853), 1, sym_string, - STATE(2069), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2204), 1, + STATE(2153), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106128,47 +104810,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93239] = 18, - ACTIONS(801), 1, + [92861] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2600), 1, - sym_identifier, ACTIONS(2602), 1, + sym_identifier, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, - anon_sym_STAR, ACTIONS(2608), 1, - anon_sym_STAR_STAR, + anon_sym_STAR, ACTIONS(2610), 1, - anon_sym_LBRACK, + anon_sym_STAR_STAR, ACTIONS(2612), 1, + anon_sym_LBRACK, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2616), 1, - anon_sym_LBRACE, ACTIONS(2618), 1, - sym_integer, + anon_sym_LBRACE, ACTIONS(2620), 1, + sym_integer, + ACTIONS(2622), 1, sym_float, - ACTIONS(2654), 1, + ACTIONS(2634), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1853), 1, sym_string, - STATE(2069), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2311), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106178,47 +104860,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93307] = 18, - ACTIONS(755), 1, + [92929] = 18, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2656), 1, + ACTIONS(2636), 1, anon_sym_RBRACK, - STATE(1877), 1, + STATE(1837), 1, sym_string, - STATE(2085), 1, + STATE(2090), 1, sym_dotted_name, - STATE(2455), 1, + STATE(2394), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(2063), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106228,47 +104910,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93375] = 18, - ACTIONS(801), 1, + [92997] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2600), 1, - sym_identifier, ACTIONS(2602), 1, + sym_identifier, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, - anon_sym_STAR, ACTIONS(2608), 1, - anon_sym_STAR_STAR, + anon_sym_STAR, ACTIONS(2610), 1, - anon_sym_LBRACK, + anon_sym_STAR_STAR, ACTIONS(2612), 1, + anon_sym_LBRACK, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2616), 1, - anon_sym_LBRACE, ACTIONS(2618), 1, - sym_integer, + anon_sym_LBRACE, ACTIONS(2620), 1, + sym_integer, + ACTIONS(2622), 1, sym_float, - ACTIONS(2658), 1, + ACTIONS(2638), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1853), 1, sym_string, - STATE(2069), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2229), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106278,47 +104960,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93443] = 18, - ACTIONS(755), 1, + [93065] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2660), 1, - anon_sym_RBRACK, - STATE(1877), 1, + ACTIONS(2640), 1, + anon_sym_RPAREN, + STATE(1853), 1, sym_string, - STATE(2085), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2455), 1, + STATE(2311), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106328,47 +105010,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93511] = 18, - ACTIONS(801), 1, + [93133] = 18, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2662), 1, - anon_sym_RPAREN, - STATE(1858), 1, + ACTIONS(2642), 1, + anon_sym_RBRACK, + STATE(1837), 1, sym_string, - STATE(2069), 1, + STATE(2090), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2394), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2063), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106378,47 +105060,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93579] = 18, - ACTIONS(801), 1, + [93201] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2600), 1, - sym_identifier, ACTIONS(2602), 1, + sym_identifier, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, - anon_sym_STAR, ACTIONS(2608), 1, - anon_sym_STAR_STAR, + anon_sym_STAR, ACTIONS(2610), 1, - anon_sym_LBRACK, + anon_sym_STAR_STAR, ACTIONS(2612), 1, + anon_sym_LBRACK, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2616), 1, - anon_sym_LBRACE, ACTIONS(2618), 1, - sym_integer, + anon_sym_LBRACE, ACTIONS(2620), 1, + sym_integer, + ACTIONS(2622), 1, sym_float, - ACTIONS(2664), 1, + ACTIONS(2644), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1853), 1, sym_string, - STATE(2069), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2311), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106428,47 +105110,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93647] = 18, - ACTIONS(755), 1, + [93269] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2666), 1, - anon_sym_RBRACK, - STATE(1877), 1, + ACTIONS(2646), 1, + anon_sym_RPAREN, + STATE(1853), 1, sym_string, - STATE(2085), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2244), 1, + STATE(2311), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106478,47 +105160,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93715] = 18, - ACTIONS(801), 1, + [93337] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2600), 1, - sym_identifier, ACTIONS(2602), 1, + sym_identifier, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, - anon_sym_STAR, ACTIONS(2608), 1, - anon_sym_STAR_STAR, + anon_sym_STAR, ACTIONS(2610), 1, - anon_sym_LBRACK, + anon_sym_STAR_STAR, ACTIONS(2612), 1, + anon_sym_LBRACK, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2616), 1, - anon_sym_LBRACE, ACTIONS(2618), 1, - sym_integer, + anon_sym_LBRACE, ACTIONS(2620), 1, + sym_integer, + ACTIONS(2622), 1, sym_float, - ACTIONS(2668), 1, + ACTIONS(2648), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1853), 1, sym_string, - STATE(2069), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2153), 1, + STATE(2163), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106528,47 +105210,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93783] = 18, - ACTIONS(755), 1, + [93405] = 18, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2670), 1, + ACTIONS(2650), 1, anon_sym_RBRACK, - STATE(1877), 1, + STATE(1837), 1, sym_string, - STATE(2085), 1, + STATE(2090), 1, sym_dotted_name, - STATE(2154), 1, + STATE(2164), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(2063), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106578,47 +105260,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93851] = 18, - ACTIONS(801), 1, + [93473] = 18, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2672), 1, - anon_sym_RPAREN, - STATE(1858), 1, + ACTIONS(2652), 1, + anon_sym_RBRACK, + STATE(1837), 1, sym_string, - STATE(2069), 1, + STATE(2090), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2394), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2063), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106628,47 +105310,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93919] = 18, - ACTIONS(755), 1, + [93541] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2674), 1, - anon_sym_RBRACK, - STATE(1877), 1, + ACTIONS(2654), 1, + anon_sym_RPAREN, + STATE(1853), 1, sym_string, - STATE(2085), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2455), 1, + STATE(2311), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106678,47 +105360,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93987] = 18, - ACTIONS(801), 1, + [93609] = 18, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2676), 1, - anon_sym_RPAREN, - STATE(1858), 1, + ACTIONS(2656), 1, + anon_sym_RBRACK, + STATE(1837), 1, sym_string, - STATE(2069), 1, + STATE(2090), 1, sym_dotted_name, - STATE(2163), 1, + STATE(2394), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2063), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106728,47 +105410,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94055] = 18, - ACTIONS(801), 1, + [93677] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2600), 1, - sym_identifier, ACTIONS(2602), 1, + sym_identifier, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, - anon_sym_STAR, ACTIONS(2608), 1, - anon_sym_STAR_STAR, + anon_sym_STAR, ACTIONS(2610), 1, - anon_sym_LBRACK, + anon_sym_STAR_STAR, ACTIONS(2612), 1, + anon_sym_LBRACK, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2616), 1, - anon_sym_LBRACE, ACTIONS(2618), 1, - sym_integer, + anon_sym_LBRACE, ACTIONS(2620), 1, + sym_integer, + ACTIONS(2622), 1, sym_float, - ACTIONS(2678), 1, + ACTIONS(2658), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1853), 1, sym_string, - STATE(2069), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2311), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106778,47 +105460,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94123] = 18, - ACTIONS(755), 1, + [93745] = 18, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2680), 1, + ACTIONS(2660), 1, anon_sym_RBRACK, - STATE(1877), 1, + STATE(1837), 1, sym_string, - STATE(2085), 1, + STATE(2090), 1, sym_dotted_name, - STATE(2455), 1, + STATE(2394), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(2063), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106828,47 +105510,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94191] = 18, - ACTIONS(801), 1, + [93813] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2600), 1, - sym_identifier, ACTIONS(2602), 1, + sym_identifier, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, - anon_sym_STAR, ACTIONS(2608), 1, - anon_sym_STAR_STAR, + anon_sym_STAR, ACTIONS(2610), 1, - anon_sym_LBRACK, + anon_sym_STAR_STAR, ACTIONS(2612), 1, + anon_sym_LBRACK, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2616), 1, - anon_sym_LBRACE, ACTIONS(2618), 1, - sym_integer, + anon_sym_LBRACE, ACTIONS(2620), 1, + sym_integer, + ACTIONS(2622), 1, sym_float, - ACTIONS(2682), 1, + ACTIONS(2662), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1853), 1, sym_string, - STATE(2069), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2160), 1, + STATE(2311), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106878,47 +105560,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94259] = 18, - ACTIONS(801), 1, + [93881] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2600), 1, - sym_identifier, ACTIONS(2602), 1, + sym_identifier, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, - anon_sym_STAR, ACTIONS(2608), 1, - anon_sym_STAR_STAR, + anon_sym_STAR, ACTIONS(2610), 1, - anon_sym_LBRACK, + anon_sym_STAR_STAR, ACTIONS(2612), 1, + anon_sym_LBRACK, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2616), 1, - anon_sym_LBRACE, ACTIONS(2618), 1, - sym_integer, + anon_sym_LBRACE, ACTIONS(2620), 1, + sym_integer, + ACTIONS(2622), 1, sym_float, - ACTIONS(2684), 1, + ACTIONS(2664), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1853), 1, sym_string, - STATE(2069), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2311), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106928,47 +105610,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94327] = 18, - ACTIONS(755), 1, + [93949] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2686), 1, - anon_sym_RBRACK, - STATE(1877), 1, + ACTIONS(2666), 1, + anon_sym_RPAREN, + STATE(1853), 1, sym_string, - STATE(2085), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2455), 1, + STATE(2311), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106978,47 +105660,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94395] = 18, - ACTIONS(801), 1, + [94017] = 18, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2688), 1, - anon_sym_RPAREN, - STATE(1858), 1, + ACTIONS(2668), 1, + anon_sym_RBRACK, + STATE(1837), 1, sym_string, - STATE(2069), 1, + STATE(2090), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2394), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2063), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107028,47 +105710,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94463] = 18, - ACTIONS(801), 1, + [94085] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2600), 1, - sym_identifier, ACTIONS(2602), 1, + sym_identifier, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, - anon_sym_STAR, ACTIONS(2608), 1, - anon_sym_STAR_STAR, + anon_sym_STAR, ACTIONS(2610), 1, - anon_sym_LBRACK, + anon_sym_STAR_STAR, ACTIONS(2612), 1, + anon_sym_LBRACK, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2616), 1, - anon_sym_LBRACE, ACTIONS(2618), 1, - sym_integer, + anon_sym_LBRACE, ACTIONS(2620), 1, + sym_integer, + ACTIONS(2622), 1, sym_float, - ACTIONS(2690), 1, + ACTIONS(2670), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1853), 1, sym_string, - STATE(2069), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2311), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107078,47 +105760,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94531] = 18, - ACTIONS(801), 1, + [94153] = 18, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2692), 1, - anon_sym_RPAREN, - STATE(1858), 1, + ACTIONS(2672), 1, + anon_sym_RBRACK, + STATE(1837), 1, sym_string, - STATE(2069), 1, + STATE(2090), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2394), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2063), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107128,47 +105810,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94599] = 18, - ACTIONS(755), 1, + [94221] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2694), 1, - anon_sym_RBRACK, - STATE(1877), 1, + ACTIONS(2674), 1, + anon_sym_RPAREN, + STATE(1853), 1, sym_string, - STATE(2085), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2455), 1, + STATE(2311), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107178,47 +105860,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94667] = 18, - ACTIONS(801), 1, + [94289] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2600), 1, - sym_identifier, ACTIONS(2602), 1, + sym_identifier, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, - anon_sym_STAR, ACTIONS(2608), 1, - anon_sym_STAR_STAR, + anon_sym_STAR, ACTIONS(2610), 1, - anon_sym_LBRACK, + anon_sym_STAR_STAR, ACTIONS(2612), 1, + anon_sym_LBRACK, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2616), 1, - anon_sym_LBRACE, ACTIONS(2618), 1, - sym_integer, + anon_sym_LBRACE, ACTIONS(2620), 1, + sym_integer, + ACTIONS(2622), 1, sym_float, - ACTIONS(2696), 1, + ACTIONS(2676), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1853), 1, sym_string, - STATE(2069), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2188), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107228,47 +105910,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94735] = 18, - ACTIONS(801), 1, + [94357] = 18, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2698), 1, - anon_sym_RPAREN, - STATE(1858), 1, + ACTIONS(2678), 1, + anon_sym_RBRACK, + STATE(1837), 1, sym_string, - STATE(2069), 1, + STATE(2090), 1, sym_dotted_name, STATE(2190), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2063), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107278,47 +105960,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94803] = 18, - ACTIONS(755), 1, + [94425] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2700), 1, - anon_sym_RBRACK, - STATE(1877), 1, + ACTIONS(2680), 1, + anon_sym_RPAREN, + STATE(1853), 1, sym_string, - STATE(2085), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2191), 1, + STATE(2118), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107328,47 +106010,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94871] = 18, - ACTIONS(801), 1, + [94493] = 18, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2702), 1, - anon_sym_RPAREN, - STATE(1858), 1, + ACTIONS(2682), 1, + anon_sym_RBRACK, + STATE(1837), 1, sym_string, - STATE(2069), 1, + STATE(2090), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2119), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2063), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107378,47 +106060,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94939] = 18, - ACTIONS(801), 1, + [94561] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2600), 1, - sym_identifier, ACTIONS(2602), 1, + sym_identifier, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, - anon_sym_STAR, ACTIONS(2608), 1, - anon_sym_STAR_STAR, + anon_sym_STAR, ACTIONS(2610), 1, - anon_sym_LBRACK, + anon_sym_STAR_STAR, ACTIONS(2612), 1, + anon_sym_LBRACK, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2616), 1, - anon_sym_LBRACE, ACTIONS(2618), 1, - sym_integer, + anon_sym_LBRACE, ACTIONS(2620), 1, + sym_integer, + ACTIONS(2622), 1, sym_float, - ACTIONS(2704), 1, + ACTIONS(2684), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1853), 1, sym_string, - STATE(2069), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2194), 1, + STATE(2311), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107428,47 +106110,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95007] = 18, - ACTIONS(801), 1, + [94629] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2600), 1, - sym_identifier, ACTIONS(2602), 1, + sym_identifier, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, - anon_sym_STAR, ACTIONS(2608), 1, - anon_sym_STAR_STAR, + anon_sym_STAR, ACTIONS(2610), 1, - anon_sym_LBRACK, + anon_sym_STAR_STAR, ACTIONS(2612), 1, + anon_sym_LBRACK, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2616), 1, - anon_sym_LBRACE, ACTIONS(2618), 1, - sym_integer, + anon_sym_LBRACE, ACTIONS(2620), 1, + sym_integer, + ACTIONS(2622), 1, sym_float, - ACTIONS(2706), 1, + ACTIONS(2686), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1853), 1, sym_string, - STATE(2069), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2125), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107478,47 +106160,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95075] = 18, - ACTIONS(755), 1, + [94697] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2708), 1, - anon_sym_RBRACK, - STATE(1877), 1, + ACTIONS(2688), 1, + anon_sym_RPAREN, + STATE(1853), 1, sym_string, - STATE(2085), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2455), 1, + STATE(2311), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107528,47 +106210,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95143] = 18, - ACTIONS(755), 1, + [94765] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2710), 1, - anon_sym_RBRACK, - STATE(1877), 1, + ACTIONS(2690), 1, + anon_sym_RPAREN, + STATE(1853), 1, sym_string, - STATE(2085), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2455), 1, + STATE(2170), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107578,45 +106260,45 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95211] = 17, - ACTIONS(328), 1, + [94833] = 17, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2574), 1, + ACTIONS(2554), 1, sym_identifier, - ACTIONS(2576), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2578), 1, + ACTIONS(2558), 1, anon_sym_STAR, - ACTIONS(2584), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2586), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2576), 1, sym_float, - STATE(1820), 1, + STATE(1791), 1, sym_string, - STATE(1912), 1, - sym_dotted_name, - STATE(1913), 1, + STATE(1886), 1, sym_case_pattern, + STATE(1978), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2225), 2, + STATE(2150), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2590), 4, + ACTIONS(2570), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1914), 9, + STATE(1944), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107626,45 +106308,45 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95276] = 17, - ACTIONS(801), 1, + [94898] = 17, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2600), 1, - sym_identifier, ACTIONS(2602), 1, + sym_identifier, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, - anon_sym_STAR, ACTIONS(2608), 1, - anon_sym_STAR_STAR, + anon_sym_STAR, ACTIONS(2610), 1, - anon_sym_LBRACK, + anon_sym_STAR_STAR, ACTIONS(2612), 1, + anon_sym_LBRACK, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2616), 1, - anon_sym_LBRACE, ACTIONS(2618), 1, - sym_integer, + anon_sym_LBRACE, ACTIONS(2620), 1, + sym_integer, + ACTIONS(2622), 1, sym_float, - STATE(1858), 1, + STATE(1853), 1, sym_string, - STATE(2069), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2311), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107674,45 +106356,45 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95341] = 17, - ACTIONS(755), 1, + [94963] = 17, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2554), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2558), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2576), 1, sym_float, - STATE(1877), 1, + STATE(1791), 1, sym_string, - STATE(2085), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2455), 1, + STATE(2230), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, + STATE(2150), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2570), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(1944), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107722,45 +106404,45 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95406] = 17, - ACTIONS(328), 1, + [95028] = 17, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2574), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2576), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2578), 1, - anon_sym_STAR, ACTIONS(2584), 1, - anon_sym_STAR_STAR, + anon_sym_STAR, ACTIONS(2586), 1, - anon_sym_LBRACK, + anon_sym_STAR_STAR, ACTIONS(2588), 1, - anon_sym_DASH, + anon_sym_LBRACK, ACTIONS(2592), 1, + anon_sym_DASH, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2600), 1, sym_float, - STATE(1820), 1, + STATE(1837), 1, sym_string, - STATE(1912), 1, + STATE(2090), 1, sym_dotted_name, - STATE(2161), 1, + STATE(2394), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2225), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2590), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1914), 9, + STATE(2063), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107770,45 +106452,45 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95471] = 17, - ACTIONS(708), 1, + [95093] = 17, + ACTIONS(684), 1, sym_string_start, - ACTIONS(2712), 1, + ACTIONS(2692), 1, sym_identifier, - ACTIONS(2714), 1, + ACTIONS(2694), 1, anon_sym_LPAREN, - ACTIONS(2716), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2720), 1, + ACTIONS(2700), 1, anon_sym_LBRACK, - ACTIONS(2722), 1, + ACTIONS(2702), 1, anon_sym_DASH, - ACTIONS(2726), 1, + ACTIONS(2706), 1, anon_sym_LBRACE, - ACTIONS(2728), 1, + ACTIONS(2708), 1, sym_integer, - ACTIONS(2730), 1, + ACTIONS(2710), 1, sym_float, - STATE(1894), 1, + STATE(1873), 1, sym_string, - STATE(2008), 1, + STATE(2048), 1, sym_dotted_name, - STATE(2272), 1, + STATE(2307), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2493), 2, + STATE(2355), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2724), 4, + ACTIONS(2704), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2093), 9, + STATE(2051), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107818,46 +106500,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95536] = 18, - ACTIONS(328), 1, + [95158] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2736), 1, + ACTIONS(2716), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1791), 1, sym_string, - STATE(1912), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2031), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2303), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107866,46 +106548,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95602] = 18, - ACTIONS(328), 1, + [95224] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2738), 1, + ACTIONS(2718), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1791), 1, sym_string, - STATE(1912), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2116), 1, sym_splat_pattern, STATE(2526), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107914,46 +106596,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95668] = 18, - ACTIONS(328), 1, + [95290] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2740), 1, + ACTIONS(2720), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1791), 1, sym_string, - STATE(1912), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2116), 1, sym_splat_pattern, STATE(2526), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107962,46 +106644,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95734] = 18, - ACTIONS(328), 1, + [95356] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2742), 1, + ACTIONS(2722), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1791), 1, sym_string, - STATE(1912), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2116), 1, sym_splat_pattern, STATE(2526), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108010,46 +106692,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95800] = 18, - ACTIONS(328), 1, + [95422] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2744), 1, + ACTIONS(2724), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1791), 1, sym_string, - STATE(1912), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2116), 1, sym_splat_pattern, STATE(2526), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108058,46 +106740,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95866] = 18, - ACTIONS(328), 1, + [95488] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2746), 1, + ACTIONS(2726), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1791), 1, sym_string, - STATE(1912), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2116), 1, sym_splat_pattern, STATE(2526), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108106,46 +106788,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95932] = 18, - ACTIONS(328), 1, + [95554] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2748), 1, + ACTIONS(2728), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1791), 1, sym_string, - STATE(1912), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2116), 1, sym_splat_pattern, STATE(2526), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108154,46 +106836,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95998] = 18, - ACTIONS(328), 1, + [95620] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2750), 1, + ACTIONS(2730), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1791), 1, sym_string, - STATE(1912), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2116), 1, sym_splat_pattern, STATE(2526), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108202,46 +106884,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96064] = 18, - ACTIONS(328), 1, + [95686] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2752), 1, + ACTIONS(2732), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1791), 1, sym_string, - STATE(1912), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2116), 1, sym_splat_pattern, STATE(2526), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108250,46 +106932,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96130] = 18, - ACTIONS(328), 1, + [95752] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2754), 1, + ACTIONS(2734), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1791), 1, sym_string, - STATE(1912), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2116), 1, sym_splat_pattern, STATE(2526), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108298,46 +106980,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96196] = 18, - ACTIONS(328), 1, + [95818] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2756), 1, + ACTIONS(2736), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1791), 1, sym_string, - STATE(1912), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2061), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2258), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108346,46 +107028,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96262] = 18, - ACTIONS(328), 1, + [95884] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2758), 1, + ACTIONS(2738), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1791), 1, sym_string, - STATE(1912), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2082), 1, + STATE(2116), 1, sym_splat_pattern, - STATE(2328), 1, + STATE(2526), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108394,46 +107076,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96328] = 18, - ACTIONS(328), 1, + [95950] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2760), 1, + ACTIONS(2740), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1791), 1, sym_string, - STATE(1912), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2021), 1, + STATE(2116), 1, sym_splat_pattern, - STATE(2478), 1, + STATE(2526), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108442,46 +107124,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96394] = 18, - ACTIONS(328), 1, + [96016] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2762), 1, + ACTIONS(2742), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1791), 1, sym_string, - STATE(1912), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2116), 1, sym_splat_pattern, STATE(2526), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108490,46 +107172,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96460] = 18, - ACTIONS(328), 1, + [96082] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2764), 1, + ACTIONS(2744), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1791), 1, sym_string, - STATE(1912), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2108), 1, + STATE(2116), 1, sym_splat_pattern, - STATE(2287), 1, + STATE(2526), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108538,46 +107220,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96526] = 18, - ACTIONS(328), 1, + [96148] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2766), 1, + ACTIONS(2746), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1791), 1, sym_string, - STATE(1912), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2044), 1, + STATE(2116), 1, sym_splat_pattern, - STATE(2286), 1, + STATE(2526), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108586,46 +107268,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96592] = 18, - ACTIONS(328), 1, + [96214] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2768), 1, + ACTIONS(2748), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1791), 1, sym_string, - STATE(1912), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2058), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2360), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108634,46 +107316,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96658] = 18, - ACTIONS(328), 1, + [96280] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2770), 1, + ACTIONS(2750), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1791), 1, sym_string, - STATE(1912), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2042), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2331), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108682,46 +107364,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96724] = 18, - ACTIONS(328), 1, + [96346] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2772), 1, + ACTIONS(2752), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1791), 1, sym_string, - STATE(1912), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2116), 1, sym_splat_pattern, STATE(2526), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108730,46 +107412,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96790] = 18, - ACTIONS(328), 1, + [96412] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2774), 1, + ACTIONS(2754), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1791), 1, sym_string, - STATE(1912), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2116), 1, sym_splat_pattern, STATE(2526), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108778,44 +107460,44 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96856] = 17, - ACTIONS(328), 1, + [96478] = 17, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2712), 1, sym_identifier, - STATE(1820), 1, + STATE(1791), 1, sym_string, - STATE(1912), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2116), 1, sym_splat_pattern, STATE(2526), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108824,40 +107506,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96919] = 15, - ACTIONS(755), 1, + [96541] = 15, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2632), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2558), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2776), 1, + ACTIONS(2712), 1, sym_identifier, - STATE(1877), 1, + STATE(1791), 1, sym_string, - STATE(2085), 1, + STATE(1978), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2778), 4, + ACTIONS(2756), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2059), 9, + STATE(1918), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108867,40 +107549,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96977] = 15, - ACTIONS(755), 1, + [96599] = 15, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2632), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2776), 1, + ACTIONS(2758), 1, sym_identifier, - STATE(1877), 1, + STATE(1837), 1, sym_string, - STATE(2085), 1, + STATE(2090), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2780), 4, + ACTIONS(2760), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2058), 9, + STATE(2078), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108910,40 +107592,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [97035] = 15, - ACTIONS(708), 1, + [96657] = 15, + ACTIONS(684), 1, sym_string_start, - ACTIONS(2714), 1, + ACTIONS(2694), 1, anon_sym_LPAREN, - ACTIONS(2716), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2720), 1, + ACTIONS(2700), 1, anon_sym_LBRACK, - ACTIONS(2722), 1, + ACTIONS(2702), 1, anon_sym_DASH, - ACTIONS(2726), 1, + ACTIONS(2706), 1, anon_sym_LBRACE, - ACTIONS(2728), 1, + ACTIONS(2708), 1, sym_integer, - ACTIONS(2730), 1, + ACTIONS(2710), 1, sym_float, - ACTIONS(2782), 1, + ACTIONS(2762), 1, sym_identifier, - STATE(1894), 1, + STATE(1873), 1, sym_string, - STATE(2008), 1, + STATE(2048), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2784), 4, + ACTIONS(2764), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2066), 9, + STATE(2054), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108953,40 +107635,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [97093] = 15, - ACTIONS(801), 1, + [96715] = 15, + ACTIONS(684), 1, sym_string_start, - ACTIONS(2602), 1, + ACTIONS(2694), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2700), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2702), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2706), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2708), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2710), 1, sym_float, - ACTIONS(2786), 1, + ACTIONS(2762), 1, sym_identifier, - STATE(1858), 1, + STATE(1873), 1, sym_string, - STATE(2069), 1, + STATE(2048), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2788), 4, + ACTIONS(2766), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2106), 9, + STATE(2050), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108996,40 +107678,77 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [97151] = 15, - ACTIONS(801), 1, + [96773] = 9, + ACTIONS(2098), 1, + anon_sym_not, + ACTIONS(2104), 1, + anon_sym_is, + ACTIONS(2770), 1, + anon_sym_EQ, + STATE(1550), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2106), 2, + anon_sym_LT, + anon_sym_GT, + STATE(873), 2, + sym__not_in, + sym__is_not, + ACTIONS(2084), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2768), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [96819] = 15, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2602), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2558), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2786), 1, + ACTIONS(2712), 1, sym_identifier, - STATE(1858), 1, + STATE(1791), 1, sym_string, - STATE(2069), 1, + STATE(1978), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2790), 4, + ACTIONS(2772), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2105), 9, + STATE(1934), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -109039,40 +107758,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [97209] = 15, - ACTIONS(328), 1, + [96877] = 15, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2578), 1, - anon_sym_STAR, ACTIONS(2584), 1, - anon_sym_STAR_STAR, + anon_sym_STAR, ACTIONS(2586), 1, - anon_sym_LBRACK, + anon_sym_STAR_STAR, ACTIONS(2588), 1, - anon_sym_DASH, + anon_sym_LBRACK, ACTIONS(2592), 1, + anon_sym_DASH, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2732), 1, + ACTIONS(2758), 1, sym_identifier, - STATE(1820), 1, + STATE(1837), 1, sym_string, - STATE(1912), 1, + STATE(2090), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2792), 4, + ACTIONS(2774), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1972), 9, + STATE(2000), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -109082,77 +107801,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [97267] = 9, - ACTIONS(2120), 1, - anon_sym_not, - ACTIONS(2126), 1, - anon_sym_is, - ACTIONS(2796), 1, - anon_sym_EQ, - STATE(1567), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2128), 2, - anon_sym_LT, - anon_sym_GT, - STATE(965), 2, - sym__not_in, - sym__is_not, - ACTIONS(2106), 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(2794), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [97313] = 15, - ACTIONS(708), 1, + [96935] = 15, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2714), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2716), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2720), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2722), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2726), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2728), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2730), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2782), 1, + ACTIONS(2776), 1, sym_identifier, - STATE(1894), 1, + STATE(1853), 1, sym_string, - STATE(2008), 1, + STATE(2047), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2798), 4, + ACTIONS(2778), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2063), 9, + STATE(2087), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -109162,40 +107844,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [97371] = 15, - ACTIONS(328), 1, + [96993] = 15, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2578), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2584), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2586), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2732), 1, + ACTIONS(2776), 1, sym_identifier, - STATE(1820), 1, + STATE(1853), 1, sym_string, - STATE(1912), 1, + STATE(2047), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2800), 4, + ACTIONS(2780), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1895), 9, + STATE(2101), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -109205,32 +107887,32 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [97429] = 9, - ACTIONS(2807), 1, + [97051] = 9, + ACTIONS(2787), 1, anon_sym_EQ, - ACTIONS(2809), 1, + ACTIONS(2789), 1, anon_sym_not, - ACTIONS(2812), 1, + ACTIONS(2792), 1, anon_sym_is, - STATE(1567), 1, + STATE(1550), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2815), 2, + ACTIONS(2795), 2, anon_sym_LT, anon_sym_GT, - STATE(965), 2, + STATE(873), 2, sym__not_in, sym__is_not, - ACTIONS(2804), 6, + ACTIONS(2784), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2802), 11, + ACTIONS(2782), 11, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -109242,32 +107924,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97475] = 9, - ACTIONS(2807), 1, + [97097] = 9, + ACTIONS(2787), 1, anon_sym_as, - ACTIONS(2809), 1, + ACTIONS(2789), 1, anon_sym_not, - ACTIONS(2821), 1, + ACTIONS(2801), 1, anon_sym_is, - STATE(1568), 1, + STATE(1551), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2824), 2, + ACTIONS(2804), 2, anon_sym_LT, anon_sym_GT, - STATE(897), 2, + STATE(914), 2, sym__not_in, sym__is_not, - ACTIONS(2818), 6, + ACTIONS(2798), 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(2802), 10, + ACTIONS(2782), 10, anon_sym_DOT, anon_sym_COMMA, anon_sym_if, @@ -109278,32 +107960,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97520] = 9, - ACTIONS(2120), 1, + [97142] = 9, + ACTIONS(2098), 1, anon_sym_not, - ACTIONS(2262), 1, + ACTIONS(2134), 1, anon_sym_is, - ACTIONS(2796), 1, + ACTIONS(2770), 1, anon_sym_as, - STATE(1568), 1, + STATE(1551), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2264), 2, + ACTIONS(2136), 2, anon_sym_LT, anon_sym_GT, - STATE(897), 2, + STATE(914), 2, sym__not_in, sym__is_not, - ACTIONS(2246), 6, + ACTIONS(2118), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2794), 10, + ACTIONS(2768), 10, anon_sym_DOT, anon_sym_COMMA, anon_sym_if, @@ -109314,32 +107996,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97565] = 9, - ACTIONS(2807), 1, + [97187] = 9, + ACTIONS(2787), 1, anon_sym_EQ, - ACTIONS(2809), 1, + ACTIONS(2789), 1, anon_sym_not, - ACTIONS(2830), 1, + ACTIONS(2810), 1, anon_sym_is, - STATE(1570), 1, + STATE(1553), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2833), 2, + ACTIONS(2813), 2, anon_sym_LT, anon_sym_GT, - STATE(957), 2, + STATE(892), 2, sym__not_in, sym__is_not, - ACTIONS(2827), 6, + ACTIONS(2807), 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(2802), 9, + ACTIONS(2782), 9, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, @@ -109349,32 +108031,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97609] = 9, - ACTIONS(2807), 1, - anon_sym_EQ, - ACTIONS(2809), 1, + [97231] = 9, + ACTIONS(2098), 1, anon_sym_not, - ACTIONS(2839), 1, + ACTIONS(2357), 1, anon_sym_is, - STATE(1571), 1, + ACTIONS(2770), 1, + anon_sym_EQ, + STATE(1556), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2842), 2, + ACTIONS(2359), 2, anon_sym_LT, anon_sym_GT, - STATE(904), 2, + STATE(927), 2, sym__not_in, sym__is_not, - ACTIONS(2836), 6, + ACTIONS(2341), 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(2802), 9, + ACTIONS(2768), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -109384,102 +108066,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97653] = 9, - ACTIONS(2120), 1, + [97275] = 9, + ACTIONS(2098), 1, anon_sym_not, - ACTIONS(2381), 1, + ACTIONS(2385), 1, anon_sym_is, - ACTIONS(2796), 1, + ACTIONS(2770), 1, anon_sym_EQ, - STATE(1571), 1, + STATE(1553), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2383), 2, + ACTIONS(2387), 2, anon_sym_LT, anon_sym_GT, - STATE(904), 2, + STATE(892), 2, sym__not_in, sym__is_not, - ACTIONS(2365), 6, + ACTIONS(2369), 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(2794), 9, + ACTIONS(2768), 9, anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97697] = 9, - ACTIONS(2120), 1, + [97319] = 9, + ACTIONS(2787), 1, + anon_sym_EQ, + ACTIONS(2789), 1, anon_sym_not, - ACTIONS(2345), 1, + ACTIONS(2819), 1, anon_sym_is, - ACTIONS(2796), 1, - anon_sym_EQ, - STATE(1570), 1, + STATE(1556), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2347), 2, + ACTIONS(2822), 2, anon_sym_LT, anon_sym_GT, - STATE(957), 2, + STATE(927), 2, sym__not_in, sym__is_not, - ACTIONS(2329), 6, + ACTIONS(2816), 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(2794), 9, + ACTIONS(2782), 9, anon_sym_DOT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97741] = 9, - ACTIONS(2120), 1, + [97363] = 9, + ACTIONS(2787), 1, + anon_sym_as, + ACTIONS(2789), 1, anon_sym_not, - ACTIONS(2310), 1, + ACTIONS(2828), 1, anon_sym_is, - ACTIONS(2796), 1, - anon_sym_as, - STATE(1577), 1, + STATE(1557), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2312), 2, + ACTIONS(2831), 2, anon_sym_LT, anon_sym_GT, - STATE(932), 2, + STATE(861), 2, sym__not_in, sym__is_not, - ACTIONS(2294), 6, + ACTIONS(2825), 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(2794), 8, + ACTIONS(2782), 8, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, @@ -109488,32 +108170,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [97784] = 9, - ACTIONS(2807), 1, - anon_sym_EQ, - ACTIONS(2809), 1, + [97406] = 9, + ACTIONS(2098), 1, anon_sym_not, - ACTIONS(2848), 1, + ACTIONS(2242), 1, anon_sym_is, - STATE(1575), 1, + ACTIONS(2770), 1, + anon_sym_EQ, + STATE(1561), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2851), 2, + ACTIONS(2244), 2, anon_sym_LT, anon_sym_GT, - STATE(954), 2, + STATE(856), 2, sym__not_in, sym__is_not, - ACTIONS(2845), 6, + ACTIONS(2226), 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(2802), 8, + ACTIONS(2768), 8, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -109522,66 +108204,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [97827] = 9, - ACTIONS(2120), 1, + [97449] = 8, + ACTIONS(2098), 1, anon_sym_not, - ACTIONS(2234), 1, + ACTIONS(2431), 1, anon_sym_is, - ACTIONS(2796), 1, - anon_sym_EQ, - STATE(1575), 1, + STATE(1562), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2236), 2, + ACTIONS(2433), 2, anon_sym_LT, anon_sym_GT, - STATE(954), 2, + STATE(947), 2, sym__not_in, sym__is_not, - ACTIONS(2218), 6, + ACTIONS(2415), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2794), 8, + ACTIONS(2768), 9, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_and, anon_sym_or, - sym_type_conversion, - [97870] = 9, - ACTIONS(2807), 1, - anon_sym_as, - ACTIONS(2809), 1, + [97490] = 9, + ACTIONS(2098), 1, anon_sym_not, - ACTIONS(2857), 1, + ACTIONS(2212), 1, anon_sym_is, - STATE(1577), 1, + ACTIONS(2770), 1, + anon_sym_as, + STATE(1557), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2860), 2, + ACTIONS(2214), 2, anon_sym_LT, anon_sym_GT, - STATE(932), 2, + STATE(861), 2, sym__not_in, sym__is_not, - ACTIONS(2854), 6, + ACTIONS(2196), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2802), 8, + ACTIONS(2768), 8, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, @@ -109590,63 +108271,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [97913] = 8, - ACTIONS(2120), 1, + [97533] = 9, + ACTIONS(2787), 1, + anon_sym_EQ, + ACTIONS(2789), 1, anon_sym_not, - ACTIONS(2462), 1, + ACTIONS(2837), 1, anon_sym_is, - STATE(1579), 1, + STATE(1561), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2464), 2, + ACTIONS(2840), 2, anon_sym_LT, anon_sym_GT, - STATE(945), 2, + STATE(856), 2, sym__not_in, sym__is_not, - ACTIONS(2446), 6, + ACTIONS(2834), 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(2794), 9, - anon_sym_DOT, + ACTIONS(2782), 8, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [97954] = 8, - ACTIONS(2809), 1, + sym_type_conversion, + [97576] = 8, + ACTIONS(2789), 1, anon_sym_not, - ACTIONS(2866), 1, + ACTIONS(2846), 1, anon_sym_is, - STATE(1579), 1, + STATE(1562), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2869), 2, + ACTIONS(2849), 2, anon_sym_LT, anon_sym_GT, - STATE(945), 2, + STATE(947), 2, sym__not_in, sym__is_not, - ACTIONS(2863), 6, + ACTIONS(2843), 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(2802), 9, + ACTIONS(2782), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -109656,32 +108338,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97995] = 9, - ACTIONS(2807), 1, + [97617] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(267), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(308), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(265), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [97649] = 9, + ACTIONS(2787), 1, anon_sym_as, - ACTIONS(2809), 1, + ACTIONS(2789), 1, anon_sym_not, - ACTIONS(2875), 1, + ACTIONS(2855), 1, anon_sym_is, - STATE(1580), 1, + STATE(1564), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2878), 2, + ACTIONS(2858), 2, anon_sym_LT, anon_sym_GT, - STATE(876), 2, + STATE(854), 2, sym__not_in, sym__is_not, - ACTIONS(2872), 6, + ACTIONS(2852), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2802), 7, + ACTIONS(2782), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -109689,47 +108399,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_and, anon_sym_or, - [98037] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2883), 10, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(2881), 11, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_type, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [98067] = 4, + [97691] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1660), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(320), 5, + ACTIONS(1664), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(277), 14, + ACTIONS(1655), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109744,63 +108427,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98099] = 4, + [97723] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(320), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(277), 14, - anon_sym_DOT, + ACTIONS(2863), 10, + sym_string_start, anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [98131] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1667), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1581), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(1662), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [98163] = 4, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(2861), 11, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [97753] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -109828,48 +108482,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98195] = 4, + [97785] = 9, + ACTIONS(2098), 1, + anon_sym_not, + ACTIONS(2322), 1, + anon_sym_is, + ACTIONS(2770), 1, + anon_sym_as, + STATE(1564), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1686), 5, + ACTIONS(2324), 2, + anon_sym_LT, + anon_sym_GT, + STATE(854), 2, + sym__not_in, + sym__is_not, + ACTIONS(2306), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2768), 7, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(1677), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [98227] = 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [97827] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 2, + ACTIONS(1642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1637), 5, + ACTIONS(1581), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(1630), 14, + ACTIONS(1637), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109884,11 +108543,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98259] = 3, + [97859] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2887), 10, + ACTIONS(2867), 10, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, @@ -109899,89 +108558,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2885), 11, + ACTIONS(2865), 11, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_type, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [98289] = 9, - ACTIONS(2120), 1, - anon_sym_not, - ACTIONS(2409), 1, - anon_sym_is, - ACTIONS(2796), 1, - anon_sym_as, - STATE(1580), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2411), 2, - anon_sym_LT, - anon_sym_GT, - STATE(876), 2, - sym__not_in, - sym__is_not, - ACTIONS(2393), 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(2794), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [98331] = 4, - ACTIONS(2891), 1, - anon_sym_COMMA, - STATE(1590), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2889), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [98361] = 4, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [97889] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1649), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(667), 3, - anon_sym_RPAREN, + ACTIONS(1653), 5, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(277), 14, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1644), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109996,18 +108598,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98391] = 4, + [97921] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 2, + ACTIONS(267), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1652), 3, - anon_sym_RPAREN, + ACTIONS(308), 5, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1565), 14, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(265), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110022,18 +108626,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98421] = 4, + [97953] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(267), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(667), 3, + ACTIONS(1371), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(277), 14, + ACTIONS(265), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110048,18 +108652,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98451] = 4, + [97983] = 4, + ACTIONS(2869), 1, + anon_sym_COMMA, + STATE(1576), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 2, + ACTIONS(971), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [98013] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(267), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2894), 3, + ACTIONS(643), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1565), 14, + ACTIONS(265), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110074,15 +108704,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98481] = 4, - ACTIONS(2896), 1, + [98043] = 4, + ACTIONS(2873), 1, anon_sym_COMMA, - STATE(1590), 1, + STATE(1576), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(995), 17, + ACTIONS(2871), 17, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -110100,18 +108730,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [98511] = 4, + [98073] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(267), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1435), 3, + ACTIONS(643), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(277), 14, + ACTIONS(265), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110126,18 +108756,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98541] = 4, + [98103] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(267), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1435), 3, + ACTIONS(1371), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(277), 14, + ACTIONS(265), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110152,17 +108782,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98571] = 4, + [98133] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1667), 2, + ACTIONS(1570), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1662), 14, + ACTIONS(1607), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1565), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110177,17 +108808,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98600] = 4, + [98163] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1667), 2, + ACTIONS(1570), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1662), 14, + ACTIONS(2876), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1565), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110202,42 +108834,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98629] = 4, + [98193] = 13, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(2310), 1, + anon_sym_LBRACK, + ACTIONS(2335), 1, + anon_sym_LPAREN, + ACTIONS(2343), 1, + anon_sym_STAR_STAR, + ACTIONS(2351), 1, + anon_sym_PIPE, + ACTIONS(2353), 1, + anon_sym_AMP, + ACTIONS(2355), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1581), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1565), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2339), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2349), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(1386), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2347), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [98658] = 4, + [98240] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1660), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(320), 2, + ACTIONS(1664), 2, anon_sym_COMMA, - anon_sym_in, - ACTIONS(277), 14, + anon_sym_RBRACK, + ACTIONS(1655), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110252,17 +108893,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98687] = 4, + [98269] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(267), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(320), 2, + ACTIONS(308), 2, anon_sym_COMMA, - anon_sym_in, - ACTIONS(277), 14, + anon_sym_RBRACK, + ACTIONS(265), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110277,17 +108918,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98716] = 4, + [98298] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2878), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [98323] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(267), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1435), 2, + ACTIONS(308), 2, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(277), 14, + anon_sym_RBRACK, + ACTIONS(265), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110302,17 +108966,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98745] = 4, + [98352] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1581), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1435), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(277), 14, + ACTIONS(1637), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110327,16 +108991,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98774] = 4, + [98381] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(1570), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2894), 2, + ACTIONS(1581), 2, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_RBRACK, ACTIONS(1565), 14, anon_sym_DOT, anon_sym_LPAREN, @@ -110352,42 +109016,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98803] = 4, + [98410] = 13, + ACTIONS(2333), 1, + anon_sym_DOT, + ACTIONS(2335), 1, + anon_sym_LPAREN, + ACTIONS(2343), 1, + anon_sym_STAR_STAR, + ACTIONS(2345), 1, + anon_sym_LBRACK, + ACTIONS(2351), 1, + anon_sym_PIPE, + ACTIONS(2353), 1, + anon_sym_AMP, + ACTIONS(2355), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1667), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1662), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2339), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2349), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(1386), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2347), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [98832] = 4, + [98457] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 2, - anon_sym_STAR, - anon_sym_SLASH, ACTIONS(1581), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1565), 14, + ACTIONS(1642), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1637), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110402,42 +109075,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98861] = 4, + [98486] = 13, + ACTIONS(2076), 1, + anon_sym_DOT, + ACTIONS(2090), 1, + anon_sym_LBRACK, + ACTIONS(2335), 1, + anon_sym_LPAREN, + ACTIONS(2343), 1, + anon_sym_STAR_STAR, + ACTIONS(2351), 1, + anon_sym_PIPE, + ACTIONS(2353), 1, + anon_sym_AMP, + ACTIONS(2355), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1686), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1677), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2339), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2349), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(1386), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2347), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [98890] = 4, + [98533] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 2, + ACTIONS(267), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1637), 2, - anon_sym_RPAREN, + ACTIONS(308), 2, anon_sym_COMMA, - ACTIONS(1630), 14, + anon_sym_in, + ACTIONS(265), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110452,17 +109134,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98919] = 4, + [98562] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 2, + ACTIONS(1660), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1581), 2, + ACTIONS(1664), 2, anon_sym_COMMA, anon_sym_in, - ACTIONS(1565), 14, + ACTIONS(1655), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110477,17 +109159,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98948] = 4, + [98591] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2871), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [98616] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1660), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(667), 2, + ACTIONS(1664), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(277), 14, + ACTIONS(1655), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110502,17 +109207,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98977] = 4, + [98645] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1570), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(667), 2, + ACTIONS(1581), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(277), 14, + ACTIONS(1565), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110527,17 +109232,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99006] = 4, + [98674] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 2, + ACTIONS(267), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1686), 2, + ACTIONS(308), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_in, - ACTIONS(1677), 14, + ACTIONS(265), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110552,11 +109257,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99035] = 2, + [98703] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2889), 18, + ACTIONS(1581), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -110575,17 +109280,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99060] = 4, + [98728] = 13, + ACTIONS(2294), 1, + anon_sym_DOT, + ACTIONS(2296), 1, + anon_sym_LBRACK, + ACTIONS(2335), 1, + anon_sym_LPAREN, + ACTIONS(2343), 1, + anon_sym_STAR_STAR, + ACTIONS(2351), 1, + anon_sym_PIPE, + ACTIONS(2353), 1, + anon_sym_AMP, + ACTIONS(2355), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(2337), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2339), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2349), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1386), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2347), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [98775] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1570), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(320), 2, + ACTIONS(1607), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(277), 14, + anon_sym_COLON, + ACTIONS(1565), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110600,45 +109339,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99089] = 13, - ACTIONS(2349), 1, + [98804] = 13, + ACTIONS(2218), 1, anon_sym_DOT, - ACTIONS(2351), 1, + ACTIONS(2230), 1, anon_sym_LBRACK, - ACTIONS(2359), 1, + ACTIONS(2335), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2343), 1, anon_sym_STAR_STAR, - ACTIONS(2375), 1, + ACTIONS(2351), 1, anon_sym_PIPE, - ACTIONS(2377), 1, + ACTIONS(2353), 1, anon_sym_AMP, - ACTIONS(2379), 1, + ACTIONS(2355), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2363), 2, + ACTIONS(2339), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2373), 2, + ACTIONS(2349), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1397), 2, + STATE(1386), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2371), 3, + ACTIONS(2347), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [98851] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1649), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1653), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1644), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99136] = 2, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [98880] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2898), 18, + ACTIONS(2880), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -110657,67 +109421,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99161] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(320), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(277), 14, - anon_sym_DOT, + [98905] = 13, + ACTIONS(2335), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2343), 1, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2351), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2353), 1, anon_sym_AMP, + ACTIONS(2355), 1, anon_sym_CARET, - anon_sym_LT_LT, - [99190] = 4, + ACTIONS(2361), 1, + anon_sym_DOT, + ACTIONS(2373), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(320), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(277), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2339), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2349), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(1386), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2347), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [99219] = 4, + [98952] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1637), 2, + ACTIONS(1581), 2, anon_sym_COMMA, anon_sym_in, - ACTIONS(1630), 14, + ACTIONS(1642), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1637), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110732,17 +109480,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99248] = 4, + [98981] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 2, + ACTIONS(267), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1686), 2, + ACTIONS(1371), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1677), 14, + anon_sym_COLON, + ACTIONS(265), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110757,278 +109505,319 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99277] = 13, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, + [99010] = 13, + ACTIONS(2335), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2343), 1, anon_sym_STAR_STAR, - ACTIONS(2369), 1, - anon_sym_LBRACK, - ACTIONS(2375), 1, + ACTIONS(2351), 1, anon_sym_PIPE, - ACTIONS(2377), 1, + ACTIONS(2353), 1, anon_sym_AMP, - ACTIONS(2379), 1, + ACTIONS(2355), 1, anon_sym_CARET, + ACTIONS(2407), 1, + anon_sym_DOT, + ACTIONS(2419), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2363), 2, + ACTIONS(2339), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2373), 2, + ACTIONS(2349), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1397), 2, + STATE(1386), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2371), 3, + ACTIONS(2347), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99324] = 13, - ACTIONS(2098), 1, + [99057] = 13, + ACTIONS(2110), 1, anon_sym_DOT, - ACTIONS(2112), 1, + ACTIONS(2122), 1, anon_sym_LBRACK, - ACTIONS(2359), 1, + ACTIONS(2335), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2343), 1, anon_sym_STAR_STAR, - ACTIONS(2375), 1, + ACTIONS(2351), 1, anon_sym_PIPE, - ACTIONS(2377), 1, + ACTIONS(2353), 1, anon_sym_AMP, - ACTIONS(2379), 1, + ACTIONS(2355), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2363), 2, + ACTIONS(2339), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2373), 2, + ACTIONS(2349), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1397), 2, + STATE(1386), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2371), 3, + ACTIONS(2347), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99371] = 13, - ACTIONS(2359), 1, + [99104] = 13, + ACTIONS(2188), 1, + anon_sym_DOT, + ACTIONS(2200), 1, + anon_sym_LBRACK, + ACTIONS(2335), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2343), 1, anon_sym_STAR_STAR, - ACTIONS(2375), 1, + ACTIONS(2351), 1, anon_sym_PIPE, - ACTIONS(2377), 1, + ACTIONS(2353), 1, anon_sym_AMP, - ACTIONS(2379), 1, + ACTIONS(2355), 1, anon_sym_CARET, - ACTIONS(2385), 1, - anon_sym_DOT, - ACTIONS(2397), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2363), 2, + ACTIONS(2339), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2373), 2, + ACTIONS(2349), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1397), 2, + STATE(1386), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2371), 3, + ACTIONS(2347), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99418] = 13, - ACTIONS(2359), 1, + [99151] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(267), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(308), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(265), 14, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(2367), 1, + anon_sym_GT_GT, anon_sym_STAR_STAR, - ACTIONS(2375), 1, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2377), 1, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(2379), 1, anon_sym_CARET, - ACTIONS(2900), 1, - anon_sym_DOT, - ACTIONS(2902), 1, - anon_sym_LBRACK, + anon_sym_LT_LT, + [99180] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(1570), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2363), 2, + ACTIONS(2876), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1565), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2373), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1397), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2371), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99465] = 13, - ACTIONS(2210), 1, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [99209] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1570), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1581), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1565), 14, anon_sym_DOT, - ACTIONS(2222), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + anon_sym_GT_GT, anon_sym_STAR_STAR, - ACTIONS(2375), 1, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2377), 1, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(2379), 1, anon_sym_CARET, + anon_sym_LT_LT, + [99238] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(1649), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2363), 2, + ACTIONS(1653), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1644), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2373), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1397), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2371), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99512] = 13, - ACTIONS(2321), 1, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [99267] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(267), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(643), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(265), 14, anon_sym_DOT, - ACTIONS(2333), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + anon_sym_GT_GT, anon_sym_STAR_STAR, - ACTIONS(2375), 1, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2377), 1, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(2379), 1, anon_sym_CARET, + anon_sym_LT_LT, + [99296] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(1649), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2363), 2, + ACTIONS(1653), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1644), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2373), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1397), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2371), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99559] = 2, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [99325] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 18, - sym__newline, - anon_sym_SEMI, + ACTIONS(267), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(643), 2, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [99584] = 13, - ACTIONS(2359), 1, + ACTIONS(265), 14, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(2367), 1, + anon_sym_GT_GT, anon_sym_STAR_STAR, - ACTIONS(2375), 1, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2377), 1, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(2379), 1, anon_sym_CARET, - ACTIONS(2438), 1, - anon_sym_DOT, - ACTIONS(2450), 1, - anon_sym_LBRACK, + anon_sym_LT_LT, + [99354] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(267), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2363), 2, + ACTIONS(1371), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(265), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2373), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1397), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2371), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99631] = 4, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [99383] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 2, + ACTIONS(267), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1652), 2, + ACTIONS(308), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1565), 14, + ACTIONS(265), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -111043,107 +109832,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99660] = 13, - ACTIONS(2238), 1, - anon_sym_DOT, - ACTIONS(2250), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, + [99412] = 13, + ACTIONS(2335), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2343), 1, anon_sym_STAR_STAR, - ACTIONS(2375), 1, + ACTIONS(2351), 1, anon_sym_PIPE, - ACTIONS(2377), 1, + ACTIONS(2353), 1, anon_sym_AMP, - ACTIONS(2379), 1, + ACTIONS(2355), 1, anon_sym_CARET, + ACTIONS(2882), 1, + anon_sym_DOT, + ACTIONS(2884), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2363), 2, + ACTIONS(2339), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2373), 2, + ACTIONS(2349), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1397), 2, + STATE(1386), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2371), 3, + ACTIONS(2347), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99707] = 13, - ACTIONS(2286), 1, - anon_sym_DOT, - ACTIONS(2298), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, + [99459] = 13, + ACTIONS(2886), 1, + sym_identifier, + ACTIONS(2888), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, - anon_sym_STAR_STAR, - ACTIONS(2375), 1, - anon_sym_PIPE, - ACTIONS(2377), 1, - anon_sym_AMP, - ACTIONS(2379), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2890), 1, anon_sym_STAR, + ACTIONS(2892), 1, + anon_sym_COLON, + ACTIONS(2894), 1, + anon_sym_STAR_STAR, + ACTIONS(2896), 1, anon_sym_SLASH, - ACTIONS(2363), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2373), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1397), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2371), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [99754] = 4, + STATE(2347), 1, + sym_parameter, + STATE(2350), 1, + sym_tuple_pattern, + STATE(2767), 1, + sym__parameters, + STATE(2776), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1637), 2, + STATE(2518), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2503), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [99505] = 4, + ACTIONS(2898), 1, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1630), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [99783] = 2, + STATE(1620), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2904), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(2871), 15, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, @@ -111159,106 +109923,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99808] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(320), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(277), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [99837] = 13, - ACTIONS(2906), 1, + [99533] = 13, + ACTIONS(2886), 1, sym_identifier, - ACTIONS(2908), 1, + ACTIONS(2888), 1, anon_sym_LPAREN, - ACTIONS(2910), 1, + ACTIONS(2890), 1, anon_sym_STAR, - ACTIONS(2912), 1, - anon_sym_COLON, - ACTIONS(2914), 1, + ACTIONS(2894), 1, anon_sym_STAR_STAR, - ACTIONS(2916), 1, + ACTIONS(2896), 1, anon_sym_SLASH, - STATE(2299), 1, + ACTIONS(2901), 1, + anon_sym_COLON, + STATE(2347), 1, sym_parameter, - STATE(2343), 1, + STATE(2350), 1, sym_tuple_pattern, - STATE(2737), 1, + STATE(2760), 1, sym_lambda_parameters, - STATE(2747), 1, + STATE(2767), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2514), 2, + STATE(2518), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2560), 5, + STATE(2503), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99883] = 13, - ACTIONS(2906), 1, + [99579] = 13, + ACTIONS(2886), 1, sym_identifier, - ACTIONS(2908), 1, + ACTIONS(2888), 1, anon_sym_LPAREN, - ACTIONS(2910), 1, + ACTIONS(2890), 1, anon_sym_STAR, - ACTIONS(2914), 1, + ACTIONS(2894), 1, anon_sym_STAR_STAR, - ACTIONS(2916), 1, + ACTIONS(2896), 1, anon_sym_SLASH, - ACTIONS(2918), 1, + ACTIONS(2903), 1, anon_sym_COLON, - STATE(2299), 1, + STATE(2347), 1, sym_parameter, - STATE(2343), 1, + STATE(2350), 1, sym_tuple_pattern, - STATE(2675), 1, + STATE(2728), 1, sym_lambda_parameters, - STATE(2747), 1, + STATE(2767), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2514), 2, + STATE(2518), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2560), 5, + STATE(2503), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99929] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2904), 17, + [99625] = 6, + ACTIONS(2905), 1, anon_sym_COMMA, + ACTIONS(2907), 1, anon_sym_COLON, - anon_sym_in, + ACTIONS(2909), 1, anon_sym_EQ, + STATE(1574), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2911), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111272,44 +110015,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99953] = 13, - ACTIONS(2906), 1, - sym_identifier, - ACTIONS(2908), 1, - anon_sym_LPAREN, - ACTIONS(2910), 1, - anon_sym_STAR, - ACTIONS(2914), 1, - anon_sym_STAR_STAR, - ACTIONS(2916), 1, - anon_sym_SLASH, - ACTIONS(2920), 1, + [99657] = 6, + ACTIONS(2907), 1, anon_sym_COLON, - STATE(2299), 1, - sym_parameter, - STATE(2343), 1, - sym_tuple_pattern, - STATE(2712), 1, - sym_lambda_parameters, - STATE(2747), 1, - sym__parameters, + ACTIONS(2909), 1, + anon_sym_EQ, + ACTIONS(2913), 1, + anon_sym_COMMA, + STATE(1638), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2514), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2560), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [99999] = 2, + ACTIONS(2911), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [99689] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2889), 17, + ACTIONS(2878), 17, anon_sym_COMMA, anon_sym_COLON, anon_sym_in, @@ -111327,18 +110063,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100023] = 5, - ACTIONS(2924), 1, - anon_sym_COLON, - ACTIONS(2926), 1, - anon_sym_EQ, + [99713] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2922), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(2928), 13, + ACTIONS(1581), 17, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111352,134 +110085,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100053] = 13, - ACTIONS(2906), 1, + [99737] = 13, + ACTIONS(2886), 1, sym_identifier, - ACTIONS(2908), 1, + ACTIONS(2888), 1, anon_sym_LPAREN, - ACTIONS(2910), 1, + ACTIONS(2890), 1, anon_sym_STAR, - ACTIONS(2914), 1, + ACTIONS(2894), 1, anon_sym_STAR_STAR, - ACTIONS(2916), 1, + ACTIONS(2896), 1, anon_sym_SLASH, - ACTIONS(2930), 1, + ACTIONS(2915), 1, anon_sym_COLON, - STATE(2299), 1, + STATE(2347), 1, sym_parameter, - STATE(2343), 1, + STATE(2350), 1, sym_tuple_pattern, - STATE(2747), 1, - sym__parameters, - STATE(2755), 1, + STATE(2652), 1, sym_lambda_parameters, + STATE(2767), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2514), 2, + STATE(2518), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2560), 5, + STATE(2503), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100099] = 4, - ACTIONS(2932), 1, - anon_sym_COMMA, - STATE(1643), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2889), 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, - [100127] = 13, - ACTIONS(2906), 1, + [99783] = 13, + ACTIONS(2886), 1, sym_identifier, - ACTIONS(2908), 1, + ACTIONS(2888), 1, anon_sym_LPAREN, - ACTIONS(2910), 1, + ACTIONS(2890), 1, anon_sym_STAR, - ACTIONS(2914), 1, + ACTIONS(2894), 1, anon_sym_STAR_STAR, - ACTIONS(2916), 1, + ACTIONS(2896), 1, anon_sym_SLASH, - ACTIONS(2935), 1, + ACTIONS(2917), 1, anon_sym_COLON, - STATE(2299), 1, + STATE(2347), 1, sym_parameter, - STATE(2343), 1, + STATE(2350), 1, sym_tuple_pattern, - STATE(2655), 1, + STATE(2764), 1, sym_lambda_parameters, - STATE(2747), 1, + STATE(2767), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2514), 2, + STATE(2518), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2560), 5, + STATE(2503), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100173] = 13, - ACTIONS(2906), 1, + [99829] = 13, + ACTIONS(2886), 1, sym_identifier, - ACTIONS(2908), 1, + ACTIONS(2888), 1, anon_sym_LPAREN, - ACTIONS(2910), 1, + ACTIONS(2890), 1, anon_sym_STAR, - ACTIONS(2914), 1, + ACTIONS(2894), 1, anon_sym_STAR_STAR, - ACTIONS(2916), 1, + ACTIONS(2896), 1, anon_sym_SLASH, - ACTIONS(2937), 1, + ACTIONS(2919), 1, anon_sym_COLON, - STATE(2299), 1, + STATE(2347), 1, sym_parameter, - STATE(2343), 1, + STATE(2350), 1, sym_tuple_pattern, - STATE(2623), 1, + STATE(2751), 1, sym_lambda_parameters, - STATE(2747), 1, + STATE(2767), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2514), 2, + STATE(2518), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2560), 5, + STATE(2503), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100219] = 2, + [99875] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2898), 17, + ACTIONS(2880), 17, anon_sym_COMMA, anon_sym_COLON, anon_sym_in, @@ -111497,140 +110206,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100243] = 13, - ACTIONS(2906), 1, + [99899] = 13, + ACTIONS(2886), 1, sym_identifier, - ACTIONS(2908), 1, + ACTIONS(2888), 1, anon_sym_LPAREN, - ACTIONS(2910), 1, + ACTIONS(2890), 1, anon_sym_STAR, - ACTIONS(2914), 1, + ACTIONS(2894), 1, anon_sym_STAR_STAR, - ACTIONS(2916), 1, + ACTIONS(2896), 1, anon_sym_SLASH, - ACTIONS(2939), 1, + ACTIONS(2921), 1, anon_sym_COLON, - STATE(2299), 1, + STATE(2347), 1, sym_parameter, - STATE(2343), 1, + STATE(2350), 1, sym_tuple_pattern, - STATE(2637), 1, + STATE(2684), 1, sym_lambda_parameters, - STATE(2747), 1, + STATE(2767), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2514), 2, + STATE(2518), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2560), 5, + STATE(2503), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100289] = 13, - ACTIONS(2906), 1, + [99945] = 13, + ACTIONS(2886), 1, sym_identifier, - ACTIONS(2908), 1, + ACTIONS(2888), 1, anon_sym_LPAREN, - ACTIONS(2910), 1, + ACTIONS(2890), 1, anon_sym_STAR, - ACTIONS(2914), 1, + ACTIONS(2894), 1, anon_sym_STAR_STAR, - ACTIONS(2916), 1, + ACTIONS(2896), 1, anon_sym_SLASH, - ACTIONS(2941), 1, + ACTIONS(2923), 1, anon_sym_COLON, - STATE(2299), 1, + STATE(2347), 1, sym_parameter, - STATE(2343), 1, + STATE(2350), 1, sym_tuple_pattern, - STATE(2721), 1, + STATE(2639), 1, sym_lambda_parameters, - STATE(2747), 1, + STATE(2767), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2514), 2, + STATE(2518), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2560), 5, + STATE(2503), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100335] = 13, - ACTIONS(2906), 1, + [99991] = 13, + ACTIONS(2886), 1, sym_identifier, - ACTIONS(2908), 1, + ACTIONS(2888), 1, anon_sym_LPAREN, - ACTIONS(2910), 1, + ACTIONS(2890), 1, anon_sym_STAR, - ACTIONS(2914), 1, + ACTIONS(2894), 1, anon_sym_STAR_STAR, - ACTIONS(2916), 1, + ACTIONS(2896), 1, anon_sym_SLASH, - ACTIONS(2943), 1, + ACTIONS(2925), 1, anon_sym_COLON, - STATE(2299), 1, + STATE(2347), 1, sym_parameter, - STATE(2343), 1, + STATE(2350), 1, sym_tuple_pattern, - STATE(2738), 1, + STATE(2668), 1, sym_lambda_parameters, - STATE(2747), 1, + STATE(2767), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2514), 2, + STATE(2518), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2560), 5, + STATE(2503), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100381] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1581), 17, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [100405] = 6, - ACTIONS(2924), 1, + [100037] = 5, + ACTIONS(2907), 1, anon_sym_COLON, - ACTIONS(2926), 1, + ACTIONS(2909), 1, anon_sym_EQ, - ACTIONS(2945), 1, - anon_sym_COMMA, - STATE(1595), 1, - aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2928), 13, + ACTIONS(2927), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(2911), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111644,42 +110330,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100437] = 6, - ACTIONS(2924), 1, + [100067] = 13, + ACTIONS(2886), 1, + sym_identifier, + ACTIONS(2888), 1, + anon_sym_LPAREN, + ACTIONS(2890), 1, + anon_sym_STAR, + ACTIONS(2894), 1, + anon_sym_STAR_STAR, + ACTIONS(2896), 1, + anon_sym_SLASH, + ACTIONS(2929), 1, anon_sym_COLON, - ACTIONS(2926), 1, - anon_sym_EQ, - ACTIONS(2947), 1, - anon_sym_COMMA, - STATE(1653), 1, - aux_sym__patterns_repeat1, + STATE(2347), 1, + sym_parameter, + STATE(2350), 1, + sym_tuple_pattern, + STATE(2597), 1, + sym_lambda_parameters, + STATE(2767), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2928), 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, - [100469] = 4, - ACTIONS(2949), 1, - anon_sym_COMMA, - STATE(1643), 1, - aux_sym__patterns_repeat1, + STATE(2518), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2503), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [100113] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(995), 15, + ACTIONS(2871), 17, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_in, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -111694,199 +110385,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100497] = 13, - ACTIONS(2906), 1, + [100137] = 13, + ACTIONS(2886), 1, sym_identifier, - ACTIONS(2908), 1, + ACTIONS(2888), 1, anon_sym_LPAREN, - ACTIONS(2910), 1, + ACTIONS(2890), 1, anon_sym_STAR, - ACTIONS(2914), 1, + ACTIONS(2894), 1, anon_sym_STAR_STAR, - ACTIONS(2916), 1, + ACTIONS(2896), 1, anon_sym_SLASH, - ACTIONS(2951), 1, + ACTIONS(2931), 1, anon_sym_COLON, - STATE(2299), 1, + STATE(2347), 1, sym_parameter, - STATE(2343), 1, + STATE(2350), 1, sym_tuple_pattern, - STATE(2743), 1, + STATE(2707), 1, sym_lambda_parameters, - STATE(2747), 1, + STATE(2767), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2514), 2, + STATE(2518), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2560), 5, + STATE(2503), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100543] = 13, - ACTIONS(2906), 1, + [100183] = 4, + ACTIONS(2933), 1, + anon_sym_COMMA, + STATE(1620), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(971), 15, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [100211] = 12, + ACTIONS(2935), 1, sym_identifier, - ACTIONS(2908), 1, + ACTIONS(2937), 1, anon_sym_LPAREN, - ACTIONS(2910), 1, + ACTIONS(2939), 1, + anon_sym_RPAREN, + ACTIONS(2941), 1, anon_sym_STAR, - ACTIONS(2914), 1, + ACTIONS(2943), 1, anon_sym_STAR_STAR, - ACTIONS(2916), 1, + ACTIONS(2945), 1, anon_sym_SLASH, - ACTIONS(2953), 1, - anon_sym_COLON, - STATE(2299), 1, + STATE(2320), 1, sym_parameter, - STATE(2343), 1, + STATE(2321), 1, sym_tuple_pattern, - STATE(2747), 1, + STATE(2626), 1, sym__parameters, - STATE(2787), 1, - sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2514), 2, + STATE(2323), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2560), 5, + STATE(2544), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100589] = 12, - ACTIONS(2955), 1, + [100254] = 11, + ACTIONS(2935), 1, sym_identifier, - ACTIONS(2957), 1, + ACTIONS(2937), 1, anon_sym_LPAREN, - ACTIONS(2959), 1, - anon_sym_RPAREN, - ACTIONS(2961), 1, + ACTIONS(2941), 1, anon_sym_STAR, - ACTIONS(2963), 1, + ACTIONS(2943), 1, anon_sym_STAR_STAR, - ACTIONS(2965), 1, + ACTIONS(2945), 1, anon_sym_SLASH, - STATE(2417), 1, - sym_parameter, - STATE(2419), 1, + ACTIONS(2947), 1, + anon_sym_RPAREN, + STATE(2321), 1, sym_tuple_pattern, - STATE(2621), 1, - sym__parameters, + STATE(2554), 1, + sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2422), 2, + STATE(2323), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2547), 5, + STATE(2544), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100632] = 11, - ACTIONS(2906), 1, + [100294] = 11, + ACTIONS(2935), 1, sym_identifier, - ACTIONS(2908), 1, + ACTIONS(2937), 1, anon_sym_LPAREN, - ACTIONS(2910), 1, + ACTIONS(2941), 1, anon_sym_STAR, - ACTIONS(2914), 1, + ACTIONS(2943), 1, anon_sym_STAR_STAR, - ACTIONS(2916), 1, + ACTIONS(2945), 1, anon_sym_SLASH, - ACTIONS(2967), 1, - anon_sym_COLON, - STATE(2343), 1, + ACTIONS(2949), 1, + anon_sym_RPAREN, + STATE(2321), 1, sym_tuple_pattern, - STATE(2541), 1, + STATE(2554), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2514), 2, + STATE(2323), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2560), 5, + STATE(2544), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100672] = 11, - ACTIONS(2955), 1, + [100334] = 11, + ACTIONS(2886), 1, sym_identifier, - ACTIONS(2957), 1, + ACTIONS(2888), 1, anon_sym_LPAREN, - ACTIONS(2961), 1, + ACTIONS(2890), 1, anon_sym_STAR, - ACTIONS(2963), 1, + ACTIONS(2894), 1, anon_sym_STAR_STAR, - ACTIONS(2965), 1, + ACTIONS(2896), 1, anon_sym_SLASH, - ACTIONS(2967), 1, - anon_sym_RPAREN, - STATE(2419), 1, + ACTIONS(2947), 1, + anon_sym_COLON, + STATE(2350), 1, sym_tuple_pattern, - STATE(2516), 1, + STATE(2514), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2422), 2, + STATE(2518), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2547), 5, + STATE(2503), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100712] = 11, - ACTIONS(2906), 1, + [100374] = 11, + ACTIONS(2886), 1, sym_identifier, - ACTIONS(2908), 1, + ACTIONS(2888), 1, anon_sym_LPAREN, - ACTIONS(2910), 1, + ACTIONS(2890), 1, anon_sym_STAR, - ACTIONS(2914), 1, + ACTIONS(2894), 1, anon_sym_STAR_STAR, - ACTIONS(2916), 1, + ACTIONS(2896), 1, anon_sym_SLASH, - ACTIONS(2969), 1, + ACTIONS(2949), 1, anon_sym_COLON, - STATE(2343), 1, + STATE(2350), 1, sym_tuple_pattern, - STATE(2541), 1, + STATE(2514), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2514), 2, + STATE(2518), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2560), 5, + STATE(2503), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100752] = 4, - ACTIONS(2924), 1, + [100414] = 4, + ACTIONS(2907), 1, anon_sym_COLON, - ACTIONS(2926), 1, + ACTIONS(2909), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2928), 13, + ACTIONS(2911), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111900,235 +110611,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100778] = 11, + [100440] = 11, + ACTIONS(2953), 1, + anon_sym_as, ACTIONS(2955), 1, - sym_identifier, + anon_sym_if, ACTIONS(2957), 1, - anon_sym_LPAREN, + anon_sym_async, + ACTIONS(2959), 1, + anon_sym_for, ACTIONS(2961), 1, - anon_sym_STAR, + anon_sym_and, ACTIONS(2963), 1, - anon_sym_STAR_STAR, - ACTIONS(2965), 1, - anon_sym_SLASH, - ACTIONS(2969), 1, - anon_sym_RPAREN, - STATE(2419), 1, - sym_tuple_pattern, - STATE(2516), 1, - sym_parameter, + anon_sym_or, + STATE(1858), 1, + sym_for_in_clause, + STATE(2397), 1, + aux_sym__collection_elements_repeat1, + STATE(2591), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2422), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2547), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [100818] = 10, - ACTIONS(2906), 1, + ACTIONS(2951), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [100479] = 10, + ACTIONS(2886), 1, sym_identifier, - ACTIONS(2908), 1, + ACTIONS(2888), 1, anon_sym_LPAREN, - ACTIONS(2910), 1, + ACTIONS(2890), 1, anon_sym_STAR, - ACTIONS(2914), 1, + ACTIONS(2894), 1, anon_sym_STAR_STAR, - ACTIONS(2916), 1, + ACTIONS(2896), 1, anon_sym_SLASH, - STATE(2343), 1, + STATE(2350), 1, sym_tuple_pattern, - STATE(2541), 1, + STATE(2514), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2514), 2, + STATE(2518), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2560), 5, + STATE(2503), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100855] = 11, - ACTIONS(2973), 1, - anon_sym_as, - ACTIONS(2975), 1, - anon_sym_if, - ACTIONS(2977), 1, - anon_sym_async, - ACTIONS(2979), 1, - anon_sym_for, - ACTIONS(2981), 1, - anon_sym_and, - ACTIONS(2983), 1, - anon_sym_or, - STATE(1846), 1, - sym_for_in_clause, - STATE(2460), 1, - aux_sym__collection_elements_repeat1, - STATE(2762), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2971), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [100894] = 10, - ACTIONS(2955), 1, + [100516] = 10, + ACTIONS(2935), 1, sym_identifier, - ACTIONS(2957), 1, + ACTIONS(2937), 1, anon_sym_LPAREN, - ACTIONS(2961), 1, + ACTIONS(2941), 1, anon_sym_STAR, - ACTIONS(2963), 1, + ACTIONS(2943), 1, anon_sym_STAR_STAR, - ACTIONS(2965), 1, + ACTIONS(2945), 1, anon_sym_SLASH, - STATE(2419), 1, + STATE(2321), 1, sym_tuple_pattern, - STATE(2516), 1, + STATE(2554), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2422), 2, + STATE(2323), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2547), 5, + STATE(2544), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100931] = 13, - ACTIONS(2985), 1, - anon_sym_COMMA, - ACTIONS(2987), 1, + [100553] = 6, + ACTIONS(2967), 1, anon_sym_as, - ACTIONS(2989), 1, + ACTIONS(2969), 1, anon_sym_if, - ACTIONS(2991), 1, - anon_sym_COLON, - ACTIONS(2993), 1, - anon_sym_async, - ACTIONS(2995), 1, - anon_sym_for, - ACTIONS(2997), 1, - anon_sym_RBRACE, - ACTIONS(2999), 1, + ACTIONS(2971), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(2973), 1, anon_sym_or, - STATE(1860), 1, - sym_for_in_clause, - STATE(2338), 1, - aux_sym__collection_elements_repeat1, - STATE(2739), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100972] = 6, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3007), 1, - anon_sym_if, - ACTIONS(3009), 1, - anon_sym_and, - ACTIONS(3011), 1, - anon_sym_or, + ACTIONS(2965), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [100580] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3003), 8, + ACTIONS(2074), 12, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [100999] = 13, - ACTIONS(2985), 1, + anon_sym_and, + anon_sym_or, + [100599] = 13, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(2987), 1, + ACTIONS(2977), 1, anon_sym_as, - ACTIONS(2989), 1, + ACTIONS(2979), 1, anon_sym_if, - ACTIONS(2991), 1, + ACTIONS(2981), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(2983), 1, anon_sym_async, - ACTIONS(2995), 1, + ACTIONS(2985), 1, anon_sym_for, - ACTIONS(2997), 1, + ACTIONS(2987), 1, anon_sym_RBRACE, - ACTIONS(2999), 1, + ACTIONS(2989), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(2991), 1, anon_sym_or, - STATE(1860), 1, + STATE(1838), 1, sym_for_in_clause, - STATE(2338), 1, + STATE(2434), 1, aux_sym__collection_elements_repeat1, - STATE(2699), 1, + STATE(2582), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101040] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3013), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [101059] = 4, - ACTIONS(3009), 1, + [100640] = 5, + ACTIONS(2971), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(2973), 1, anon_sym_or, + ACTIONS(2995), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3015), 10, + ACTIONS(2993), 9, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [101082] = 2, + [100665] = 4, + ACTIONS(2971), 1, + anon_sym_and, + ACTIONS(2973), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 12, + ACTIONS(2998), 10, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -112138,44 +110797,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_COLON, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [101101] = 13, - ACTIONS(2985), 1, - anon_sym_COMMA, - ACTIONS(2987), 1, + anon_sym_PIPE, + [100688] = 6, + ACTIONS(2967), 1, anon_sym_as, - ACTIONS(2989), 1, + ACTIONS(2969), 1, anon_sym_if, - ACTIONS(2991), 1, - anon_sym_COLON, - ACTIONS(2993), 1, - anon_sym_async, - ACTIONS(2995), 1, - anon_sym_for, - ACTIONS(2997), 1, - anon_sym_RBRACE, - ACTIONS(2999), 1, + ACTIONS(2971), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(2973), 1, anon_sym_or, - STATE(1860), 1, - sym_for_in_clause, - STATE(2338), 1, - aux_sym__collection_elements_repeat1, - STATE(2676), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101142] = 3, - ACTIONS(3009), 1, + ACTIONS(3000), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [100715] = 3, + ACTIONS(2971), 1, anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 11, + ACTIONS(3002), 11, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -112187,164 +110837,228 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_PIPE, anon_sym_or, - [101163] = 13, - ACTIONS(2985), 1, + [100736] = 13, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(2987), 1, + ACTIONS(2977), 1, anon_sym_as, - ACTIONS(2989), 1, + ACTIONS(2979), 1, anon_sym_if, - ACTIONS(2991), 1, + ACTIONS(2981), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(2983), 1, anon_sym_async, - ACTIONS(2995), 1, + ACTIONS(2985), 1, anon_sym_for, - ACTIONS(2997), 1, + ACTIONS(2987), 1, anon_sym_RBRACE, - ACTIONS(2999), 1, + ACTIONS(2989), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(2991), 1, anon_sym_or, - STATE(1860), 1, + STATE(1838), 1, sym_for_in_clause, - STATE(2338), 1, + STATE(2434), 1, aux_sym__collection_elements_repeat1, - STATE(2641), 1, + STATE(2708), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101204] = 13, - ACTIONS(2985), 1, + [100777] = 13, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(2987), 1, + ACTIONS(2977), 1, anon_sym_as, - ACTIONS(2989), 1, + ACTIONS(2979), 1, anon_sym_if, - ACTIONS(2991), 1, + ACTIONS(2981), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(2983), 1, anon_sym_async, - ACTIONS(2995), 1, + ACTIONS(2985), 1, anon_sym_for, - ACTIONS(2997), 1, + ACTIONS(2987), 1, anon_sym_RBRACE, - ACTIONS(2999), 1, + ACTIONS(2989), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(2991), 1, anon_sym_or, - STATE(1860), 1, + STATE(1838), 1, sym_for_in_clause, - STATE(2338), 1, + STATE(2434), 1, aux_sym__collection_elements_repeat1, - STATE(2632), 1, + STATE(2757), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101245] = 13, - ACTIONS(2985), 1, + [100818] = 13, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(2987), 1, + ACTIONS(2977), 1, anon_sym_as, - ACTIONS(2989), 1, + ACTIONS(2979), 1, anon_sym_if, - ACTIONS(2991), 1, + ACTIONS(2981), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(2983), 1, anon_sym_async, - ACTIONS(2995), 1, + ACTIONS(2985), 1, anon_sym_for, - ACTIONS(2997), 1, + ACTIONS(2987), 1, anon_sym_RBRACE, - ACTIONS(2999), 1, + ACTIONS(2989), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(2991), 1, anon_sym_or, - STATE(1860), 1, + STATE(1838), 1, sym_for_in_clause, - STATE(2338), 1, + STATE(2434), 1, aux_sym__collection_elements_repeat1, - STATE(2763), 1, + STATE(2734), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101286] = 5, - ACTIONS(3009), 1, + [100859] = 6, + ACTIONS(2967), 1, + anon_sym_as, + ACTIONS(2969), 1, + anon_sym_if, + ACTIONS(2971), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(2973), 1, anon_sym_or, - ACTIONS(3021), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 9, + ACTIONS(3004), 8, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [101311] = 6, - ACTIONS(3005), 1, + [100886] = 13, + ACTIONS(2975), 1, + anon_sym_COMMA, + ACTIONS(2977), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(2979), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(2981), 1, + anon_sym_COLON, + ACTIONS(2983), 1, + anon_sym_async, + ACTIONS(2985), 1, + anon_sym_for, + ACTIONS(2987), 1, + anon_sym_RBRACE, + ACTIONS(2989), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(2991), 1, anon_sym_or, + STATE(1838), 1, + sym_for_in_clause, + STATE(2434), 1, + aux_sym__collection_elements_repeat1, + STATE(2704), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3024), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, + [100927] = 13, + ACTIONS(2975), 1, anon_sym_COMMA, + ACTIONS(2977), 1, + anon_sym_as, + ACTIONS(2979), 1, + anon_sym_if, + ACTIONS(2981), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [101338] = 13, + ACTIONS(2983), 1, + anon_sym_async, ACTIONS(2985), 1, - anon_sym_COMMA, + anon_sym_for, ACTIONS(2987), 1, - anon_sym_as, + anon_sym_RBRACE, ACTIONS(2989), 1, + anon_sym_and, + ACTIONS(2991), 1, + anon_sym_or, + STATE(1838), 1, + sym_for_in_clause, + STATE(2434), 1, + aux_sym__collection_elements_repeat1, + STATE(2713), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [100968] = 13, + ACTIONS(2975), 1, + anon_sym_COMMA, + ACTIONS(2977), 1, + anon_sym_as, + ACTIONS(2979), 1, anon_sym_if, + ACTIONS(2981), 1, + anon_sym_COLON, + ACTIONS(2983), 1, + anon_sym_async, + ACTIONS(2985), 1, + anon_sym_for, + ACTIONS(2987), 1, + anon_sym_RBRACE, + ACTIONS(2989), 1, + anon_sym_and, ACTIONS(2991), 1, + anon_sym_or, + STATE(1838), 1, + sym_for_in_clause, + STATE(2434), 1, + aux_sym__collection_elements_repeat1, + STATE(2692), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [101009] = 13, + ACTIONS(2975), 1, + anon_sym_COMMA, + ACTIONS(2977), 1, + anon_sym_as, + ACTIONS(2979), 1, + anon_sym_if, + ACTIONS(2981), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(2983), 1, anon_sym_async, - ACTIONS(2995), 1, + ACTIONS(2985), 1, anon_sym_for, - ACTIONS(2997), 1, + ACTIONS(2987), 1, anon_sym_RBRACE, - ACTIONS(2999), 1, + ACTIONS(2989), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(2991), 1, anon_sym_or, - STATE(1860), 1, + STATE(1838), 1, sym_for_in_clause, - STATE(2338), 1, + STATE(2434), 1, aux_sym__collection_elements_repeat1, - STATE(2788), 1, + STATE(2604), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101379] = 2, + [101050] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2096), 12, + ACTIONS(3006), 12, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -112357,373 +111071,227 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [101398] = 6, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3007), 1, - anon_sym_if, - ACTIONS(3009), 1, - anon_sym_and, - ACTIONS(3011), 1, - anon_sym_or, + [101069] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3026), 8, + ACTIONS(3002), 12, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [101425] = 13, - ACTIONS(2985), 1, - anon_sym_COMMA, - ACTIONS(2987), 1, anon_sym_as, - ACTIONS(2989), 1, anon_sym_if, - ACTIONS(2991), 1, anon_sym_COLON, - ACTIONS(2993), 1, - anon_sym_async, - ACTIONS(2995), 1, - anon_sym_for, - ACTIONS(2997), 1, - anon_sym_RBRACE, - ACTIONS(2999), 1, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_and, - ACTIONS(3001), 1, anon_sym_or, - STATE(1860), 1, - sym_for_in_clause, - STATE(2338), 1, - aux_sym__collection_elements_repeat1, - STATE(2789), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [101466] = 12, - ACTIONS(3028), 1, + [101088] = 12, + ACTIONS(3008), 1, anon_sym_RPAREN, - ACTIONS(3030), 1, + ACTIONS(3010), 1, anon_sym_COMMA, - ACTIONS(3032), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(3016), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(3018), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(3022), 1, anon_sym_or, - STATE(1893), 1, + STATE(1859), 1, sym_for_in_clause, - STATE(2318), 1, - aux_sym_argument_list_repeat1, - STATE(2766), 1, + STATE(2346), 1, + aux_sym__collection_elements_repeat1, + STATE(2653), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101504] = 8, + [101126] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(3024), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(3028), 1, anon_sym_BSLASH, - ACTIONS(3050), 1, + ACTIONS(3030), 1, sym_string_end, - STATE(1797), 2, + STATE(1783), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(3026), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1684), 3, + STATE(1667), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101534] = 8, + [101156] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(3024), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(3028), 1, anon_sym_BSLASH, - ACTIONS(3052), 1, + ACTIONS(3032), 1, sym_string_end, - STATE(1797), 2, + STATE(1783), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(3026), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1709), 3, + STATE(1697), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101564] = 12, - ACTIONS(3032), 1, + [101186] = 12, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(3016), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(3018), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(3022), 1, anon_sym_or, - ACTIONS(3054), 1, - anon_sym_RPAREN, - ACTIONS(3056), 1, - anon_sym_COMMA, - STATE(1893), 1, - sym_for_in_clause, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, - STATE(2749), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [101602] = 12, - ACTIONS(3032), 1, - anon_sym_as, ACTIONS(3034), 1, - anon_sym_if, - ACTIONS(3036), 1, - anon_sym_async, - ACTIONS(3038), 1, - anon_sym_for, - ACTIONS(3040), 1, - anon_sym_and, - ACTIONS(3042), 1, - anon_sym_or, - ACTIONS(3058), 1, anon_sym_RPAREN, - ACTIONS(3060), 1, + ACTIONS(3036), 1, anon_sym_COMMA, - STATE(1893), 1, + STATE(1859), 1, sym_for_in_clause, - STATE(2288), 1, + STATE(2248), 1, aux_sym_argument_list_repeat1, - STATE(2749), 1, + STATE(2752), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101640] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3044), 1, - anon_sym_LBRACE, - ACTIONS(3048), 1, - anon_sym_BSLASH, - ACTIONS(3062), 1, - sym_string_end, - STATE(1797), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3046), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1709), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [101670] = 8, + [101224] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(3024), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(3028), 1, anon_sym_BSLASH, - ACTIONS(3064), 1, + ACTIONS(3038), 1, sym_string_end, - STATE(1797), 2, + STATE(1783), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(3026), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1687), 3, + STATE(1697), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101700] = 9, - ACTIONS(3005), 1, + [101254] = 6, + ACTIONS(2953), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(2955), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(2961), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(2963), 1, anon_sym_or, - ACTIONS(3068), 1, - anon_sym_COMMA, - STATE(2200), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3066), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(2971), 3, + ACTIONS(2965), 7, anon_sym_DOT, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, anon_sym_PIPE, - [101732] = 8, - ACTIONS(3), 1, + [101280] = 3, + ACTIONS(3040), 1, + anon_sym_as, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, - anon_sym_LBRACE, - ACTIONS(3048), 1, - anon_sym_BSLASH, - ACTIONS(3070), 1, - sym_string_end, - STATE(1797), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3046), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1691), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [101762] = 8, + ACTIONS(3006), 10, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [101300] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(3024), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(3028), 1, anon_sym_BSLASH, - ACTIONS(3072), 1, + ACTIONS(3042), 1, sym_string_end, - STATE(1797), 2, + STATE(1783), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(3026), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1709), 3, + STATE(1675), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101792] = 12, - ACTIONS(3032), 1, + [101330] = 6, + ACTIONS(2953), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(2955), 1, anon_sym_if, - ACTIONS(3036), 1, - anon_sym_async, - ACTIONS(3038), 1, - anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(2961), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(2963), 1, anon_sym_or, - ACTIONS(3056), 1, - anon_sym_COMMA, - ACTIONS(3074), 1, - anon_sym_RPAREN, - STATE(1893), 1, - sym_for_in_clause, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, - STATE(2635), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101830] = 12, - ACTIONS(3032), 1, - anon_sym_as, - ACTIONS(3034), 1, - anon_sym_if, - ACTIONS(3036), 1, - anon_sym_async, - ACTIONS(3038), 1, - anon_sym_for, - ACTIONS(3040), 1, - anon_sym_and, - ACTIONS(3042), 1, - anon_sym_or, - ACTIONS(3074), 1, - anon_sym_RPAREN, - ACTIONS(3076), 1, + ACTIONS(3000), 7, + anon_sym_DOT, anon_sym_COMMA, - STATE(1893), 1, - sym_for_in_clause, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, - STATE(2635), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [101868] = 12, - ACTIONS(3032), 1, - anon_sym_as, - ACTIONS(3034), 1, - anon_sym_if, - ACTIONS(3036), 1, + anon_sym_COLON, anon_sym_async, - ACTIONS(3038), 1, anon_sym_for, - ACTIONS(3040), 1, - anon_sym_and, - ACTIONS(3042), 1, - anon_sym_or, - ACTIONS(3079), 1, - anon_sym_RPAREN, - ACTIONS(3081), 1, - anon_sym_COMMA, - STATE(1893), 1, - sym_for_in_clause, - STATE(2273), 1, - aux_sym_argument_list_repeat1, - STATE(2635), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [101906] = 3, - ACTIONS(2110), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + [101356] = 3, + ACTIONS(3044), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2096), 10, + ACTIONS(3002), 10, anon_sym_DOT, anon_sym_COMMA, anon_sym_if, @@ -112734,21 +111302,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [101926] = 8, + [101376] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(3024), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(3028), 1, anon_sym_BSLASH, - ACTIONS(3083), 1, + ACTIONS(3046), 1, sym_string_end, - STATE(1797), 2, + STATE(1783), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(3026), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, @@ -112756,697 +111324,838 @@ static const uint16_t ts_small_parse_table[] = { sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101956] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3044), 1, - anon_sym_LBRACE, - ACTIONS(3048), 1, - anon_sym_BSLASH, - ACTIONS(3085), 1, - sym_string_end, - STATE(1797), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3046), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1709), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [101986] = 12, - ACTIONS(3032), 1, + [101406] = 12, + ACTIONS(3010), 1, + anon_sym_COMMA, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(3016), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(3018), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(3022), 1, anon_sym_or, - ACTIONS(3056), 1, - anon_sym_COMMA, - ACTIONS(3087), 1, + ACTIONS(3048), 1, anon_sym_RPAREN, - STATE(1893), 1, + STATE(1859), 1, sym_for_in_clause, - STATE(2382), 1, + STATE(2346), 1, aux_sym__collection_elements_repeat1, - STATE(2766), 1, + STATE(2622), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102024] = 12, - ACTIONS(3032), 1, + [101444] = 12, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(3016), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(3018), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(3022), 1, anon_sym_or, - ACTIONS(3089), 1, + ACTIONS(3050), 1, anon_sym_RPAREN, - ACTIONS(3091), 1, + ACTIONS(3052), 1, anon_sym_COMMA, - STATE(1893), 1, + STATE(1859), 1, sym_for_in_clause, - STATE(2396), 1, + STATE(2290), 1, aux_sym_argument_list_repeat1, - STATE(2644), 1, + STATE(2622), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102062] = 12, - ACTIONS(3032), 1, + [101482] = 12, + ACTIONS(3010), 1, + anon_sym_COMMA, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(3016), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(3018), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(3022), 1, anon_sym_or, - ACTIONS(3056), 1, - anon_sym_COMMA, - ACTIONS(3093), 1, + ACTIONS(3054), 1, anon_sym_RPAREN, - STATE(1893), 1, + STATE(1859), 1, sym_for_in_clause, - STATE(2382), 1, + STATE(2346), 1, aux_sym__collection_elements_repeat1, - STATE(2644), 1, + STATE(2739), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102100] = 8, + [101520] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, + ACTIONS(3024), 1, + anon_sym_LBRACE, + ACTIONS(3028), 1, + anon_sym_BSLASH, + ACTIONS(3056), 1, + sym_string_end, + STATE(1783), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3026), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1697), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [101550] = 4, + ACTIONS(2961), 1, + anon_sym_and, ACTIONS(3044), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3002), 9, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_or, + [101572] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3024), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(3028), 1, anon_sym_BSLASH, - ACTIONS(3095), 1, + ACTIONS(3058), 1, sym_string_end, - STATE(1797), 2, + STATE(1783), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(3026), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1702), 3, + STATE(1682), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102130] = 8, + [101602] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(3024), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(3028), 1, anon_sym_BSLASH, - ACTIONS(3097), 1, + ACTIONS(3060), 1, sym_string_end, - STATE(1797), 2, + STATE(1783), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(3026), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1709), 3, + STATE(1697), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102160] = 12, - ACTIONS(3032), 1, + [101632] = 12, + ACTIONS(3010), 1, + anon_sym_COMMA, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(3016), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(3018), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(3022), 1, anon_sym_or, - ACTIONS(3056), 1, - anon_sym_COMMA, - ACTIONS(3099), 1, + ACTIONS(3062), 1, anon_sym_RPAREN, - STATE(1893), 1, + STATE(1859), 1, sym_for_in_clause, - STATE(2382), 1, + STATE(2346), 1, aux_sym__collection_elements_repeat1, - STATE(2687), 1, + STATE(2693), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102198] = 12, - ACTIONS(3032), 1, + [101670] = 12, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(3016), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(3018), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(3022), 1, anon_sym_or, - ACTIONS(3101), 1, + ACTIONS(3064), 1, anon_sym_RPAREN, - ACTIONS(3103), 1, + ACTIONS(3066), 1, anon_sym_COMMA, - STATE(1893), 1, + STATE(1859), 1, sym_for_in_clause, - STATE(2362), 1, + STATE(2337), 1, aux_sym_argument_list_repeat1, - STATE(2687), 1, + STATE(2693), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102236] = 3, - ACTIONS(3105), 1, + [101708] = 9, + ACTIONS(2967), 1, anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3013), 10, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(2969), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_PIPE, + ACTIONS(2971), 1, anon_sym_and, + ACTIONS(2973), 1, anon_sym_or, - [102256] = 3, - ACTIONS(3107), 1, - anon_sym_as, + ACTIONS(3070), 1, + anon_sym_COMMA, + STATE(2111), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 10, + ACTIONS(3068), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(2951), 3, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [102276] = 8, + [101740] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(3024), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(3028), 1, anon_sym_BSLASH, - ACTIONS(3109), 1, + ACTIONS(3072), 1, sym_string_end, - STATE(1797), 2, + STATE(1783), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(3026), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1709), 3, + STATE(1689), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102306] = 12, - ACTIONS(3032), 1, + [101770] = 12, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(3016), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(3018), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(3022), 1, anon_sym_or, - ACTIONS(3056), 1, - anon_sym_COMMA, - ACTIONS(3111), 1, + ACTIONS(3074), 1, anon_sym_RPAREN, - STATE(1893), 1, + ACTIONS(3076), 1, + anon_sym_COMMA, + STATE(1859), 1, sym_for_in_clause, - STATE(2382), 1, + STATE(2346), 1, aux_sym__collection_elements_repeat1, - STATE(2668), 1, + STATE(2752), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [101808] = 12, + ACTIONS(3012), 1, + anon_sym_as, + ACTIONS(3014), 1, + anon_sym_if, + ACTIONS(3016), 1, + anon_sym_async, + ACTIONS(3018), 1, + anon_sym_for, + ACTIONS(3020), 1, + anon_sym_and, + ACTIONS(3022), 1, + anon_sym_or, + ACTIONS(3079), 1, + anon_sym_RPAREN, + ACTIONS(3081), 1, + anon_sym_COMMA, + STATE(1859), 1, + sym_for_in_clause, + STATE(2376), 1, + aux_sym_argument_list_repeat1, + STATE(2739), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102344] = 8, + [101846] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3113), 1, + ACTIONS(3024), 1, anon_sym_LBRACE, - ACTIONS(3119), 1, + ACTIONS(3028), 1, anon_sym_BSLASH, - ACTIONS(3122), 1, + ACTIONS(3083), 1, sym_string_end, - STATE(1797), 2, + STATE(1783), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3116), 3, + ACTIONS(3026), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1709), 3, + STATE(1697), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102374] = 12, - ACTIONS(3032), 1, + [101876] = 12, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(3016), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(3018), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(3022), 1, anon_sym_or, - ACTIONS(3124), 1, + ACTIONS(3085), 1, anon_sym_RPAREN, - ACTIONS(3126), 1, + ACTIONS(3087), 1, anon_sym_COMMA, - STATE(1893), 1, + STATE(1859), 1, sym_for_in_clause, - STATE(2391), 1, + STATE(2364), 1, aux_sym_argument_list_repeat1, - STATE(2668), 1, + STATE(2653), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102412] = 8, + [101914] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(3024), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(3028), 1, anon_sym_BSLASH, - ACTIONS(3128), 1, + ACTIONS(3089), 1, sym_string_end, - STATE(1797), 2, + STATE(1783), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(3026), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1712), 3, + STATE(1692), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102442] = 8, + [101944] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(3024), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(3028), 1, anon_sym_BSLASH, - ACTIONS(3130), 1, + ACTIONS(3091), 1, sym_string_end, - STATE(1797), 2, + STATE(1783), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(3026), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1709), 3, + STATE(1697), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102472] = 12, - ACTIONS(3032), 1, + [101974] = 12, + ACTIONS(3010), 1, + anon_sym_COMMA, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(3016), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(3018), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(3022), 1, anon_sym_or, - ACTIONS(3056), 1, - anon_sym_COMMA, - ACTIONS(3132), 1, + ACTIONS(3093), 1, anon_sym_RPAREN, - STATE(1893), 1, + STATE(1859), 1, sym_for_in_clause, - STATE(2382), 1, + STATE(2346), 1, aux_sym__collection_elements_repeat1, - STATE(2664), 1, + STATE(2681), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102510] = 12, - ACTIONS(3032), 1, + [102012] = 6, + ACTIONS(2953), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(2955), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(2961), 1, + anon_sym_and, + ACTIONS(2963), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3004), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_async, - ACTIONS(3038), 1, anon_sym_for, - ACTIONS(3040), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + [102038] = 12, + ACTIONS(3012), 1, + anon_sym_as, + ACTIONS(3014), 1, + anon_sym_if, + ACTIONS(3016), 1, + anon_sym_async, + ACTIONS(3018), 1, + anon_sym_for, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(3022), 1, anon_sym_or, - ACTIONS(3134), 1, + ACTIONS(3095), 1, anon_sym_RPAREN, - ACTIONS(3136), 1, + ACTIONS(3097), 1, anon_sym_COMMA, - STATE(1893), 1, + STATE(1859), 1, sym_for_in_clause, - STATE(2416), 1, + STATE(2388), 1, aux_sym_argument_list_repeat1, - STATE(2664), 1, + STATE(2681), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102548] = 8, + [102076] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(3024), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(3028), 1, anon_sym_BSLASH, - ACTIONS(3138), 1, + ACTIONS(3099), 1, sym_string_end, - STATE(1797), 2, + STATE(1783), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(3026), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1716), 3, + STATE(1698), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102578] = 8, + [102106] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(3101), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(3107), 1, anon_sym_BSLASH, - ACTIONS(3140), 1, + ACTIONS(3110), 1, sym_string_end, - STATE(1797), 2, + STATE(1783), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(3104), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1709), 3, + STATE(1697), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102608] = 12, - ACTIONS(3032), 1, + [102136] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3024), 1, + anon_sym_LBRACE, + ACTIONS(3028), 1, + anon_sym_BSLASH, + ACTIONS(3112), 1, + sym_string_end, + STATE(1783), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3026), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1697), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [102166] = 12, + ACTIONS(3010), 1, + anon_sym_COMMA, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(3016), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(3018), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(3022), 1, anon_sym_or, - ACTIONS(3056), 1, - anon_sym_COMMA, - ACTIONS(3142), 1, + ACTIONS(3114), 1, anon_sym_RPAREN, - STATE(1893), 1, + STATE(1859), 1, sym_for_in_clause, - STATE(2382), 1, + STATE(2346), 1, aux_sym__collection_elements_repeat1, - STATE(2628), 1, + STATE(2600), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102646] = 12, - ACTIONS(3032), 1, + [102204] = 12, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(3016), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(3018), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(3022), 1, anon_sym_or, - ACTIONS(3144), 1, + ACTIONS(3116), 1, anon_sym_RPAREN, - ACTIONS(3146), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - STATE(1893), 1, + STATE(1859), 1, sym_for_in_clause, - STATE(2443), 1, + STATE(2336), 1, aux_sym_argument_list_repeat1, - STATE(2628), 1, + STATE(2590), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [102242] = 12, + ACTIONS(3012), 1, + anon_sym_as, + ACTIONS(3014), 1, + anon_sym_if, + ACTIONS(3016), 1, + anon_sym_async, + ACTIONS(3018), 1, + anon_sym_for, + ACTIONS(3020), 1, + anon_sym_and, + ACTIONS(3022), 1, + anon_sym_or, + ACTIONS(3120), 1, + anon_sym_RPAREN, + ACTIONS(3122), 1, + anon_sym_COMMA, + STATE(1859), 1, + sym_for_in_clause, + STATE(2412), 1, + aux_sym_argument_list_repeat1, + STATE(2600), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102684] = 8, + [102280] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(3024), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(3028), 1, anon_sym_BSLASH, - ACTIONS(3148), 1, + ACTIONS(3124), 1, sym_string_end, - STATE(1797), 2, + STATE(1783), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(3026), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1720), 3, + STATE(1703), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102714] = 8, + [102310] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(3024), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(3028), 1, anon_sym_BSLASH, - ACTIONS(3150), 1, + ACTIONS(3126), 1, sym_string_end, - STATE(1797), 2, + STATE(1783), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(3026), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1709), 3, + STATE(1697), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102744] = 12, - ACTIONS(2973), 1, - anon_sym_as, - ACTIONS(2975), 1, - anon_sym_if, - ACTIONS(2977), 1, - anon_sym_async, - ACTIONS(2979), 1, - anon_sym_for, - ACTIONS(2981), 1, + [102340] = 5, + ACTIONS(2961), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(2963), 1, anon_sym_or, - ACTIONS(2997), 1, - anon_sym_RBRACK, - ACTIONS(3152), 1, - anon_sym_COMMA, - STATE(1846), 1, - sym_for_in_clause, - STATE(2460), 1, - aux_sym__collection_elements_repeat1, - STATE(2759), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [102782] = 6, - ACTIONS(2973), 1, + ACTIONS(3128), 1, anon_sym_as, - ACTIONS(2975), 1, - anon_sym_if, - ACTIONS(2981), 1, - anon_sym_and, - ACTIONS(2983), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3024), 7, + ACTIONS(2993), 8, anon_sym_DOT, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACK, anon_sym_PIPE, - [102808] = 12, - ACTIONS(2973), 1, + [102364] = 12, + ACTIONS(2953), 1, anon_sym_as, - ACTIONS(2975), 1, + ACTIONS(2955), 1, anon_sym_if, - ACTIONS(2977), 1, + ACTIONS(2957), 1, anon_sym_async, - ACTIONS(2979), 1, + ACTIONS(2959), 1, anon_sym_for, - ACTIONS(2981), 1, + ACTIONS(2961), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(2963), 1, anon_sym_or, - ACTIONS(2997), 1, + ACTIONS(2987), 1, anon_sym_RBRACK, - ACTIONS(3152), 1, + ACTIONS(3131), 1, anon_sym_COMMA, - STATE(1846), 1, + STATE(1858), 1, sym_for_in_clause, - STATE(2460), 1, + STATE(2397), 1, aux_sym__collection_elements_repeat1, - STATE(2762), 1, + STATE(2753), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102846] = 6, - ACTIONS(2973), 1, + [102402] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3024), 1, + anon_sym_LBRACE, + ACTIONS(3028), 1, + anon_sym_BSLASH, + ACTIONS(3133), 1, + sym_string_end, + STATE(1783), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3026), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1679), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [102432] = 12, + ACTIONS(2953), 1, anon_sym_as, - ACTIONS(2975), 1, + ACTIONS(2955), 1, anon_sym_if, - ACTIONS(2981), 1, + ACTIONS(2957), 1, + anon_sym_async, + ACTIONS(2959), 1, + anon_sym_for, + ACTIONS(2961), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(2963), 1, anon_sym_or, + ACTIONS(2987), 1, + anon_sym_RBRACK, + ACTIONS(3131), 1, + anon_sym_COMMA, + STATE(1858), 1, + sym_for_in_clause, + STATE(2397), 1, + aux_sym__collection_elements_repeat1, + STATE(2591), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3026), 7, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_PIPE, - [102872] = 12, - ACTIONS(2973), 1, + [102470] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3024), 1, + anon_sym_LBRACE, + ACTIONS(3028), 1, + anon_sym_BSLASH, + ACTIONS(3135), 1, + sym_string_end, + STATE(1783), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3026), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1669), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [102500] = 12, + ACTIONS(2953), 1, anon_sym_as, - ACTIONS(2975), 1, + ACTIONS(2955), 1, anon_sym_if, - ACTIONS(2977), 1, + ACTIONS(2957), 1, anon_sym_async, - ACTIONS(2979), 1, + ACTIONS(2959), 1, anon_sym_for, - ACTIONS(2981), 1, + ACTIONS(2961), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(2963), 1, anon_sym_or, - ACTIONS(2997), 1, + ACTIONS(2987), 1, anon_sym_RBRACK, - ACTIONS(3152), 1, + ACTIONS(3131), 1, anon_sym_COMMA, - STATE(1846), 1, + STATE(1858), 1, sym_for_in_clause, - STATE(2460), 1, + STATE(2397), 1, aux_sym__collection_elements_repeat1, - STATE(2776), 1, + STATE(2686), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102910] = 5, - ACTIONS(2981), 1, + [102538] = 3, + ACTIONS(2088), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2074), 10, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_and, - ACTIONS(2983), 1, anon_sym_or, - ACTIONS(3154), 1, + [102558] = 5, + ACTIONS(2961), 1, + anon_sym_and, + ACTIONS(2963), 1, + anon_sym_or, + ACTIONS(3137), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 8, + ACTIONS(2998), 8, anon_sym_DOT, anon_sym_COMMA, anon_sym_if, @@ -113455,220 +112164,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_PIPE, - [102934] = 12, - ACTIONS(2973), 1, + [102582] = 12, + ACTIONS(2953), 1, anon_sym_as, - ACTIONS(2975), 1, + ACTIONS(2955), 1, anon_sym_if, - ACTIONS(2977), 1, + ACTIONS(2957), 1, anon_sym_async, - ACTIONS(2979), 1, + ACTIONS(2959), 1, anon_sym_for, - ACTIONS(2981), 1, + ACTIONS(2961), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(2963), 1, anon_sym_or, - ACTIONS(2997), 1, + ACTIONS(2987), 1, anon_sym_RBRACK, - ACTIONS(3152), 1, + ACTIONS(3131), 1, anon_sym_COMMA, - STATE(1846), 1, + STATE(1858), 1, sym_for_in_clause, - STATE(2460), 1, + STATE(2397), 1, aux_sym__collection_elements_repeat1, - STATE(2689), 1, + STATE(2697), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102972] = 12, - ACTIONS(2973), 1, + [102620] = 12, + ACTIONS(2953), 1, anon_sym_as, - ACTIONS(2975), 1, + ACTIONS(2955), 1, anon_sym_if, - ACTIONS(2977), 1, + ACTIONS(2957), 1, anon_sym_async, - ACTIONS(2979), 1, + ACTIONS(2959), 1, anon_sym_for, - ACTIONS(2981), 1, + ACTIONS(2961), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(2963), 1, anon_sym_or, - ACTIONS(2997), 1, + ACTIONS(2987), 1, anon_sym_RBRACK, - ACTIONS(3152), 1, + ACTIONS(3131), 1, anon_sym_COMMA, - STATE(1846), 1, + STATE(1858), 1, sym_for_in_clause, - STATE(2460), 1, + STATE(2397), 1, aux_sym__collection_elements_repeat1, - STATE(2695), 1, + STATE(2685), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [103010] = 4, - ACTIONS(2981), 1, - anon_sym_and, - ACTIONS(3107), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3017), 9, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_or, - [103032] = 12, - ACTIONS(2973), 1, + [102658] = 12, + ACTIONS(2953), 1, anon_sym_as, - ACTIONS(2975), 1, + ACTIONS(2955), 1, anon_sym_if, - ACTIONS(2977), 1, + ACTIONS(2957), 1, anon_sym_async, - ACTIONS(2979), 1, + ACTIONS(2959), 1, anon_sym_for, - ACTIONS(2981), 1, + ACTIONS(2961), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(2963), 1, anon_sym_or, - ACTIONS(2997), 1, + ACTIONS(2987), 1, anon_sym_RBRACK, - ACTIONS(3152), 1, + ACTIONS(3131), 1, anon_sym_COMMA, - STATE(1846), 1, + STATE(1858), 1, sym_for_in_clause, - STATE(2460), 1, + STATE(2397), 1, aux_sym__collection_elements_repeat1, - STATE(2666), 1, + STATE(2661), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [103070] = 12, - ACTIONS(2973), 1, + [102696] = 12, + ACTIONS(2953), 1, anon_sym_as, - ACTIONS(2975), 1, + ACTIONS(2955), 1, anon_sym_if, - ACTIONS(2977), 1, + ACTIONS(2957), 1, anon_sym_async, - ACTIONS(2979), 1, + ACTIONS(2959), 1, anon_sym_for, - ACTIONS(2981), 1, + ACTIONS(2961), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(2963), 1, anon_sym_or, - ACTIONS(2997), 1, + ACTIONS(2987), 1, anon_sym_RBRACK, - ACTIONS(3152), 1, + ACTIONS(3131), 1, anon_sym_COMMA, - STATE(1846), 1, + STATE(1858), 1, sym_for_in_clause, - STATE(2460), 1, + STATE(2397), 1, aux_sym__collection_elements_repeat1, - STATE(2629), 1, + STATE(2682), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [103108] = 12, - ACTIONS(2973), 1, + [102734] = 12, + ACTIONS(2953), 1, anon_sym_as, - ACTIONS(2975), 1, + ACTIONS(2955), 1, anon_sym_if, - ACTIONS(2977), 1, + ACTIONS(2957), 1, anon_sym_async, - ACTIONS(2979), 1, + ACTIONS(2959), 1, anon_sym_for, - ACTIONS(2981), 1, + ACTIONS(2961), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(2963), 1, anon_sym_or, - ACTIONS(2997), 1, + ACTIONS(2987), 1, anon_sym_RBRACK, - ACTIONS(3152), 1, + ACTIONS(3131), 1, anon_sym_COMMA, - STATE(1846), 1, + STATE(1858), 1, sym_for_in_clause, - STATE(2460), 1, + STATE(2397), 1, aux_sym__collection_elements_repeat1, - STATE(2722), 1, + STATE(2601), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [103146] = 6, - ACTIONS(2973), 1, + [102772] = 12, + ACTIONS(3010), 1, + anon_sym_COMMA, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(2975), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(2981), 1, - anon_sym_and, - ACTIONS(2983), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3003), 7, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(3016), 1, anon_sym_async, + ACTIONS(3018), 1, anon_sym_for, - anon_sym_RBRACK, - anon_sym_PIPE, - [103172] = 5, - ACTIONS(2981), 1, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(3022), 1, anon_sym_or, - ACTIONS(3157), 1, - anon_sym_as, + ACTIONS(3139), 1, + anon_sym_RPAREN, + STATE(1859), 1, + sym_for_in_clause, + STATE(2346), 1, + aux_sym__collection_elements_repeat1, + STATE(2590), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3015), 8, - anon_sym_DOT, + [102810] = 12, + ACTIONS(3010), 1, anon_sym_COMMA, + ACTIONS(3012), 1, + anon_sym_as, + ACTIONS(3014), 1, anon_sym_if, - anon_sym_COLON, + ACTIONS(3016), 1, anon_sym_async, + ACTIONS(3018), 1, anon_sym_for, - anon_sym_RBRACK, - anon_sym_PIPE, - [103196] = 8, - ACTIONS(3), 1, + ACTIONS(3020), 1, + anon_sym_and, + ACTIONS(3022), 1, + anon_sym_or, + ACTIONS(3074), 1, + anon_sym_RPAREN, + STATE(1859), 1, + sym_for_in_clause, + STATE(2346), 1, + aux_sym__collection_elements_repeat1, + STATE(2752), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, - anon_sym_LBRACE, - ACTIONS(3048), 1, - anon_sym_BSLASH, - ACTIONS(3159), 1, - sym_string_end, - STATE(1797), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3046), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1707), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [103226] = 2, + [102848] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3013), 10, + ACTIONS(3006), 10, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, @@ -113679,137 +112361,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [103243] = 8, - ACTIONS(3161), 1, + [102865] = 8, + ACTIONS(3141), 1, anon_sym_COMMA, - ACTIONS(3163), 1, + ACTIONS(3143), 1, anon_sym_as, - ACTIONS(3165), 1, + ACTIONS(3145), 1, anon_sym_if, - ACTIONS(3169), 1, + ACTIONS(3149), 1, anon_sym_and, - ACTIONS(3171), 1, + ACTIONS(3151), 1, anon_sym_or, - STATE(1979), 1, + STATE(1889), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3167), 4, + ACTIONS(3147), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [103272] = 2, + [102894] = 6, + ACTIONS(3153), 1, + anon_sym_as, + ACTIONS(3155), 1, + anon_sym_if, + ACTIONS(3157), 1, + anon_sym_and, + ACTIONS(3159), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2965), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [102919] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2096), 10, + ACTIONS(2074), 10, anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_EQ, anon_sym_PIPE, anon_sym_and, anon_sym_or, - [103289] = 5, - ACTIONS(3173), 1, - anon_sym_as, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, - anon_sym_or, + [102936] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 7, + ACTIONS(2074), 10, anon_sym_DOT, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [103312] = 6, - ACTIONS(3005), 1, + anon_sym_and, + anon_sym_or, + [102953] = 6, + ACTIONS(2967), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(2969), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(2971), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(2973), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 6, + ACTIONS(2951), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [103337] = 6, - ACTIONS(3180), 1, + [102978] = 6, + ACTIONS(3161), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3167), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3026), 6, + ACTIONS(3004), 6, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [103362] = 4, - ACTIONS(3184), 1, + [103003] = 5, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3167), 1, anon_sym_or, + ACTIONS(3169), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3015), 8, + ACTIONS(2993), 7, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [103383] = 2, + [103026] = 6, + ACTIONS(3153), 1, + anon_sym_as, + ACTIONS(3155), 1, + anon_sym_if, + ACTIONS(3157), 1, + anon_sym_and, + ACTIONS(3159), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 10, + ACTIONS(3000), 6, anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_EQ, anon_sym_PIPE, + [103051] = 4, + ACTIONS(3165), 1, anon_sym_and, + ACTIONS(3167), 1, anon_sym_or, - [103400] = 3, - ACTIONS(3184), 1, - anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 9, + ACTIONS(2998), 8, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -113818,48 +112523,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - anon_sym_or, - [103419] = 4, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, - anon_sym_or, + [103072] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3015), 8, + ACTIONS(3002), 10, anon_sym_DOT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [103440] = 6, - ACTIONS(3176), 1, anon_sym_and, - ACTIONS(3178), 1, anon_sym_or, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2971), 6, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [103465] = 2, + [103089] = 3, + ACTIONS(3165), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3013), 10, + ACTIONS(3002), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -113868,359 +112553,302 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_EQ, anon_sym_PIPE, + anon_sym_or, + [103108] = 6, + ACTIONS(3161), 1, + anon_sym_as, + ACTIONS(3163), 1, + anon_sym_if, + ACTIONS(3165), 1, anon_sym_and, + ACTIONS(3167), 1, anon_sym_or, - [103482] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2096), 10, + ACTIONS(3000), 6, anon_sym_DOT, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_EQ, anon_sym_PIPE, + [103133] = 6, + ACTIONS(3153), 1, + anon_sym_as, + ACTIONS(3155), 1, + anon_sym_if, + ACTIONS(3157), 1, anon_sym_and, + ACTIONS(3159), 1, anon_sym_or, - [103499] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 10, + ACTIONS(3004), 6, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, + [103158] = 6, + ACTIONS(3153), 1, + anon_sym_as, + ACTIONS(3155), 1, + anon_sym_if, + ACTIONS(3157), 1, anon_sym_and, + ACTIONS(3159), 1, anon_sym_or, - [103516] = 3, - ACTIONS(3176), 1, - anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 9, + ACTIONS(2951), 6, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - anon_sym_or, - [103535] = 6, - ACTIONS(3180), 1, + [103183] = 8, + ACTIONS(3141), 1, + anon_sym_COMMA, + ACTIONS(3143), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3145), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3149), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3151), 1, anon_sym_or, + STATE(1889), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3003), 6, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(3172), 4, anon_sym_COLON, - anon_sym_else, anon_sym_EQ, - anon_sym_PIPE, - [103560] = 5, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3192), 1, - anon_sym_as, + anon_sym_RBRACE, + sym_type_conversion, + [103212] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 7, + ACTIONS(3006), 10, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [103583] = 6, - ACTIONS(3180), 1, - anon_sym_as, - ACTIONS(3182), 1, - anon_sym_if, - ACTIONS(3184), 1, anon_sym_and, - ACTIONS(3186), 1, anon_sym_or, + [103229] = 5, + ACTIONS(3157), 1, + anon_sym_and, + ACTIONS(3159), 1, + anon_sym_or, + ACTIONS(3174), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3024), 6, + ACTIONS(2993), 7, anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [103608] = 6, - ACTIONS(3176), 1, + [103252] = 4, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3178), 1, + ACTIONS(3159), 1, anon_sym_or, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3024), 6, + ACTIONS(2998), 8, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [103633] = 6, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, - anon_sym_or, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, + [103273] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3026), 6, + ACTIONS(3002), 10, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [103658] = 8, - ACTIONS(3161), 1, - anon_sym_COMMA, - ACTIONS(3163), 1, anon_sym_as, - ACTIONS(3165), 1, anon_sym_if, - ACTIONS(3169), 1, - anon_sym_and, - ACTIONS(3171), 1, - anon_sym_or, - STATE(1979), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3195), 4, anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [103687] = 6, - ACTIONS(3176), 1, + anon_sym_PIPE, anon_sym_and, - ACTIONS(3178), 1, anon_sym_or, - ACTIONS(3188), 1, + [103290] = 6, + ACTIONS(3161), 1, anon_sym_as, - ACTIONS(3190), 1, + ACTIONS(3163), 1, anon_sym_if, + ACTIONS(3165), 1, + anon_sym_and, + ACTIONS(3167), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3003), 6, + ACTIONS(2965), 6, anon_sym_DOT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, + anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [103712] = 4, - ACTIONS(3199), 1, - anon_sym_DOT, - STATE(1758), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3197), 7, - anon_sym_import, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [103732] = 3, - ACTIONS(3202), 1, + [103315] = 3, + ACTIONS(3157), 1, anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 8, + ACTIONS(3002), 9, anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_EQ, anon_sym_PIPE, anon_sym_or, - [103750] = 2, + [103334] = 3, + ACTIONS(3040), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2096), 9, + ACTIONS(3006), 8, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_EQ, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - sym_type_conversion, - [103766] = 3, - ACTIONS(3105), 1, + [103352] = 5, + ACTIONS(2989), 1, + anon_sym_and, + ACTIONS(2991), 1, + anon_sym_or, + ACTIONS(3137), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3013), 8, + ACTIONS(2998), 6, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - [103784] = 4, - ACTIONS(3206), 1, - anon_sym_DOT, - STATE(1758), 1, - aux_sym_dotted_name_repeat1, + [103374] = 3, + ACTIONS(3044), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3204), 7, - anon_sym_import, - anon_sym_LPAREN, + ACTIONS(3002), 8, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - [103804] = 6, - ACTIONS(3202), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, anon_sym_and, - ACTIONS(3208), 1, - anon_sym_as, - ACTIONS(3210), 1, - anon_sym_if, - ACTIONS(3212), 1, anon_sym_or, + [103392] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3026), 5, + ACTIONS(3002), 9, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [103828] = 6, - ACTIONS(3202), 1, anon_sym_and, - ACTIONS(3208), 1, + anon_sym_or, + [103408] = 6, + ACTIONS(3177), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(3179), 1, anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(3181), 1, + anon_sym_and, + ACTIONS(3183), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3003), 5, + ACTIONS(3004), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [103852] = 6, - ACTIONS(3163), 1, - anon_sym_as, - ACTIONS(3165), 1, - anon_sym_if, - ACTIONS(3169), 1, - anon_sym_and, - ACTIONS(3171), 1, - anon_sym_or, + [103432] = 5, + ACTIONS(3185), 1, + anon_sym_DOT, + ACTIONS(3189), 1, + anon_sym_EQ, + STATE(1772), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3026), 5, + ACTIONS(3187), 6, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [103876] = 6, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, anon_sym_as, - ACTIONS(3210), 1, anon_sym_if, - ACTIONS(3212), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3024), 5, - anon_sym_DOT, - anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_PIPE, - [103900] = 6, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, - anon_sym_as, - ACTIONS(3210), 1, - anon_sym_if, - ACTIONS(3212), 1, - anon_sym_or, + [103454] = 4, + ACTIONS(3185), 1, + anon_sym_DOT, + STATE(1772), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 5, - anon_sym_DOT, + ACTIONS(3187), 7, + anon_sym_import, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_PIPE, - [103924] = 2, + [103474] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2096), 9, + ACTIONS(2074), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -114230,50 +112858,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [103940] = 6, - ACTIONS(3163), 1, - anon_sym_as, - ACTIONS(3165), 1, - anon_sym_if, - ACTIONS(3169), 1, + [103490] = 4, + ACTIONS(2989), 1, anon_sym_and, - ACTIONS(3171), 1, - anon_sym_or, + ACTIONS(3044), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3214), 5, + ACTIONS(3002), 7, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - sym_type_conversion, - [103964] = 9, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3007), 1, - anon_sym_if, - ACTIONS(3009), 1, - anon_sym_and, - ACTIONS(3011), 1, anon_sym_or, - ACTIONS(3218), 1, - anon_sym_from, - ACTIONS(3220), 1, - anon_sym_COMMA, - STATE(2017), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3216), 2, - sym__newline, - anon_sym_SEMI, - [103994] = 2, + [103510] = 3, + ACTIONS(3181), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3013), 9, + ACTIONS(3002), 8, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -114281,31 +112888,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, + anon_sym_or, + [103528] = 6, + ACTIONS(3177), 1, + anon_sym_as, + ACTIONS(3179), 1, + anon_sym_if, + ACTIONS(3181), 1, anon_sym_and, + ACTIONS(3183), 1, anon_sym_or, - [104010] = 6, - ACTIONS(3163), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2965), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [103552] = 6, + ACTIONS(2977), 1, anon_sym_as, - ACTIONS(3165), 1, + ACTIONS(2979), 1, anon_sym_if, - ACTIONS(3169), 1, + ACTIONS(2989), 1, anon_sym_and, - ACTIONS(3171), 1, + ACTIONS(2991), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3024), 5, + ACTIONS(3000), 5, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - sym_type_conversion, - [104034] = 2, + [103576] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 9, + ACTIONS(3006), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -114315,262 +112939,314 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [104050] = 5, - ACTIONS(3206), 1, - anon_sym_DOT, - ACTIONS(3224), 1, - anon_sym_EQ, - STATE(1762), 1, - aux_sym_dotted_name_repeat1, + [103592] = 3, + ACTIONS(2088), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3222), 6, - anon_sym_LPAREN, + ACTIONS(2074), 8, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - [104072] = 6, - ACTIONS(2987), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + [103610] = 6, + ACTIONS(2977), 1, anon_sym_as, - ACTIONS(2989), 1, + ACTIONS(2979), 1, anon_sym_if, - ACTIONS(2999), 1, + ACTIONS(2989), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(2991), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3026), 5, + ACTIONS(2965), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [104096] = 6, - ACTIONS(2987), 1, + [103634] = 6, + ACTIONS(3177), 1, anon_sym_as, - ACTIONS(2989), 1, + ACTIONS(3179), 1, anon_sym_if, - ACTIONS(2999), 1, + ACTIONS(3181), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(3183), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3024), 5, + ACTIONS(2951), 5, + anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [104120] = 5, - ACTIONS(3202), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + [103658] = 6, + ACTIONS(3143), 1, + anon_sym_as, + ACTIONS(3145), 1, + anon_sym_if, + ACTIONS(3149), 1, anon_sym_and, - ACTIONS(3212), 1, + ACTIONS(3151), 1, anon_sym_or, - ACTIONS(3226), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 6, - anon_sym_DOT, + ACTIONS(3000), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [103682] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3006), 9, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [104142] = 5, - ACTIONS(2999), 1, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_and, - ACTIONS(3001), 1, anon_sym_or, - ACTIONS(3229), 1, + sym_type_conversion, + [103698] = 6, + ACTIONS(3143), 1, anon_sym_as, + ACTIONS(3145), 1, + anon_sym_if, + ACTIONS(3149), 1, + anon_sym_and, + ACTIONS(3151), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 6, + ACTIONS(2965), 5, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_EQ, anon_sym_RBRACE, - [104164] = 4, - ACTIONS(3169), 1, + sym_type_conversion, + [103722] = 6, + ACTIONS(3143), 1, + anon_sym_as, + ACTIONS(3145), 1, + anon_sym_if, + ACTIONS(3149), 1, anon_sym_and, - ACTIONS(3171), 1, + ACTIONS(3151), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3015), 7, + ACTIONS(3004), 5, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [104184] = 4, - ACTIONS(3202), 1, + [103746] = 5, + ACTIONS(3149), 1, anon_sym_and, - ACTIONS(3212), 1, + ACTIONS(3151), 1, anon_sym_or, + ACTIONS(3191), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3015), 7, - anon_sym_DOT, + ACTIONS(2993), 6, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [104204] = 6, - ACTIONS(3180), 1, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [103768] = 6, + ACTIONS(3161), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3167), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 5, + ACTIONS(2951), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [104228] = 5, - ACTIONS(2999), 1, + [103792] = 6, + ACTIONS(2977), 1, + anon_sym_as, + ACTIONS(2979), 1, + anon_sym_if, + ACTIONS(2989), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(2991), 1, anon_sym_or, - ACTIONS(3157), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3015), 6, + ACTIONS(3004), 5, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [104250] = 2, + [103816] = 4, + ACTIONS(3149), 1, + anon_sym_and, + ACTIONS(3151), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 9, + ACTIONS(2998), 7, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, sym_type_conversion, - [104266] = 3, - ACTIONS(3107), 1, - anon_sym_as, + [103836] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 8, + ACTIONS(3002), 9, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_EQ, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [104284] = 4, - ACTIONS(2999), 1, + sym_type_conversion, + [103852] = 3, + ACTIONS(3149), 1, anon_sym_and, - ACTIONS(3107), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 7, + ACTIONS(3002), 8, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_EQ, anon_sym_RBRACE, anon_sym_or, - [104304] = 3, - ACTIONS(3169), 1, - anon_sym_and, + sym_type_conversion, + [103870] = 4, + ACTIONS(3196), 1, + anon_sym_DOT, + STATE(1767), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 8, + ACTIONS(3194), 7, + anon_sym_import, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, + anon_sym_PIPE, + [103890] = 5, + ACTIONS(2989), 1, + anon_sym_and, + ACTIONS(2991), 1, anon_sym_or, - sym_type_conversion, - [104322] = 3, - ACTIONS(2110), 1, + ACTIONS(3199), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2096), 8, + ACTIONS(2993), 6, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, + [103912] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2074), 9, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [104340] = 6, - ACTIONS(3163), 1, + sym_type_conversion, + [103928] = 6, + ACTIONS(3143), 1, anon_sym_as, - ACTIONS(3165), 1, + ACTIONS(3145), 1, anon_sym_if, - ACTIONS(3169), 1, + ACTIONS(3149), 1, anon_sym_and, - ACTIONS(3171), 1, + ACTIONS(3151), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3003), 5, + ACTIONS(3202), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [104364] = 4, - ACTIONS(3206), 1, + [103952] = 5, + ACTIONS(3181), 1, + anon_sym_and, + ACTIONS(3183), 1, + anon_sym_or, + ACTIONS(3204), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2993), 6, anon_sym_DOT, - STATE(1762), 1, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [103974] = 4, + ACTIONS(3185), 1, + anon_sym_DOT, + STATE(1767), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3222), 7, + ACTIONS(3207), 7, anon_sym_import, anon_sym_LPAREN, anon_sym_COMMA, @@ -114578,355 +113254,416 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [104384] = 6, - ACTIONS(3163), 1, + [103994] = 6, + ACTIONS(3143), 1, anon_sym_as, - ACTIONS(3165), 1, + ACTIONS(3145), 1, anon_sym_if, - ACTIONS(3169), 1, + ACTIONS(3149), 1, anon_sym_and, - ACTIONS(3171), 1, + ACTIONS(3151), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3232), 5, + ACTIONS(3209), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [104408] = 2, + [104018] = 4, + ACTIONS(3181), 1, + anon_sym_and, + ACTIONS(3183), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3013), 9, + ACTIONS(2998), 7, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, + [104038] = 9, + ACTIONS(2967), 1, + anon_sym_as, + ACTIONS(2969), 1, + anon_sym_if, + ACTIONS(2971), 1, anon_sym_and, + ACTIONS(2973), 1, anon_sym_or, - sym_type_conversion, - [104424] = 6, - ACTIONS(2987), 1, + ACTIONS(3213), 1, + anon_sym_from, + ACTIONS(3215), 1, + anon_sym_COMMA, + STATE(2076), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3211), 2, + sym__newline, + anon_sym_SEMI, + [104068] = 6, + ACTIONS(3177), 1, anon_sym_as, - ACTIONS(2989), 1, + ACTIONS(3179), 1, anon_sym_if, - ACTIONS(2999), 1, + ACTIONS(3181), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(3183), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3003), 5, + ACTIONS(3000), 5, + anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [104448] = 5, - ACTIONS(3169), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + [104092] = 9, + ACTIONS(3177), 1, + anon_sym_as, + ACTIONS(3179), 1, + anon_sym_if, + ACTIONS(3181), 1, anon_sym_and, - ACTIONS(3171), 1, + ACTIONS(3183), 1, anon_sym_or, - ACTIONS(3234), 1, - anon_sym_as, + ACTIONS(3217), 1, + anon_sym_COMMA, + ACTIONS(3219), 1, + anon_sym_COLON, + ACTIONS(3221), 1, + anon_sym_RBRACK, + STATE(2294), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 6, - anon_sym_COMMA, + [104121] = 8, + ACTIONS(2967), 1, + anon_sym_as, + ACTIONS(2969), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [104470] = 5, - ACTIONS(3237), 1, - anon_sym_DOT, - ACTIONS(3239), 1, - anon_sym_EQ, - STATE(1885), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(2971), 1, + anon_sym_and, + ACTIONS(2973), 1, + anon_sym_or, + ACTIONS(3215), 1, + anon_sym_COMMA, + STATE(2076), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3222), 5, - anon_sym_LPAREN, + ACTIONS(3223), 2, + sym__newline, + anon_sym_SEMI, + [104148] = 5, + ACTIONS(3012), 1, + anon_sym_as, + ACTIONS(3020), 1, + anon_sym_and, + ACTIONS(3022), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3225), 5, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [104169] = 9, + ACTIONS(3177), 1, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [104491] = 9, - ACTIONS(3202), 1, + ACTIONS(3179), 1, + anon_sym_if, + ACTIONS(3181), 1, anon_sym_and, - ACTIONS(3208), 1, + ACTIONS(3183), 1, + anon_sym_or, + ACTIONS(3219), 1, + anon_sym_COLON, + ACTIONS(3227), 1, + anon_sym_COMMA, + ACTIONS(3229), 1, + anon_sym_RBRACK, + STATE(2251), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [104198] = 8, + ACTIONS(2967), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(2969), 1, anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(2971), 1, + anon_sym_and, + ACTIONS(2973), 1, anon_sym_or, - ACTIONS(3241), 1, + ACTIONS(3233), 1, anon_sym_COMMA, - ACTIONS(3243), 1, - anon_sym_COLON, - ACTIONS(3245), 1, - anon_sym_RBRACK, - STATE(2276), 1, - aux_sym_subscript_repeat1, + STATE(2108), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104520] = 5, - ACTIONS(3032), 1, + ACTIONS(3231), 2, + sym__newline, + anon_sym_SEMI, + [104225] = 5, + ACTIONS(2953), 1, anon_sym_as, - ACTIONS(3040), 1, + ACTIONS(2961), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(2963), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3247), 5, - anon_sym_RPAREN, + ACTIONS(3225), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [104541] = 6, + anon_sym_RBRACK, + [104246] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3253), 1, + ACTIONS(3239), 1, anon_sym_BSLASH, - ACTIONS(3249), 2, + ACTIONS(3235), 2, sym_string_end, anon_sym_LBRACE, - STATE(1800), 2, + STATE(1804), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3251), 3, + ACTIONS(3237), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - [104564] = 7, - ACTIONS(63), 1, - anon_sym_AT, - ACTIONS(3255), 1, - anon_sym_async, - ACTIONS(3257), 1, - anon_sym_def, - ACTIONS(3259), 1, - anon_sym_class, + [104269] = 5, + ACTIONS(2953), 1, + anon_sym_as, + ACTIONS(2961), 1, + anon_sym_and, + ACTIONS(2963), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(829), 2, - sym_function_definition, - sym_class_definition, - STATE(1934), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - [104589] = 8, - ACTIONS(3005), 1, + ACTIONS(3225), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [104290] = 6, + ACTIONS(2967), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(2969), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(2971), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(2973), 1, anon_sym_or, - ACTIONS(3263), 1, - anon_sym_COMMA, - STATE(2209), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3261), 2, + ACTIONS(3209), 4, sym__newline, anon_sym_SEMI, - [104616] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3270), 1, - anon_sym_BSLASH, - ACTIONS(3265), 2, - sym_string_end, - anon_sym_LBRACE, - STATE(1800), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3267), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - [104639] = 9, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, + anon_sym_from, + anon_sym_COMMA, + [104313] = 9, + ACTIONS(3177), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(3179), 1, anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(3181), 1, + anon_sym_and, + ACTIONS(3183), 1, anon_sym_or, - ACTIONS(3243), 1, + ACTIONS(3219), 1, anon_sym_COLON, - ACTIONS(3273), 1, + ACTIONS(3241), 1, anon_sym_COMMA, - ACTIONS(3275), 1, + ACTIONS(3243), 1, anon_sym_RBRACK, - STATE(2394), 1, + STATE(2385), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104668] = 2, + [104342] = 5, + ACTIONS(3245), 1, + anon_sym_DOT, + ACTIONS(3247), 1, + anon_sym_EQ, + STATE(1835), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3197), 8, - anon_sym_import, - anon_sym_DOT, + ACTIONS(3187), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, anon_sym_PIPE, - [104683] = 6, - ACTIONS(2987), 1, + anon_sym_RBRACE, + [104363] = 3, + ACTIONS(3040), 1, anon_sym_as, - ACTIONS(2989), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3006), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [104380] = 6, + ACTIONS(2977), 1, + anon_sym_as, + ACTIONS(2979), 1, anon_sym_if, - ACTIONS(2999), 1, + ACTIONS(2989), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(2991), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3277), 4, + ACTIONS(3249), 4, anon_sym_COMMA, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [104706] = 6, - ACTIONS(3032), 1, + [104403] = 6, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(3040), 1, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(3022), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3026), 4, + ACTIONS(2965), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_async, anon_sym_for, - [104729] = 8, - ACTIONS(3005), 1, + [104426] = 4, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1013), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3251), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [104445] = 9, + ACTIONS(3177), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3179), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(3181), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(3183), 1, anon_sym_or, - ACTIONS(3281), 1, + ACTIONS(3219), 1, + anon_sym_COLON, + ACTIONS(3253), 1, anon_sym_COMMA, - STATE(2157), 1, - aux_sym_print_statement_repeat1, + ACTIONS(3255), 1, + anon_sym_RBRACK, + STATE(2340), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3279), 2, - sym__newline, - anon_sym_SEMI, - [104756] = 5, - ACTIONS(3032), 1, + [104474] = 8, + ACTIONS(2967), 1, anon_sym_as, - ACTIONS(3040), 1, + ACTIONS(2969), 1, + anon_sym_if, + ACTIONS(2971), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(2973), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3247), 5, - anon_sym_RPAREN, + ACTIONS(3215), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [104777] = 7, - ACTIONS(1559), 1, - anon_sym_except, - ACTIONS(1563), 1, - anon_sym_except_STAR, - ACTIONS(3283), 1, - anon_sym_finally, - STATE(814), 1, - sym_finally_clause, + STATE(2076), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(588), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(589), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [104802] = 5, - ACTIONS(2987), 1, - anon_sym_as, - ACTIONS(2999), 1, + ACTIONS(3172), 2, + sym__newline, + anon_sym_SEMI, + [104501] = 5, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(3022), 1, anon_sym_or, + ACTIONS(3257), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3247), 5, + ACTIONS(2993), 5, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [104823] = 5, - ACTIONS(2973), 1, - anon_sym_as, - ACTIONS(2981), 1, + [104522] = 5, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(3022), 1, anon_sym_or, + ACTIONS(3137), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3247), 5, + ACTIONS(2998), 5, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [104844] = 3, - ACTIONS(3105), 1, + [104543] = 3, + ACTIONS(3044), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3013), 7, + ACTIONS(3002), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -114934,981 +113671,819 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_and, anon_sym_or, - [104861] = 9, - ACTIONS(3202), 1, + [104560] = 4, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(3208), 1, + ACTIONS(3044), 1, anon_sym_as, - ACTIONS(3210), 1, - anon_sym_if, - ACTIONS(3212), 1, - anon_sym_or, - ACTIONS(3243), 1, - anon_sym_COLON, - ACTIONS(3285), 1, - anon_sym_COMMA, - ACTIONS(3287), 1, - anon_sym_RBRACK, - STATE(2420), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104890] = 8, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3002), 6, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, - ACTIONS(3009), 1, - anon_sym_and, - ACTIONS(3011), 1, + anon_sym_async, + anon_sym_for, anon_sym_or, - ACTIONS(3263), 1, - anon_sym_COMMA, - STATE(2159), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3289), 2, - sym__newline, - anon_sym_SEMI, - [104917] = 5, - ACTIONS(2973), 1, + [104579] = 5, + ACTIONS(2977), 1, anon_sym_as, - ACTIONS(2981), 1, + ACTIONS(2989), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(2991), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3247), 5, + ACTIONS(3225), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [104938] = 9, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, + anon_sym_RBRACE, + [104600] = 8, + ACTIONS(2967), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(2969), 1, anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(2971), 1, + anon_sym_and, + ACTIONS(2973), 1, anon_sym_or, - ACTIONS(3243), 1, - anon_sym_COLON, - ACTIONS(3291), 1, + ACTIONS(3070), 1, anon_sym_COMMA, - ACTIONS(3293), 1, - anon_sym_RBRACK, - STATE(2445), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [104967] = 5, - ACTIONS(3295), 1, - anon_sym_DOT, - ACTIONS(3297), 1, - anon_sym_EQ, - STATE(1866), 1, - aux_sym_dotted_name_repeat1, + STATE(2111), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3222), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [104988] = 9, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, + ACTIONS(3068), 2, + sym__newline, + anon_sym_SEMI, + [104627] = 9, + ACTIONS(3177), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(3179), 1, anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(3181), 1, + anon_sym_and, + ACTIONS(3183), 1, anon_sym_or, - ACTIONS(3243), 1, + ACTIONS(3219), 1, anon_sym_COLON, - ACTIONS(3299), 1, + ACTIONS(3260), 1, anon_sym_COMMA, - ACTIONS(3301), 1, + ACTIONS(3262), 1, anon_sym_RBRACK, - STATE(2451), 1, + STATE(2480), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105017] = 9, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, + [104656] = 8, + ACTIONS(2967), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(2969), 1, anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(2971), 1, + anon_sym_and, + ACTIONS(2973), 1, anon_sym_or, - ACTIONS(3243), 1, - anon_sym_COLON, - ACTIONS(3303), 1, + ACTIONS(3266), 1, anon_sym_COMMA, - ACTIONS(3305), 1, - anon_sym_RBRACK, - STATE(2390), 1, - aux_sym_subscript_repeat1, + STATE(2216), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105046] = 3, - ACTIONS(2110), 1, + ACTIONS(3264), 2, + sym__newline, + anon_sym_SEMI, + [104683] = 5, + ACTIONS(3012), 1, anon_sym_as, + ACTIONS(3020), 1, + anon_sym_and, + ACTIONS(3022), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2096), 7, + ACTIONS(3225), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_and, - anon_sym_or, - [105063] = 9, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, + [104704] = 9, + ACTIONS(3177), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(3179), 1, anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(3181), 1, + anon_sym_and, + ACTIONS(3183), 1, anon_sym_or, - ACTIONS(3243), 1, + ACTIONS(3219), 1, anon_sym_COLON, - ACTIONS(3307), 1, + ACTIONS(3268), 1, anon_sym_COMMA, - ACTIONS(3309), 1, + ACTIONS(3270), 1, anon_sym_RBRACK, - STATE(2321), 1, + STATE(2392), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105092] = 4, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(3), 2, + [104733] = 6, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - STATE(994), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3311), 5, - anon_sym_COMMA, + ACTIONS(3277), 1, + anon_sym_BSLASH, + ACTIONS(3272), 2, + sym_string_end, + anon_sym_LBRACE, + STATE(1804), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3274), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + [104756] = 8, + ACTIONS(2967), 1, anon_sym_as, + ACTIONS(2969), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [105111] = 7, - ACTIONS(1503), 1, - anon_sym_except, - ACTIONS(1507), 1, - anon_sym_except_STAR, - ACTIONS(3313), 1, - anon_sym_finally, - STATE(755), 1, - sym_finally_clause, + ACTIONS(2971), 1, + anon_sym_and, + ACTIONS(2973), 1, + anon_sym_or, + ACTIONS(3233), 1, + anon_sym_COMMA, + STATE(2217), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(495), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(503), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [105136] = 5, - ACTIONS(2987), 1, - anon_sym_as, - ACTIONS(2999), 1, - anon_sym_and, - ACTIONS(3001), 1, - anon_sym_or, + ACTIONS(3280), 2, + sym__newline, + anon_sym_SEMI, + [104783] = 5, + ACTIONS(3282), 1, + anon_sym_DOT, + ACTIONS(3284), 1, + anon_sym_EQ, + STATE(1861), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3247), 5, + ACTIONS(3187), 5, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [105157] = 7, - ACTIONS(1559), 1, - anon_sym_except, - ACTIONS(1563), 1, - anon_sym_except_STAR, - ACTIONS(3283), 1, - anon_sym_finally, - STATE(846), 1, - sym_finally_clause, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [104804] = 3, + ACTIONS(2088), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(607), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(608), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [105182] = 8, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(2074), 7, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, - ACTIONS(3009), 1, + anon_sym_async, + anon_sym_for, anon_sym_and, - ACTIONS(3011), 1, anon_sym_or, - ACTIONS(3068), 1, - anon_sym_COMMA, - STATE(2200), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3066), 2, - sym__newline, - anon_sym_SEMI, - [105209] = 6, - ACTIONS(3032), 1, + [104821] = 6, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(3040), 1, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(3022), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3003), 4, + ACTIONS(3004), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_async, anon_sym_for, - [105232] = 8, - ACTIONS(3005), 1, + [104844] = 9, + ACTIONS(3177), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3179), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(3181), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(3183), 1, anon_sym_or, - ACTIONS(3220), 1, + ACTIONS(3219), 1, + anon_sym_COLON, + ACTIONS(3286), 1, anon_sym_COMMA, - STATE(2017), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3288), 1, + anon_sym_RBRACK, + STATE(2415), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3315), 2, - sym__newline, - anon_sym_SEMI, - [105259] = 8, - ACTIONS(3005), 1, + [104873] = 6, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(3022), 1, anon_sym_or, - ACTIONS(3220), 1, - anon_sym_COMMA, - STATE(2017), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2922), 2, - sym__newline, - anon_sym_SEMI, - [105286] = 8, - ACTIONS(3005), 1, + ACTIONS(3000), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + [104896] = 9, + ACTIONS(3177), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3179), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(3181), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(3183), 1, anon_sym_or, - ACTIONS(3220), 1, + ACTIONS(3219), 1, + anon_sym_COLON, + ACTIONS(3290), 1, anon_sym_COMMA, - STATE(2017), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3317), 2, - sym__newline, - anon_sym_SEMI, - [105313] = 7, - ACTIONS(1503), 1, - anon_sym_except, - ACTIONS(1507), 1, - anon_sym_except_STAR, - ACTIONS(3313), 1, - anon_sym_finally, - STATE(792), 1, - sym_finally_clause, + ACTIONS(3292), 1, + anon_sym_RBRACK, + STATE(2422), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(572), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(573), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [105338] = 9, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, + [104925] = 9, + ACTIONS(3177), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(3179), 1, anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(3181), 1, + anon_sym_and, + ACTIONS(3183), 1, anon_sym_or, - ACTIONS(3243), 1, + ACTIONS(3219), 1, anon_sym_COLON, - ACTIONS(3319), 1, + ACTIONS(3294), 1, anon_sym_COMMA, - ACTIONS(3321), 1, + ACTIONS(3296), 1, anon_sym_RBRACK, - STATE(2447), 1, + STATE(2427), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105367] = 5, - ACTIONS(2973), 1, + [104954] = 9, + ACTIONS(3177), 1, anon_sym_as, - ACTIONS(2981), 1, + ACTIONS(3179), 1, + anon_sym_if, + ACTIONS(3181), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(3183), 1, anon_sym_or, + ACTIONS(3219), 1, + anon_sym_COLON, + ACTIONS(3298), 1, + anon_sym_COMMA, + ACTIONS(3300), 1, + anon_sym_RBRACK, + STATE(2351), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3247), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [105388] = 5, - ACTIONS(2987), 1, + [104983] = 5, + ACTIONS(2953), 1, anon_sym_as, - ACTIONS(2999), 1, + ACTIONS(2961), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(2963), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3247), 5, + ACTIONS(3225), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [105409] = 9, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, - anon_sym_as, - ACTIONS(3210), 1, - anon_sym_if, - ACTIONS(3212), 1, - anon_sym_or, - ACTIONS(3243), 1, - anon_sym_COLON, - ACTIONS(3323), 1, - anon_sym_COMMA, - ACTIONS(3325), 1, anon_sym_RBRACK, - STATE(2365), 1, - aux_sym_subscript_repeat1, + [105004] = 5, + ACTIONS(3302), 1, + anon_sym_DOT, + ACTIONS(3304), 1, + anon_sym_EQ, + STATE(1834), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105438] = 8, - ACTIONS(3005), 1, + ACTIONS(3187), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3007), 1, + anon_sym_PIPE, + [105025] = 8, + ACTIONS(2967), 1, + anon_sym_as, + ACTIONS(2969), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(2971), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(2973), 1, anon_sym_or, - ACTIONS(3220), 1, + ACTIONS(3215), 1, anon_sym_COMMA, - STATE(2017), 1, + STATE(2076), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3195), 2, + ACTIONS(2927), 2, sym__newline, anon_sym_SEMI, - [105465] = 6, - ACTIONS(3032), 1, - anon_sym_as, - ACTIONS(3034), 1, - anon_sym_if, - ACTIONS(3040), 1, - anon_sym_and, - ACTIONS(3042), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3024), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - [105488] = 7, + [105052] = 7, ACTIONS(63), 1, anon_sym_AT, - ACTIONS(3327), 1, + ACTIONS(3306), 1, anon_sym_async, - ACTIONS(3329), 1, + ACTIONS(3308), 1, anon_sym_def, - ACTIONS(3331), 1, + ACTIONS(3310), 1, anon_sym_class, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(801), 2, + STATE(769), 2, sym_function_definition, sym_class_definition, - STATE(1934), 2, + STATE(1897), 2, sym_decorator, aux_sym_decorated_definition_repeat1, - [105513] = 5, - ACTIONS(3040), 1, - anon_sym_and, - ACTIONS(3042), 1, - anon_sym_or, - ACTIONS(3333), 1, - anon_sym_as, + [105077] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [105534] = 5, - ACTIONS(3336), 1, + ACTIONS(3194), 8, + anon_sym_import, anon_sym_DOT, - ACTIONS(3338), 1, - anon_sym_EQ, - STATE(1884), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3222), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - anon_sym_RBRACE, - [105555] = 5, - ACTIONS(3032), 1, - anon_sym_as, - ACTIONS(3040), 1, - anon_sym_and, - ACTIONS(3042), 1, - anon_sym_or, + [105092] = 7, + ACTIONS(63), 1, + anon_sym_AT, + ACTIONS(3312), 1, + anon_sym_async, + ACTIONS(3314), 1, + anon_sym_def, + ACTIONS(3316), 1, + anon_sym_class, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3247), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [105576] = 5, - ACTIONS(3040), 1, + STATE(773), 2, + sym_function_definition, + sym_class_definition, + STATE(1897), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [105117] = 5, + ACTIONS(2977), 1, + anon_sym_as, + ACTIONS(2989), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(2991), 1, anon_sym_or, - ACTIONS(3157), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3015), 5, - anon_sym_RPAREN, + ACTIONS(3225), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [105597] = 3, - ACTIONS(3107), 1, + anon_sym_RBRACE, + [105138] = 5, + ACTIONS(2977), 1, anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3017), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, + ACTIONS(2989), 1, anon_sym_and, + ACTIONS(2991), 1, anon_sym_or, - [105614] = 4, - ACTIONS(3040), 1, - anon_sym_and, - ACTIONS(3107), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 6, - anon_sym_RPAREN, + ACTIONS(3225), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_or, - [105633] = 6, - ACTIONS(3005), 1, + anon_sym_RBRACE, + [105159] = 5, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3007), 1, - anon_sym_if, - ACTIONS(3009), 1, - anon_sym_and, - ACTIONS(3011), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3232), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - [105656] = 9, - ACTIONS(3202), 1, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(3208), 1, - anon_sym_as, - ACTIONS(3210), 1, - anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(3022), 1, anon_sym_or, - ACTIONS(3243), 1, - anon_sym_COLON, - ACTIONS(3340), 1, - anon_sym_COMMA, - ACTIONS(3342), 1, - anon_sym_RBRACK, - STATE(2458), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105685] = 6, - ACTIONS(3036), 1, + ACTIONS(3225), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, anon_sym_async, - ACTIONS(3038), 1, anon_sym_for, - ACTIONS(3344), 1, - anon_sym_RPAREN, - ACTIONS(3346), 1, + [105180] = 8, + ACTIONS(2967), 1, + anon_sym_as, + ACTIONS(2969), 1, anon_sym_if, + ACTIONS(2971), 1, + anon_sym_and, + ACTIONS(2973), 1, + anon_sym_or, + ACTIONS(3215), 1, + anon_sym_COMMA, + STATE(2076), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1887), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [105707] = 6, - ACTIONS(2977), 1, + ACTIONS(3318), 2, + sym__newline, + anon_sym_SEMI, + [105207] = 6, + ACTIONS(3320), 1, + anon_sym_if, + ACTIONS(3323), 1, anon_sym_async, - ACTIONS(2979), 1, + ACTIONS(3326), 1, anon_sym_for, - ACTIONS(3348), 1, - anon_sym_if, - ACTIONS(3350), 1, + ACTIONS(3329), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1855), 3, + STATE(1824), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [105729] = 8, - ACTIONS(3195), 1, - anon_sym_RBRACK, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, + [105229] = 6, + ACTIONS(2967), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(2969), 1, anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(2971), 1, + anon_sym_and, + ACTIONS(2973), 1, anon_sym_or, - ACTIONS(3352), 1, - anon_sym_COMMA, - STATE(2375), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105755] = 8, - ACTIONS(3180), 1, + ACTIONS(3331), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [105251] = 8, + ACTIONS(3161), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3167), 1, anon_sym_or, - ACTIONS(3354), 1, + ACTIONS(3333), 1, anon_sym_COMMA, - ACTIONS(3356), 1, + ACTIONS(3335), 1, anon_sym_COLON, - STATE(2298), 1, + STATE(2450), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105781] = 8, - ACTIONS(3180), 1, + [105277] = 8, + ACTIONS(3034), 1, + anon_sym_RPAREN, + ACTIONS(3036), 1, + anon_sym_COMMA, + ACTIONS(3153), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3159), 1, anon_sym_or, - ACTIONS(3358), 1, - anon_sym_COMMA, - ACTIONS(3360), 1, - anon_sym_COLON, - STATE(2268), 1, - aux_sym_match_statement_repeat1, + STATE(2248), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105807] = 8, - ACTIONS(3180), 1, - anon_sym_as, - ACTIONS(3182), 1, - anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3354), 1, - anon_sym_COMMA, - ACTIONS(3362), 1, - anon_sym_COLON, - STATE(2298), 1, - aux_sym_assert_statement_repeat1, + [105303] = 4, + ACTIONS(3337), 1, + anon_sym_DOT, + STATE(1828), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105833] = 8, - ACTIONS(2993), 1, - anon_sym_async, - ACTIONS(2995), 1, - anon_sym_for, - ACTIONS(3364), 1, + ACTIONS(3194), 5, + anon_sym_LPAREN, anon_sym_COMMA, - ACTIONS(3366), 1, + anon_sym_as, + anon_sym_PIPE, anon_sym_RBRACE, - STATE(1860), 1, - sym_for_in_clause, - STATE(2384), 1, - aux_sym_dictionary_repeat1, - STATE(2753), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [105859] = 8, - ACTIONS(2993), 1, + [105321] = 8, + ACTIONS(2983), 1, anon_sym_async, - ACTIONS(2995), 1, + ACTIONS(2985), 1, anon_sym_for, - ACTIONS(3368), 1, + ACTIONS(3340), 1, anon_sym_COMMA, - ACTIONS(3370), 1, + ACTIONS(3342), 1, anon_sym_RBRACE, - STATE(1860), 1, + STATE(1838), 1, sym_for_in_clause, - STATE(2263), 1, + STATE(2268), 1, aux_sym_dictionary_repeat1, - STATE(2748), 1, + STATE(2723), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105885] = 4, - ACTIONS(3372), 1, + [105347] = 4, + ACTIONS(3302), 1, anon_sym_DOT, - STATE(1853), 1, + STATE(1834), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3197), 5, + ACTIONS(3187), 5, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [105903] = 6, - ACTIONS(2993), 1, - anon_sym_async, - ACTIONS(2995), 1, - anon_sym_for, - ACTIONS(3344), 1, - anon_sym_RBRACE, - ACTIONS(3375), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1890), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [105925] = 6, - ACTIONS(2977), 1, - anon_sym_async, - ACTIONS(2979), 1, - anon_sym_for, + [105365] = 8, ACTIONS(3344), 1, - anon_sym_RBRACK, + sym_identifier, + ACTIONS(3346), 1, + anon_sym_LPAREN, ACTIONS(3348), 1, - anon_sym_if, + anon_sym_STAR, + STATE(1988), 1, + sym_dotted_name, + STATE(2113), 1, + sym_aliased_import, + STATE(2481), 1, + sym_wildcard_import, + STATE(2559), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1880), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [105947] = 7, - ACTIONS(2732), 1, - sym_identifier, - ACTIONS(3377), 1, - anon_sym_DOT, - ACTIONS(3379), 1, - anon_sym___future__, - STATE(2252), 1, - aux_sym_import_prefix_repeat1, - STATE(2441), 1, - sym_import_prefix, + [105391] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2733), 2, - sym_relative_import, - sym_dotted_name, - [105971] = 8, - ACTIONS(2993), 1, + ACTIONS(3352), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3350), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [105407] = 8, + ACTIONS(2983), 1, anon_sym_async, - ACTIONS(2995), 1, + ACTIONS(2985), 1, anon_sym_for, - ACTIONS(3381), 1, + ACTIONS(3354), 1, anon_sym_COMMA, - ACTIONS(3383), 1, + ACTIONS(3356), 1, anon_sym_RBRACE, - STATE(1860), 1, + STATE(1838), 1, sym_for_in_clause, - STATE(2492), 1, + STATE(2407), 1, aux_sym_dictionary_repeat1, - STATE(2764), 1, + STATE(2605), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105997] = 4, - ACTIONS(801), 1, - sym_string_start, + [105433] = 4, + ACTIONS(3302), 1, + anon_sym_DOT, + STATE(1864), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1035), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3311), 4, + ACTIONS(3207), 5, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [106015] = 4, - ACTIONS(3237), 1, + [105451] = 4, + ACTIONS(3245), 1, anon_sym_DOT, - STATE(1885), 1, + STATE(1828), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3222), 5, + ACTIONS(3207), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [106033] = 6, - ACTIONS(2993), 1, + anon_sym_RBRACE, + [105469] = 8, + ACTIONS(2983), 1, anon_sym_async, - ACTIONS(2995), 1, + ACTIONS(2985), 1, anon_sym_for, - ACTIONS(3350), 1, + ACTIONS(3358), 1, + anon_sym_COMMA, + ACTIONS(3360), 1, anon_sym_RBRACE, - ACTIONS(3375), 1, + STATE(1838), 1, + sym_for_in_clause, + STATE(2473), 1, + aux_sym_dictionary_repeat1, + STATE(2758), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [105495] = 4, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1086), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3251), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [105513] = 6, + ACTIONS(2983), 1, + anon_sym_async, + ACTIONS(2985), 1, + anon_sym_for, + ACTIONS(3362), 1, anon_sym_if, + ACTIONS(3364), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1854), 3, + STATE(1867), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [106055] = 7, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, - anon_sym_as, - ACTIONS(3210), 1, - anon_sym_if, - ACTIONS(3212), 1, - anon_sym_or, - ACTIONS(3243), 1, - anon_sym_COLON, + [105535] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3385), 2, + ACTIONS(3366), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3251), 5, anon_sym_COMMA, - anon_sym_RBRACK, - [106079] = 6, - ACTIONS(3005), 1, anon_sym_as, - ACTIONS(3007), 1, anon_sym_if, - ACTIONS(3009), 1, + anon_sym_COLON, + anon_sym_PIPE, + [105551] = 5, + ACTIONS(2953), 1, + anon_sym_as, + ACTIONS(2961), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(2963), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3387), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [106101] = 8, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, - anon_sym_or, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, + ACTIONS(3368), 4, anon_sym_if, - ACTIONS(3195), 1, - anon_sym_RPAREN, - ACTIONS(3389), 1, - anon_sym_COMMA, - STATE(2355), 1, - aux_sym_assert_statement_repeat1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [105571] = 7, + ACTIONS(2712), 1, + sym_identifier, + ACTIONS(3370), 1, + anon_sym_DOT, + ACTIONS(3372), 1, + anon_sym___future__, + STATE(2132), 1, + aux_sym_import_prefix_repeat1, + STATE(2349), 1, + sym_import_prefix, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106127] = 8, - ACTIONS(3391), 1, - sym_identifier, - ACTIONS(3393), 1, - anon_sym_LPAREN, - ACTIONS(3395), 1, - anon_sym_STAR, - STATE(2114), 1, + STATE(2625), 2, + sym_relative_import, sym_dotted_name, - STATE(2218), 1, - sym_aliased_import, - STATE(2566), 1, - sym__import_list, - STATE(2570), 1, - sym_wildcard_import, + [105595] = 8, + ACTIONS(3161), 1, + anon_sym_as, + ACTIONS(3163), 1, + anon_sym_if, + ACTIONS(3165), 1, + anon_sym_and, + ACTIONS(3167), 1, + anon_sym_or, + ACTIONS(3374), 1, + anon_sym_COMMA, + ACTIONS(3376), 1, + anon_sym_COLON, + STATE(2432), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106153] = 8, - ACTIONS(3079), 1, - anon_sym_RPAREN, - ACTIONS(3081), 1, - anon_sym_COMMA, - ACTIONS(3176), 1, + [105621] = 5, + ACTIONS(3012), 1, + anon_sym_as, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(3178), 1, + ACTIONS(3022), 1, anon_sym_or, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - STATE(2273), 1, - aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106179] = 4, - ACTIONS(3295), 1, + ACTIONS(3368), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [105641] = 4, + ACTIONS(3245), 1, anon_sym_DOT, - STATE(1853), 1, + STATE(1835), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3204), 5, + ACTIONS(3187), 5, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [106197] = 7, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, + anon_sym_RBRACE, + [105659] = 7, + ACTIONS(3177), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(3179), 1, anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(3181), 1, + anon_sym_and, + ACTIONS(3183), 1, anon_sym_or, - ACTIONS(3397), 1, + ACTIONS(3378), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, @@ -115916,11649 +114491,11556 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1449), 2, anon_sym_COMMA, anon_sym_RBRACK, - [106221] = 4, - ACTIONS(3295), 1, - anon_sym_DOT, - STATE(1866), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3222), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [106239] = 8, - ACTIONS(3180), 1, + [105683] = 8, + ACTIONS(3161), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3167), 1, anon_sym_or, - ACTIONS(3354), 1, + ACTIONS(3380), 1, anon_sym_COMMA, - ACTIONS(3399), 1, + ACTIONS(3382), 1, anon_sym_COLON, - STATE(2298), 1, - aux_sym_assert_statement_repeat1, + STATE(2470), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106265] = 8, - ACTIONS(2993), 1, - anon_sym_async, - ACTIONS(2995), 1, - anon_sym_for, - ACTIONS(3401), 1, - anon_sym_COMMA, - ACTIONS(3403), 1, - anon_sym_RBRACE, - STATE(1860), 1, - sym_for_in_clause, - STATE(2354), 1, - aux_sym_dictionary_repeat1, - STATE(2703), 1, - sym__comprehension_clauses, + [105709] = 6, + ACTIONS(2967), 1, + anon_sym_as, + ACTIONS(2969), 1, + anon_sym_if, + ACTIONS(2971), 1, + anon_sym_and, + ACTIONS(2973), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106291] = 8, - ACTIONS(2993), 1, + ACTIONS(3384), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [105731] = 6, + ACTIONS(3016), 1, anon_sym_async, - ACTIONS(2995), 1, + ACTIONS(3018), 1, anon_sym_for, - ACTIONS(3405), 1, - anon_sym_COMMA, - ACTIONS(3407), 1, - anon_sym_RBRACE, - STATE(1860), 1, - sym_for_in_clause, - STATE(2435), 1, - aux_sym_dictionary_repeat1, - STATE(2633), 1, - sym__comprehension_clauses, + ACTIONS(3386), 1, + anon_sym_RPAREN, + ACTIONS(3388), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106317] = 8, - ACTIONS(3180), 1, + STATE(1852), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [105753] = 8, + ACTIONS(3161), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3167), 1, anon_sym_or, - ACTIONS(3354), 1, + ACTIONS(3333), 1, anon_sym_COMMA, - ACTIONS(3409), 1, + ACTIONS(3390), 1, anon_sym_COLON, - STATE(2298), 1, + STATE(2450), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106343] = 5, - ACTIONS(2973), 1, + [105779] = 8, + ACTIONS(3161), 1, anon_sym_as, - ACTIONS(2981), 1, + ACTIONS(3163), 1, + anon_sym_if, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(3167), 1, anon_sym_or, + ACTIONS(3333), 1, + anon_sym_COMMA, + ACTIONS(3392), 1, + anon_sym_COLON, + STATE(2450), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3411), 4, - anon_sym_if, + [105805] = 6, + ACTIONS(2957), 1, anon_sym_async, + ACTIONS(2959), 1, anon_sym_for, + ACTIONS(3386), 1, anon_sym_RBRACK, - [106363] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3413), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3311), 5, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(3394), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [106379] = 4, - ACTIONS(3415), 1, - anon_sym_DOT, - STATE(1875), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3197), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [106397] = 5, - ACTIONS(2987), 1, - anon_sym_as, - ACTIONS(2999), 1, - anon_sym_and, - ACTIONS(3001), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3411), 4, + STATE(1824), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [105827] = 6, + ACTIONS(3329), 1, + anon_sym_RPAREN, + ACTIONS(3396), 1, anon_sym_if, + ACTIONS(3399), 1, anon_sym_async, + ACTIONS(3402), 1, anon_sym_for, - anon_sym_RBRACE, - [106417] = 4, - ACTIONS(755), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1852), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [105849] = 4, + ACTIONS(731), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1116), 2, + STATE(992), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(3311), 4, + ACTIONS(3251), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [106435] = 7, - ACTIONS(1419), 1, - anon_sym_COLON, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, + [105867] = 8, + ACTIONS(3161), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(3165), 1, + anon_sym_and, + ACTIONS(3167), 1, anon_sym_or, + ACTIONS(3333), 1, + anon_sym_COMMA, + ACTIONS(3405), 1, + anon_sym_COLON, + STATE(2450), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1417), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [106459] = 8, - ACTIONS(2993), 1, + [105893] = 8, + ACTIONS(2983), 1, anon_sym_async, - ACTIONS(2995), 1, + ACTIONS(2985), 1, anon_sym_for, - ACTIONS(3418), 1, + ACTIONS(3407), 1, anon_sym_COMMA, - ACTIONS(3420), 1, + ACTIONS(3409), 1, anon_sym_RBRACE, - STATE(1860), 1, + STATE(1838), 1, sym_for_in_clause, - STATE(2310), 1, + STATE(2359), 1, aux_sym_dictionary_repeat1, - STATE(2791), 1, + STATE(2724), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106485] = 6, - ACTIONS(3422), 1, - anon_sym_if, - ACTIONS(3425), 1, + [105919] = 8, + ACTIONS(2983), 1, anon_sym_async, - ACTIONS(3428), 1, + ACTIONS(2985), 1, anon_sym_for, - ACTIONS(3431), 1, - anon_sym_RBRACK, + ACTIONS(3411), 1, + anon_sym_COMMA, + ACTIONS(3413), 1, + anon_sym_RBRACE, + STATE(1838), 1, + sym_for_in_clause, + STATE(2240), 1, + aux_sym_dictionary_repeat1, + STATE(2710), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1880), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [106507] = 5, - ACTIONS(3032), 1, + [105945] = 8, + ACTIONS(3153), 1, anon_sym_as, - ACTIONS(3040), 1, + ACTIONS(3155), 1, + anon_sym_if, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(3159), 1, anon_sym_or, + ACTIONS(3172), 1, + anon_sym_RPAREN, + ACTIONS(3415), 1, + anon_sym_COMMA, + STATE(2444), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3411), 4, - anon_sym_RPAREN, + [105971] = 6, + ACTIONS(2957), 1, + anon_sym_async, + ACTIONS(2959), 1, + anon_sym_for, + ACTIONS(3364), 1, + anon_sym_RBRACK, + ACTIONS(3394), 1, anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1851), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [105993] = 6, + ACTIONS(3016), 1, anon_sym_async, + ACTIONS(3018), 1, anon_sym_for, - [106527] = 8, - ACTIONS(2993), 1, + ACTIONS(3364), 1, + anon_sym_RPAREN, + ACTIONS(3388), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1848), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [106015] = 8, + ACTIONS(2983), 1, anon_sym_async, - ACTIONS(2995), 1, + ACTIONS(2985), 1, anon_sym_for, - ACTIONS(3433), 1, + ACTIONS(3417), 1, anon_sym_COMMA, - ACTIONS(3435), 1, + ACTIONS(3419), 1, anon_sym_RBRACE, - STATE(1860), 1, + STATE(1838), 1, sym_for_in_clause, - STATE(2261), 1, + STATE(2282), 1, aux_sym_dictionary_repeat1, - STATE(2616), 1, + STATE(2744), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106553] = 4, - ACTIONS(3437), 1, + [106041] = 4, + ACTIONS(3282), 1, anon_sym_DOT, - STATE(1883), 1, + STATE(1863), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3197), 5, + ACTIONS(3207), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [106571] = 4, - ACTIONS(3336), 1, + [106059] = 8, + ACTIONS(3172), 1, + anon_sym_RBRACK, + ACTIONS(3177), 1, + anon_sym_as, + ACTIONS(3179), 1, + anon_sym_if, + ACTIONS(3181), 1, + anon_sym_and, + ACTIONS(3183), 1, + anon_sym_or, + ACTIONS(3421), 1, + anon_sym_COMMA, + STATE(2291), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [106085] = 4, + ACTIONS(3423), 1, anon_sym_DOT, - STATE(1883), 1, + STATE(1863), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3204), 5, + ACTIONS(3194), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [106589] = 4, - ACTIONS(3237), 1, + [106103] = 4, + ACTIONS(3426), 1, anon_sym_DOT, - STATE(1875), 1, + STATE(1864), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3204), 5, - anon_sym_LPAREN, + ACTIONS(3194), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [106121] = 7, + ACTIONS(3177), 1, + anon_sym_as, + ACTIONS(3179), 1, + anon_sym_if, + ACTIONS(3181), 1, + anon_sym_and, + ACTIONS(3183), 1, + anon_sym_or, + ACTIONS(3219), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3429), 2, anon_sym_COMMA, - anon_sym_as, anon_sym_RBRACK, - anon_sym_PIPE, - [106607] = 6, - ACTIONS(3005), 1, + [106145] = 7, + ACTIONS(1347), 1, + anon_sym_COLON, + ACTIONS(3177), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3179), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(3181), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(3183), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3440), 3, - sym__newline, - anon_sym_SEMI, + ACTIONS(1345), 2, anon_sym_COMMA, - [106629] = 6, - ACTIONS(3431), 1, - anon_sym_RPAREN, - ACTIONS(3442), 1, - anon_sym_if, - ACTIONS(3445), 1, + anon_sym_RBRACK, + [106169] = 6, + ACTIONS(2983), 1, anon_sym_async, - ACTIONS(3448), 1, + ACTIONS(2985), 1, anon_sym_for, + ACTIONS(3362), 1, + anon_sym_if, + ACTIONS(3386), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1887), 3, + STATE(1872), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [106651] = 8, - ACTIONS(3180), 1, - anon_sym_as, - ACTIONS(3182), 1, - anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3451), 1, - anon_sym_COMMA, - ACTIONS(3453), 1, - anon_sym_COLON, - STATE(2491), 1, - aux_sym_match_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [106677] = 8, - ACTIONS(2993), 1, + [106191] = 8, + ACTIONS(2983), 1, anon_sym_async, - ACTIONS(2995), 1, + ACTIONS(2985), 1, anon_sym_for, - ACTIONS(3455), 1, + ACTIONS(3431), 1, anon_sym_COMMA, - ACTIONS(3457), 1, + ACTIONS(3433), 1, anon_sym_RBRACE, - STATE(1860), 1, + STATE(1838), 1, sym_for_in_clause, - STATE(2409), 1, + STATE(2330), 1, aux_sym_dictionary_repeat1, - STATE(2677), 1, + STATE(2706), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106703] = 6, - ACTIONS(3431), 1, - anon_sym_RBRACE, - ACTIONS(3459), 1, - anon_sym_if, - ACTIONS(3462), 1, + [106217] = 8, + ACTIONS(2983), 1, anon_sym_async, - ACTIONS(3465), 1, + ACTIONS(2985), 1, anon_sym_for, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1890), 3, + ACTIONS(3435), 1, + anon_sym_COMMA, + ACTIONS(3437), 1, + anon_sym_RBRACE, + STATE(1838), 1, sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [106725] = 3, + STATE(2381), 1, + aux_sym_dictionary_repeat1, + STATE(2696), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3470), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3468), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [106741] = 4, - ACTIONS(3336), 1, + [106243] = 4, + ACTIONS(3282), 1, anon_sym_DOT, - STATE(1884), 1, + STATE(1861), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3222), 5, + ACTIONS(3187), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [106759] = 6, - ACTIONS(3036), 1, + [106261] = 5, + ACTIONS(2977), 1, + anon_sym_as, + ACTIONS(2989), 1, + anon_sym_and, + ACTIONS(2991), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3368), 4, + anon_sym_if, anon_sym_async, - ACTIONS(3038), 1, anon_sym_for, - ACTIONS(3346), 1, + anon_sym_RBRACE, + [106281] = 6, + ACTIONS(3329), 1, + anon_sym_RBRACE, + ACTIONS(3439), 1, anon_sym_if, - ACTIONS(3350), 1, - anon_sym_RPAREN, + ACTIONS(3442), 1, + anon_sym_async, + ACTIONS(3445), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1845), 3, + STATE(1872), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [106781] = 4, - ACTIONS(708), 1, + [106303] = 4, + ACTIONS(684), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(984), 2, + STATE(964), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(3311), 4, + ACTIONS(3251), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [106799] = 3, - STATE(1933), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3472), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [106814] = 6, - ACTIONS(3180), 1, - anon_sym_as, - ACTIONS(3182), 1, - anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, + [106321] = 4, + ACTIONS(3448), 1, + anon_sym_DOT, + STATE(1980), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3474), 2, + ACTIONS(3207), 4, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_COLON, - [106835] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3478), 1, - anon_sym_BSLASH, - ACTIONS(3476), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [106852] = 6, - ACTIONS(3180), 1, anon_sym_as, - ACTIONS(3182), 1, - anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3232), 2, + [106338] = 4, + ACTIONS(3450), 1, anon_sym_COMMA, - anon_sym_COLON, - [106873] = 6, - ACTIONS(3180), 1, - anon_sym_as, - ACTIONS(3182), 1, - anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, + STATE(1957), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3480), 2, - anon_sym_COMMA, - anon_sym_COLON, - [106894] = 6, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, - anon_sym_or, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, + ACTIONS(3452), 4, anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [106355] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3482), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [106915] = 4, - ACTIONS(3484), 1, - anon_sym_DOT, - STATE(1940), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3222), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, - [106932] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3486), 6, + ACTIONS(3454), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [106945] = 3, + [106368] = 6, + ACTIONS(3177), 1, + anon_sym_as, + ACTIONS(3179), 1, + anon_sym_if, + ACTIONS(3181), 1, + anon_sym_and, + ACTIONS(3183), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3488), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3311), 4, + ACTIONS(3456), 2, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [106960] = 4, - ACTIONS(3490), 1, + anon_sym_RBRACK, + [106389] = 4, + ACTIONS(3458), 1, anon_sym_COMMA, - STATE(1929), 1, + STATE(1888), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3492), 4, + ACTIONS(3460), 4, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [106977] = 3, + anon_sym_RBRACK, + [106406] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3494), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3311), 4, + ACTIONS(3462), 6, + anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [106992] = 6, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, + [106419] = 6, + ACTIONS(3161), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(3165), 1, + anon_sym_and, + ACTIONS(3167), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1457), 2, + ACTIONS(3464), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [107013] = 3, + anon_sym_COLON, + [106440] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3496), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3468), 4, + ACTIONS(3466), 6, + anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [107028] = 4, - ACTIONS(3500), 1, - anon_sym_COMMA, - STATE(1957), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3498), 4, - anon_sym_RPAREN, + [106453] = 6, + ACTIONS(3153), 1, + anon_sym_as, + ACTIONS(3155), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - [107045] = 2, + ACTIONS(3157), 1, + anon_sym_and, + ACTIONS(3159), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3502), 6, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(3468), 2, + anon_sym_RPAREN, anon_sym_COMMA, + [106474] = 5, + ACTIONS(3472), 1, + anon_sym_DOT, + ACTIONS(3474), 1, anon_sym_COLON, - anon_sym_EQ, + ACTIONS(3476), 1, anon_sym_PIPE, - [107058] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3197), 6, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [107071] = 7, - ACTIONS(3504), 1, - anon_sym_DOT, - ACTIONS(3506), 1, + ACTIONS(3470), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [106493] = 4, + ACTIONS(3478), 1, anon_sym_COMMA, - ACTIONS(3508), 1, - anon_sym_COLON, - ACTIONS(3510), 1, - anon_sym_RBRACK, - ACTIONS(3512), 1, - anon_sym_PIPE, - STATE(2324), 1, - aux_sym_type_parameter_repeat1, + STATE(1894), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107094] = 3, - ACTIONS(3514), 1, - anon_sym_LPAREN, + ACTIONS(3460), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [106510] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3311), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + ACTIONS(3466), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [107109] = 7, - ACTIONS(3516), 1, + [106523] = 7, + ACTIONS(3480), 1, anon_sym_COMMA, - ACTIONS(3518), 1, + ACTIONS(3482), 1, anon_sym_as, - ACTIONS(3520), 1, + ACTIONS(3484), 1, anon_sym_if, - ACTIONS(3522), 1, + ACTIONS(3486), 1, anon_sym_COLON, - STATE(2046), 1, + STATE(2039), 1, aux_sym_case_clause_repeat1, - STATE(2756), 1, + STATE(2745), 1, sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107132] = 4, - ACTIONS(3526), 1, + [106546] = 4, + ACTIONS(3490), 1, anon_sym_PIPE, - STATE(1933), 1, + STATE(1964), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3524), 4, + ACTIONS(3488), 4, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - [107149] = 6, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, - anon_sym_or, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3528), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [107170] = 4, - ACTIONS(3530), 1, + [106563] = 4, + ACTIONS(3492), 1, anon_sym_COMMA, - STATE(1966), 1, + STATE(1888), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3532), 4, + ACTIONS(3495), 4, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [107187] = 2, + anon_sym_RBRACK, + [106580] = 4, + ACTIONS(3497), 1, + anon_sym_COMMA, + STATE(1970), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3534), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(1287), 4, anon_sym_COLON, anon_sym_EQ, - anon_sym_PIPE, - [107200] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3197), 6, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_RBRACE, + sym_type_conversion, + [106597] = 4, + ACTIONS(3499), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [107213] = 2, + STATE(1911), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 6, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(971), 4, anon_sym_COLON, anon_sym_EQ, - anon_sym_PIPE, - [107226] = 5, - ACTIONS(3538), 1, - anon_sym_DOT, - ACTIONS(3540), 1, - anon_sym_COLON, - ACTIONS(3542), 1, - anon_sym_PIPE, + anon_sym_RBRACE, + sym_type_conversion, + [106614] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3503), 1, + anon_sym_BSLASH, + ACTIONS(3501), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [106631] = 4, + ACTIONS(3505), 1, + anon_sym_COMMA, + STATE(1878), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3536), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_EQ, - [107245] = 4, + ACTIONS(3507), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [106648] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3546), 1, + ACTIONS(3511), 1, anon_sym_BSLASH, - ACTIONS(3544), 5, + ACTIONS(3509), 5, sym__string_content, sym_escape_interpolation, sym_string_end, anon_sym_LBRACE, sym_escape_sequence, - [107262] = 2, + [106665] = 4, + ACTIONS(3513), 1, + anon_sym_COMMA, + STATE(1894), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3548), 6, - sym__newline, - anon_sym_SEMI, + ACTIONS(3495), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [106682] = 7, + ACTIONS(3516), 1, anon_sym_DOT, + ACTIONS(3518), 1, + anon_sym_COMMA, + ACTIONS(3520), 1, anon_sym_COLON, - anon_sym_EQ, + ACTIONS(3522), 1, + anon_sym_RBRACK, + ACTIONS(3524), 1, anon_sym_PIPE, - [107275] = 2, + STATE(2297), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3502), 6, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [107288] = 6, - ACTIONS(3005), 1, + [106705] = 6, + ACTIONS(3143), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3145), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(3149), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(3151), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3550), 2, - sym__newline, - anon_sym_SEMI, - [107309] = 4, - ACTIONS(3552), 1, + ACTIONS(3249), 2, anon_sym_COMMA, - STATE(1978), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_RBRACE, + [106726] = 4, + ACTIONS(3528), 1, + anon_sym_AT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3532), 4, - anon_sym_if, + STATE(1897), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + ACTIONS(3526), 3, anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [107326] = 6, - ACTIONS(3163), 1, + anon_sym_def, + anon_sym_class, + [106743] = 6, + ACTIONS(2967), 1, anon_sym_as, - ACTIONS(3165), 1, + ACTIONS(2969), 1, anon_sym_if, - ACTIONS(3169), 1, + ACTIONS(2971), 1, anon_sym_and, - ACTIONS(3171), 1, + ACTIONS(2973), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3554), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [107347] = 6, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, + ACTIONS(3202), 2, + sym__newline, + anon_sym_SEMI, + [106764] = 6, + ACTIONS(2967), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(2969), 1, anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(2971), 1, + anon_sym_and, + ACTIONS(2973), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3214), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [107368] = 6, - ACTIONS(3005), 1, + ACTIONS(3531), 2, + sym__newline, + anon_sym_SEMI, + [106785] = 6, + ACTIONS(3177), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3179), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(3181), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(3183), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3556), 2, + ACTIONS(1417), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [106806] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3533), 6, sym__newline, anon_sym_SEMI, - [107389] = 4, - ACTIONS(3558), 1, - anon_sym_COMMA, - STATE(1969), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [106819] = 6, + ACTIONS(3161), 1, + anon_sym_as, + ACTIONS(3163), 1, + anon_sym_if, + ACTIONS(3165), 1, + anon_sym_and, + ACTIONS(3167), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3498), 4, + ACTIONS(3535), 2, + anon_sym_COMMA, + anon_sym_COLON, + [106840] = 6, + ACTIONS(3153), 1, + anon_sym_as, + ACTIONS(3155), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [107406] = 2, + ACTIONS(3157), 1, + anon_sym_and, + ACTIONS(3159), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3197), 6, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(3537), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [107419] = 6, - ACTIONS(3163), 1, - anon_sym_as, + [106861] = 4, ACTIONS(3165), 1, - anon_sym_if, - ACTIONS(3169), 1, anon_sym_and, - ACTIONS(3171), 1, + ACTIONS(3167), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3560), 2, + ACTIONS(2998), 4, anon_sym_COMMA, - anon_sym_RBRACE, - [107440] = 4, - ACTIONS(3562), 1, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [106878] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3539), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3350), 4, anon_sym_COMMA, - STATE(1908), 1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [106893] = 4, + ACTIONS(3541), 1, + anon_sym_COMMA, + STATE(1888), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3492), 4, - anon_sym_RPAREN, + ACTIONS(3452), 4, anon_sym_if, anon_sym_async, anon_sym_for, - [107457] = 4, - ACTIONS(3526), 1, - anon_sym_PIPE, - STATE(1980), 1, - aux_sym_union_pattern_repeat1, + anon_sym_RBRACK, + [106910] = 4, + ACTIONS(3543), 1, + anon_sym_COMMA, + STATE(1884), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3564), 4, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(3507), 4, + anon_sym_RPAREN, anon_sym_if, - anon_sym_COLON, - [107474] = 4, - ACTIONS(3568), 1, - anon_sym_AT, + anon_sym_async, + anon_sym_for, + [106927] = 4, + ACTIONS(3545), 1, + anon_sym_COMMA, + STATE(1957), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1934), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - ACTIONS(3566), 3, + ACTIONS(3460), 4, + anon_sym_if, anon_sym_async, - anon_sym_def, - anon_sym_class, - [107491] = 2, + anon_sym_for, + anon_sym_RBRACE, + [106944] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3534), 6, + ACTIONS(1609), 6, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107504] = 6, - ACTIONS(3180), 1, - anon_sym_as, - ACTIONS(3182), 1, - anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, + [106957] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3482), 2, - anon_sym_COMMA, - anon_sym_COLON, - [107525] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3571), 2, + ACTIONS(3547), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3468), 4, + ACTIONS(3251), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [107540] = 2, + [106972] = 4, + ACTIONS(3549), 1, + anon_sym_COMMA, + STATE(1911), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3502), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(2871), 4, anon_sym_COLON, anon_sym_EQ, - anon_sym_PIPE, - [107553] = 6, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, + anon_sym_RBRACE, + sym_type_conversion, + [106989] = 6, + ACTIONS(3143), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(3145), 1, anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(3149), 1, + anon_sym_and, + ACTIONS(3151), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1449), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [107574] = 4, - ACTIONS(3484), 1, - anon_sym_DOT, - STATE(1965), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3204), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(3552), 2, anon_sym_COMMA, + anon_sym_RBRACE, + [107010] = 6, + ACTIONS(3177), 1, anon_sym_as, - [107591] = 6, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, - anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(3179), 1, anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(3181), 1, + anon_sym_and, + ACTIONS(3183), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3560), 2, + ACTIONS(3209), 2, anon_sym_COMMA, anon_sym_RBRACK, - [107612] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3575), 1, - anon_sym_BSLASH, - ACTIONS(3573), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [107629] = 7, - ACTIONS(3504), 1, + [107031] = 7, + ACTIONS(3516), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3520), 1, anon_sym_COLON, - ACTIONS(3512), 1, + ACTIONS(3524), 1, anon_sym_PIPE, - ACTIONS(3577), 1, + ACTIONS(3554), 1, anon_sym_COMMA, - ACTIONS(3579), 1, + ACTIONS(3556), 1, anon_sym_RBRACK, - STATE(2284), 1, + STATE(2253), 1, aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107652] = 6, - ACTIONS(3163), 1, + [107054] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3560), 1, + anon_sym_BSLASH, + ACTIONS(3558), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [107071] = 6, + ACTIONS(3153), 1, + anon_sym_as, + ACTIONS(3155), 1, + anon_sym_if, + ACTIONS(3157), 1, + anon_sym_and, + ACTIONS(3159), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3562), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [107092] = 6, + ACTIONS(3153), 1, anon_sym_as, - ACTIONS(3165), 1, + ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3169), 1, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3171), 1, + ACTIONS(3159), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3277), 2, + ACTIONS(3564), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [107673] = 4, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, + [107113] = 4, + ACTIONS(3490), 1, + anon_sym_PIPE, + STATE(1887), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3015), 4, + ACTIONS(3566), 4, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - [107690] = 3, + [107130] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3581), 2, + ACTIONS(3568), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3468), 4, + ACTIONS(3350), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [107705] = 2, + [107145] = 6, + ACTIONS(3143), 1, + anon_sym_as, + ACTIONS(3145), 1, + anon_sym_if, + ACTIONS(3149), 1, + anon_sym_and, + ACTIONS(3151), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3537), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [107166] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3583), 6, + ACTIONS(3570), 6, anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107718] = 6, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, - anon_sym_or, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, + [107179] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3585), 2, + ACTIONS(2951), 6, + anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, - [107739] = 6, - ACTIONS(3163), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [107192] = 6, + ACTIONS(3161), 1, anon_sym_as, - ACTIONS(3165), 1, + ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3169), 1, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3171), 1, + ACTIONS(3167), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3587), 2, + ACTIONS(3209), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [107760] = 7, - ACTIONS(3504), 1, + anon_sym_COLON, + [107213] = 6, + ACTIONS(3572), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3576), 1, anon_sym_COLON, - ACTIONS(3512), 1, + ACTIONS(3578), 1, + anon_sym_EQ, + ACTIONS(3580), 1, anon_sym_PIPE, - ACTIONS(3589), 1, - anon_sym_COMMA, - ACTIONS(3591), 1, - anon_sym_RBRACK, - STATE(2350), 1, - aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107783] = 4, - ACTIONS(3593), 1, + ACTIONS(3574), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1993), 1, - aux_sym_for_in_clause_repeat1, + [107234] = 4, + ACTIONS(3448), 1, + anon_sym_DOT, + STATE(1874), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3498), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [107800] = 2, + ACTIONS(3187), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + [107251] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 6, + ACTIONS(3570), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107813] = 6, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, + [107264] = 6, + ACTIONS(3153), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(3157), 1, + anon_sym_and, + ACTIONS(3159), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3595), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [107834] = 4, - ACTIONS(3599), 1, + ACTIONS(3202), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1957), 1, - aux_sym_for_in_clause_repeat1, + [107285] = 6, + ACTIONS(3153), 1, + anon_sym_as, + ACTIONS(3155), 1, + anon_sym_if, + ACTIONS(3157), 1, + anon_sym_and, + ACTIONS(3159), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3597), 4, + ACTIONS(3582), 2, anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [107851] = 4, - ACTIONS(3601), 1, anon_sym_COMMA, - STATE(1951), 1, + [107306] = 4, + ACTIONS(3584), 1, + anon_sym_COMMA, + STATE(1906), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3492), 4, + ACTIONS(3586), 4, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [107868] = 2, + [107323] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3583), 6, - sym__newline, - anon_sym_SEMI, + ACTIONS(3454), 6, anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107881] = 4, - ACTIONS(3605), 1, + [107336] = 7, + ACTIONS(3516), 1, + anon_sym_DOT, + ACTIONS(3520), 1, + anon_sym_COLON, + ACTIONS(3524), 1, + anon_sym_PIPE, + ACTIONS(3588), 1, anon_sym_COMMA, - STATE(1957), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(3590), 1, + anon_sym_RBRACK, + STATE(2472), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3603), 4, - anon_sym_RPAREN, + [107359] = 6, + ACTIONS(3177), 1, + anon_sym_as, + ACTIONS(3179), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - [107898] = 2, + ACTIONS(3181), 1, + anon_sym_and, + ACTIONS(3183), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3583), 6, - anon_sym_DOT, - anon_sym_RPAREN, + ACTIONS(3552), 2, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [107911] = 5, - ACTIONS(3608), 1, - anon_sym_DOT, - ACTIONS(3610), 1, - anon_sym_COLON, - ACTIONS(3612), 1, - anon_sym_PIPE, + anon_sym_RBRACK, + [107380] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3536), 3, - anon_sym_RPAREN, + ACTIONS(3462), 6, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [107930] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3616), 1, - anon_sym_BSLASH, - ACTIONS(3614), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [107947] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3620), 1, - anon_sym_BSLASH, - ACTIONS(3618), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [107964] = 3, + anon_sym_PIPE, + [107393] = 3, + STATE(1887), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3622), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3311), 4, - anon_sym_RPAREN, + ACTIONS(3592), 5, anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - [107979] = 4, - ACTIONS(3624), 1, - anon_sym_COMMA, - STATE(1994), 1, - aux_sym__patterns_repeat1, + [107408] = 6, + ACTIONS(3161), 1, + anon_sym_as, + ACTIONS(3163), 1, + anon_sym_if, + ACTIONS(3165), 1, + anon_sym_and, + ACTIONS(3167), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(995), 4, + ACTIONS(3582), 2, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [107996] = 6, - ACTIONS(3176), 1, + [107429] = 7, + ACTIONS(3163), 1, + anon_sym_if, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3178), 1, + ACTIONS(3167), 1, anon_sym_or, - ACTIONS(3188), 1, + ACTIONS(3594), 1, + anon_sym_COMMA, + ACTIONS(3596), 1, anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, + ACTIONS(3598), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3554), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [108017] = 4, - ACTIONS(3626), 1, - anon_sym_DOT, - STATE(1965), 1, - aux_sym_dotted_name_repeat1, + [107452] = 6, + ACTIONS(3153), 1, + anon_sym_as, + ACTIONS(3155), 1, + anon_sym_if, + ACTIONS(3157), 1, + anon_sym_and, + ACTIONS(3159), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3197), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(3552), 2, + anon_sym_RPAREN, anon_sym_COMMA, + [107473] = 6, + ACTIONS(3153), 1, anon_sym_as, - [108034] = 4, - ACTIONS(3629), 1, - anon_sym_COMMA, - STATE(1969), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(3155), 1, + anon_sym_if, + ACTIONS(3157), 1, + anon_sym_and, + ACTIONS(3159), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3597), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [108051] = 2, + ACTIONS(3209), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [107494] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1673), 6, + ACTIONS(3570), 6, anon_sym_DOT, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [108064] = 2, + [107507] = 6, + ACTIONS(3472), 1, + anon_sym_DOT, + ACTIONS(3474), 1, + anon_sym_COLON, + ACTIONS(3476), 1, + anon_sym_PIPE, + ACTIONS(3602), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3631), 6, - anon_sym_DOT, + ACTIONS(3600), 2, + sym__newline, + anon_sym_SEMI, + [107528] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3604), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3251), 4, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_as, anon_sym_PIPE, - [108077] = 4, - ACTIONS(3633), 1, + [107543] = 4, + ACTIONS(3606), 1, anon_sym_COMMA, - STATE(1969), 1, + STATE(1894), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3452), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [107560] = 4, + ACTIONS(3608), 1, + anon_sym_COMMA, + STATE(1875), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3603), 4, + ACTIONS(3586), 4, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [108094] = 2, + [107577] = 4, + ACTIONS(3490), 1, + anon_sym_PIPE, + STATE(1887), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3636), 6, - anon_sym_DOT, - anon_sym_RPAREN, + ACTIONS(3610), 4, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, + [107594] = 7, + ACTIONS(3516), 1, + anon_sym_DOT, + ACTIONS(3520), 1, + anon_sym_COLON, + ACTIONS(3524), 1, anon_sym_PIPE, - [108107] = 6, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, + ACTIONS(3612), 1, + anon_sym_COMMA, + ACTIONS(3614), 1, + anon_sym_RBRACK, + STATE(2236), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [107617] = 6, + ACTIONS(2967), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(2969), 1, anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(2971), 1, + anon_sym_and, + ACTIONS(2973), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3554), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [108128] = 4, - ACTIONS(3526), 1, - anon_sym_PIPE, - STATE(1933), 1, - aux_sym_union_pattern_repeat1, + ACTIONS(3616), 2, + sym__newline, + anon_sym_SEMI, + [107638] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3638), 4, + ACTIONS(3194), 6, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [108145] = 4, + anon_sym_PIPE, + anon_sym_RBRACE, + [107651] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3642), 1, + ACTIONS(3620), 1, anon_sym_BSLASH, - ACTIONS(3640), 5, + ACTIONS(3618), 5, sym__string_content, sym_escape_interpolation, sym_string_end, anon_sym_LBRACE, sym_escape_sequence, - [108162] = 6, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, - anon_sym_or, - ACTIONS(3188), 1, + [107668] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3194), 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [107681] = 6, + ACTIONS(3153), 1, anon_sym_as, - ACTIONS(3190), 1, + ACTIONS(3155), 1, anon_sym_if, + ACTIONS(3157), 1, + anon_sym_and, + ACTIONS(3159), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3560), 2, + ACTIONS(3464), 2, anon_sym_RPAREN, anon_sym_COMMA, - [108183] = 7, - ACTIONS(3182), 1, + [107702] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3624), 1, + anon_sym_BSLASH, + ACTIONS(3622), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [107719] = 6, + ACTIONS(3153), 1, + anon_sym_as, + ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3159), 1, anon_sym_or, - ACTIONS(3644), 1, - anon_sym_COMMA, - ACTIONS(3646), 1, - anon_sym_as, - ACTIONS(3648), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108206] = 4, - ACTIONS(3650), 1, + ACTIONS(3626), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1954), 1, + [107740] = 4, + ACTIONS(3628), 1, + anon_sym_COMMA, + STATE(1908), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3532), 4, - anon_sym_RPAREN, + ACTIONS(3507), 4, anon_sym_if, anon_sym_async, anon_sym_for, - [108223] = 7, - ACTIONS(3182), 1, + anon_sym_RBRACE, + [107757] = 6, + ACTIONS(3177), 1, + anon_sym_as, + ACTIONS(3179), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3181), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3183), 1, anon_sym_or, - ACTIONS(3646), 1, - anon_sym_as, - ACTIONS(3652), 1, - anon_sym_COMMA, - ACTIONS(3654), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108246] = 4, - ACTIONS(3656), 1, + ACTIONS(3468), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [107778] = 4, + ACTIONS(3630), 1, anon_sym_COMMA, - STATE(1993), 1, + STATE(1942), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3597), 4, + ACTIONS(3586), 4, + anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [108263] = 4, - ACTIONS(3658), 1, - anon_sym_COMMA, - STATE(2002), 1, - aux_sym_assert_statement_repeat1, + [107795] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1299), 4, + ACTIONS(3632), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [108280] = 4, - ACTIONS(3660), 1, anon_sym_PIPE, - STATE(1980), 1, - aux_sym_union_pattern_repeat1, + [107808] = 4, + ACTIONS(3634), 1, + anon_sym_COMMA, + STATE(1957), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3472), 4, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(3495), 4, anon_sym_if, - anon_sym_COLON, - [108297] = 6, - ACTIONS(3005), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [107825] = 6, + ACTIONS(3153), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3009), 1, - anon_sym_and, - ACTIONS(3011), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3214), 2, - sym__newline, - anon_sym_SEMI, - [108318] = 6, - ACTIONS(3176), 1, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3178), 1, + ACTIONS(3159), 1, anon_sym_or, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3232), 2, + ACTIONS(3637), 2, anon_sym_RPAREN, anon_sym_COMMA, - [108339] = 2, + [107846] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3641), 1, + anon_sym_BSLASH, + ACTIONS(3639), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [107863] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3645), 1, + anon_sym_BSLASH, + ACTIONS(3643), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [107880] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1673), 6, + ACTIONS(3647), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [108352] = 2, + [107893] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3631), 6, - sym__newline, - anon_sym_SEMI, + ACTIONS(3533), 6, anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [108365] = 6, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, - anon_sym_or, - ACTIONS(3188), 1, + [107906] = 6, + ACTIONS(3177), 1, anon_sym_as, - ACTIONS(3190), 1, + ACTIONS(3179), 1, anon_sym_if, + ACTIONS(3181), 1, + anon_sym_and, + ACTIONS(3183), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3663), 2, - anon_sym_RPAREN, + ACTIONS(1449), 2, anon_sym_COMMA, - [108386] = 6, - ACTIONS(3538), 1, - anon_sym_DOT, - ACTIONS(3540), 1, - anon_sym_COLON, - ACTIONS(3542), 1, + anon_sym_RBRACK, + [107927] = 4, + ACTIONS(3649), 1, anon_sym_PIPE, - ACTIONS(3667), 1, - anon_sym_EQ, + STATE(1964), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3665), 2, - sym__newline, - anon_sym_SEMI, - [108407] = 6, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, - anon_sym_or, - ACTIONS(3188), 1, + ACTIONS(3592), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3190), 1, anon_sym_if, + anon_sym_COLON, + [107944] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3480), 2, + ACTIONS(3194), 6, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - [108428] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3636), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_as, anon_sym_PIPE, - [108441] = 2, + [107957] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3548), 6, + ACTIONS(3647), 6, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [108454] = 2, + [107970] = 5, + ACTIONS(3572), 1, + anon_sym_DOT, + ACTIONS(3576), 1, + anon_sym_COLON, + ACTIONS(3580), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3534), 6, - anon_sym_DOT, + ACTIONS(3470), 3, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - anon_sym_PIPE, - [108467] = 6, - ACTIONS(3180), 1, + [107989] = 6, + ACTIONS(3143), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3145), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3149), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3151), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3585), 2, + ACTIONS(3468), 2, anon_sym_COMMA, - anon_sym_COLON, - [108488] = 6, - ACTIONS(3176), 1, + anon_sym_RBRACE, + [108010] = 7, + ACTIONS(3163), 1, + anon_sym_if, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3178), 1, + ACTIONS(3167), 1, anon_sym_or, - ACTIONS(3188), 1, + ACTIONS(3596), 1, anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3669), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [108509] = 4, - ACTIONS(3671), 1, + ACTIONS(3652), 1, anon_sym_COMMA, - STATE(1993), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(3654), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3603), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [108526] = 4, - ACTIONS(3674), 1, + [108033] = 4, + ACTIONS(3656), 1, anon_sym_COMMA, - STATE(1994), 1, - aux_sym__patterns_repeat1, + STATE(1970), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2889), 4, + ACTIONS(3209), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [108543] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3679), 1, - anon_sym_BSLASH, - ACTIONS(3677), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [108560] = 6, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, - anon_sym_or, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, + [108050] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3587), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [108581] = 6, - ACTIONS(3608), 1, + ACTIONS(3533), 6, anon_sym_DOT, - ACTIONS(3610), 1, - anon_sym_COLON, - ACTIONS(3612), 1, - anon_sym_PIPE, - ACTIONS(3683), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3681), 2, anon_sym_RPAREN, anon_sym_COMMA, - [108602] = 7, - ACTIONS(3504), 1, - anon_sym_DOT, - ACTIONS(3508), 1, anon_sym_COLON, - ACTIONS(3512), 1, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(3687), 1, - anon_sym_RBRACK, - STATE(2280), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [108625] = 6, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, - anon_sym_as, - ACTIONS(3210), 1, - anon_sym_if, - ACTIONS(3212), 1, - anon_sym_or, + [108063] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3232), 2, + ACTIONS(3659), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3251), 4, anon_sym_COMMA, - anon_sym_RBRACK, - [108646] = 6, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, - anon_sym_or, - ACTIONS(3188), 1, anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3214), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [108667] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3691), 1, - anon_sym_BSLASH, - ACTIONS(3689), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [108684] = 4, - ACTIONS(3693), 1, - anon_sym_COMMA, - STATE(2002), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3232), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [108701] = 2, + anon_sym_RBRACK, + anon_sym_PIPE, + [108078] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3486), 6, + ACTIONS(2951), 6, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [108714] = 2, + [108091] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3696), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + ACTIONS(3462), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [108726] = 6, - ACTIONS(3180), 1, + [108104] = 6, + ACTIONS(3161), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3167), 1, anon_sym_or, - ACTIONS(3698), 1, - anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108746] = 6, - ACTIONS(3180), 1, - anon_sym_as, - ACTIONS(3182), 1, - anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3700), 1, + ACTIONS(3637), 2, + anon_sym_COMMA, anon_sym_COLON, + [108125] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108766] = 2, + ACTIONS(3661), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3350), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [108140] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2898), 5, + ACTIONS(3632), 6, + anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [108778] = 3, - ACTIONS(3702), 1, + anon_sym_PIPE, + [108153] = 3, + ACTIONS(3663), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3311), 4, + ACTIONS(3251), 5, anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - anon_sym_RBRACE, - [108792] = 4, - ACTIONS(3704), 1, - anon_sym_PIPE, - STATE(2111), 1, - aux_sym_union_pattern_repeat1, + [108168] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3667), 1, + anon_sym_BSLASH, + ACTIONS(3665), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [108185] = 4, + ACTIONS(3669), 1, + anon_sym_DOT, + STATE(1980), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3524), 3, - anon_sym_RPAREN, + ACTIONS(3194), 4, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_as, - [108808] = 2, + [108202] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3706), 5, + ACTIONS(1609), 6, + anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [108215] = 6, + ACTIONS(3177), 1, + anon_sym_as, + ACTIONS(3179), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - [108820] = 2, + ACTIONS(3181), 1, + anon_sym_and, + ACTIONS(3183), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3548), 5, - anon_sym_DOT, + ACTIONS(3202), 2, anon_sym_COMMA, - anon_sym_COLON, anon_sym_RBRACK, - anon_sym_PIPE, - [108832] = 2, + [108236] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 5, + ACTIONS(3672), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108844] = 6, - ACTIONS(3710), 1, - anon_sym_LBRACE, - ACTIONS(3712), 1, - anon_sym_RBRACE, - ACTIONS(3714), 1, - aux_sym_format_specifier_token1, - STATE(2117), 1, - aux_sym_format_specifier_repeat1, - STATE(2465), 1, - sym_interpolation, - ACTIONS(5), 2, + [108248] = 4, + ACTIONS(3674), 1, + anon_sym_PIPE, + STATE(1984), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108864] = 2, + ACTIONS(3592), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + [108264] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3716), 5, + ACTIONS(3677), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108876] = 2, + [108276] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3603), 5, - anon_sym_RPAREN, + ACTIONS(3679), 5, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - [108888] = 4, - ACTIONS(3718), 1, + anon_sym_COLON, + anon_sym_PIPE, + [108288] = 5, + ACTIONS(3681), 1, + anon_sym_DOT, + ACTIONS(3683), 1, + anon_sym_COLON, + ACTIONS(3685), 1, anon_sym_PIPE, - STATE(2072), 1, - aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3564), 3, + ACTIONS(3470), 2, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [108904] = 4, - ACTIONS(3720), 1, + anon_sym_EQ, + [108306] = 5, + ACTIONS(3689), 1, anon_sym_COMMA, - STATE(2052), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3691), 1, + anon_sym_as, + STATE(2162), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1299), 3, + ACTIONS(3687), 2, sym__newline, anon_sym_SEMI, - anon_sym_from, - [108920] = 6, - ACTIONS(3180), 1, + [108324] = 6, + ACTIONS(3161), 1, + anon_sym_as, + ACTIONS(3163), 1, + anon_sym_if, + ACTIONS(3165), 1, + anon_sym_and, + ACTIONS(3167), 1, + anon_sym_or, + ACTIONS(3693), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [108344] = 6, + ACTIONS(3161), 1, + anon_sym_as, + ACTIONS(3163), 1, + anon_sym_if, + ACTIONS(3165), 1, + anon_sym_and, + ACTIONS(3167), 1, + anon_sym_or, + ACTIONS(3695), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [108364] = 5, + ACTIONS(3472), 1, + anon_sym_DOT, + ACTIONS(3474), 1, + anon_sym_COLON, + ACTIONS(3476), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3697), 2, + sym__newline, + anon_sym_SEMI, + [108382] = 6, + ACTIONS(3161), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3167), 1, anon_sym_or, - ACTIONS(3722), 1, + ACTIONS(3699), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108940] = 2, + [108402] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3724), 5, + ACTIONS(3701), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108952] = 2, + [108414] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3726), 5, + ACTIONS(3703), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108964] = 5, - ACTIONS(3728), 1, + [108426] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3705), 5, anon_sym_COMMA, - ACTIONS(3730), 1, - anon_sym_RBRACE, - STATE(2282), 1, - aux_sym_dict_pattern_repeat1, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [108438] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3311), 2, + ACTIONS(3466), 5, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [108982] = 2, + [108450] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3732), 5, + ACTIONS(3707), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108994] = 4, - ACTIONS(3734), 1, + [108462] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3709), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, anon_sym_PIPE, - STATE(2060), 1, + anon_sym_RBRACE, + [108474] = 6, + ACTIONS(3711), 1, + anon_sym_COLON, + ACTIONS(3713), 1, + anon_sym_EQ, + ACTIONS(3715), 1, + anon_sym_RBRACE, + ACTIONS(3717), 1, + sym_type_conversion, + STATE(2730), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [108494] = 3, + STATE(2067), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3564), 3, + ACTIONS(3592), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, - [109010] = 6, - ACTIONS(3681), 1, + anon_sym_PIPE, + [108508] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3719), 5, anon_sym_COMMA, - ACTIONS(3736), 1, - anon_sym_DOT, - ACTIONS(3738), 1, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - ACTIONS(3740), 1, - anon_sym_EQ, - ACTIONS(3742), 1, anon_sym_PIPE, + [108520] = 6, + ACTIONS(3161), 1, + anon_sym_as, + ACTIONS(3163), 1, + anon_sym_if, + ACTIONS(3165), 1, + anon_sym_and, + ACTIONS(3167), 1, + anon_sym_or, + ACTIONS(3721), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109030] = 2, + [108540] = 6, + ACTIONS(2967), 1, + anon_sym_as, + ACTIONS(2969), 1, + anon_sym_if, + ACTIONS(2971), 1, + anon_sym_and, + ACTIONS(2973), 1, + anon_sym_or, + ACTIONS(3723), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3197), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + [108560] = 4, + ACTIONS(3725), 1, + anon_sym_PIPE, + STATE(2004), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3592), 3, anon_sym_COMMA, anon_sym_as, - [109042] = 6, - ACTIONS(3180), 1, + anon_sym_RBRACK, + [108576] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3728), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [108588] = 6, + ACTIONS(3161), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3167), 1, anon_sym_or, - ACTIONS(3744), 1, + ACTIONS(3730), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109062] = 2, + [108608] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3746), 5, + ACTIONS(3732), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109074] = 6, - ACTIONS(3180), 1, + [108620] = 6, + ACTIONS(3161), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3167), 1, anon_sym_or, - ACTIONS(3748), 1, + ACTIONS(3368), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109094] = 2, + [108640] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3750), 5, + ACTIONS(1609), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [109106] = 2, + [108652] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1673), 5, + ACTIONS(3632), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [109118] = 2, + [108664] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3583), 5, + ACTIONS(3647), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [109130] = 5, - ACTIONS(3391), 1, - sym_identifier, - STATE(2229), 1, - sym_dotted_name, - STATE(2432), 1, - sym_aliased_import, + [108676] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3752), 2, - sym__newline, - anon_sym_SEMI, - [109148] = 6, - ACTIONS(3180), 1, + ACTIONS(3734), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3182), 1, anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3754), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [109168] = 6, - ACTIONS(3756), 1, anon_sym_COLON, - ACTIONS(3758), 1, - anon_sym_EQ, - ACTIONS(3760), 1, - anon_sym_RBRACE, - ACTIONS(3762), 1, - sym_type_conversion, - STATE(2792), 1, - sym_format_specifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [109188] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3764), 5, - anon_sym_COMMA, + anon_sym_PIPE, + [108688] = 6, + ACTIONS(3161), 1, anon_sym_as, + ACTIONS(3163), 1, anon_sym_if, + ACTIONS(3165), 1, + anon_sym_and, + ACTIONS(3167), 1, + anon_sym_or, + ACTIONS(3736), 1, anon_sym_COLON, - anon_sym_PIPE, - [109200] = 5, - ACTIONS(3391), 1, - sym_identifier, - STATE(2229), 1, - sym_dotted_name, - STATE(2432), 1, - sym_aliased_import, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3752), 2, - sym__newline, - anon_sym_SEMI, - [109218] = 5, - ACTIONS(3391), 1, - sym_identifier, - STATE(2229), 1, - sym_dotted_name, - STATE(2432), 1, - sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3766), 2, - sym__newline, - anon_sym_SEMI, - [109236] = 2, + [108708] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3706), 5, + ACTIONS(3738), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [109248] = 6, - ACTIONS(3768), 1, - anon_sym_LBRACE, - ACTIONS(3771), 1, - anon_sym_RBRACE, - ACTIONS(3773), 1, - aux_sym_format_specifier_token1, - STATE(2039), 1, - aux_sym_format_specifier_repeat1, - STATE(2465), 1, - sym_interpolation, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - [109268] = 2, + anon_sym_RBRACK, + [108720] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3776), 5, + ACTIONS(3740), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109280] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3778), 5, - anon_sym_COMMA, + [108732] = 6, + ACTIONS(3163), 1, + anon_sym_if, + ACTIONS(3165), 1, + anon_sym_and, + ACTIONS(3167), 1, + anon_sym_or, + ACTIONS(3742), 1, anon_sym_as, + ACTIONS(3744), 1, anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACE, - [109292] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3603), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [109304] = 2, + [108752] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3780), 5, + ACTIONS(3709), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109316] = 5, - ACTIONS(3782), 1, - anon_sym_COMMA, - ACTIONS(3784), 1, - anon_sym_RBRACE, - STATE(2361), 1, - aux_sym_dict_pattern_repeat1, + [108764] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3311), 2, + ACTIONS(3746), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109334] = 2, + [108776] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3786), 5, + ACTIONS(3570), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [109346] = 6, - ACTIONS(2598), 1, - anon_sym_COLON, - ACTIONS(3520), 1, + [108788] = 6, + ACTIONS(3161), 1, + anon_sym_as, + ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(2164), 1, - aux_sym_case_clause_repeat1, - STATE(2662), 1, - sym_if_clause, + ACTIONS(3165), 1, + anon_sym_and, + ACTIONS(3167), 1, + anon_sym_or, + ACTIONS(3748), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109366] = 2, + [108808] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3790), 5, + ACTIONS(3172), 5, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [108820] = 6, + ACTIONS(3161), 1, anon_sym_as, + ACTIONS(3163), 1, anon_sym_if, + ACTIONS(3165), 1, + anon_sym_and, + ACTIONS(3167), 1, + anon_sym_or, + ACTIONS(3750), 1, anon_sym_COLON, - anon_sym_PIPE, - [109378] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2904), 5, - anon_sym_COMMA, + [108840] = 6, + ACTIONS(1579), 1, + anon_sym_LBRACK, + ACTIONS(3752), 1, + anon_sym_LPAREN, + ACTIONS(3754), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [109390] = 2, + STATE(2438), 1, + sym_type_parameter, + STATE(2667), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [108860] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3195), 5, + ACTIONS(3194), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [109402] = 2, + anon_sym_as, + [108872] = 4, + ACTIONS(3756), 1, + anon_sym_PIPE, + STATE(1984), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3792), 5, + ACTIONS(3488), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, + [108888] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1609), 5, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [109414] = 6, - ACTIONS(3180), 1, + [108900] = 6, + ACTIONS(3161), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3167), 1, anon_sym_or, - ACTIONS(3794), 1, + ACTIONS(3758), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109434] = 4, - ACTIONS(3796), 1, + [108920] = 4, + ACTIONS(3760), 1, anon_sym_COMMA, - STATE(2052), 1, + STATE(2028), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3232), 3, + ACTIONS(3209), 3, sym__newline, anon_sym_SEMI, anon_sym_from, - [109450] = 6, - ACTIONS(3180), 1, + [108936] = 6, + ACTIONS(3161), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3167), 1, anon_sym_or, - ACTIONS(3799), 1, + ACTIONS(3763), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [108956] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3765), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, + anon_sym_PIPE, + [108968] = 5, + ACTIONS(3767), 1, + anon_sym_COMMA, + ACTIONS(3769), 1, + anon_sym_RBRACE, + STATE(2309), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109470] = 6, - ACTIONS(1579), 1, - anon_sym_LBRACK, - ACTIONS(3801), 1, - anon_sym_LPAREN, - ACTIONS(3803), 1, + ACTIONS(3251), 2, anon_sym_COLON, - STATE(2468), 1, - sym_type_parameter, - STATE(2698), 1, - sym_argument_list, + anon_sym_PIPE, + [108986] = 4, + ACTIONS(3771), 1, + anon_sym_PIPE, + STATE(2056), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109490] = 2, + ACTIONS(3488), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + [109002] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3805), 5, + ACTIONS(3773), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109502] = 6, - ACTIONS(3005), 1, + [109014] = 6, + ACTIONS(3163), 1, + anon_sym_if, + ACTIONS(3165), 1, + anon_sym_and, + ACTIONS(3167), 1, + anon_sym_or, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3775), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [109034] = 6, + ACTIONS(3161), 1, + anon_sym_as, + ACTIONS(3163), 1, + anon_sym_if, + ACTIONS(3165), 1, + anon_sym_and, + ACTIONS(3167), 1, + anon_sym_or, + ACTIONS(3777), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [109054] = 6, + ACTIONS(3161), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(3167), 1, anon_sym_or, - ACTIONS(3807), 1, - sym__newline, + ACTIONS(3779), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109522] = 6, - ACTIONS(3180), 1, + [109074] = 6, + ACTIONS(3161), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3167), 1, anon_sym_or, - ACTIONS(3809), 1, + ACTIONS(3781), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109542] = 4, - ACTIONS(3734), 1, - anon_sym_PIPE, - STATE(2023), 1, - aux_sym_union_pattern_repeat1, + [109094] = 5, + ACTIONS(3344), 1, + sym_identifier, + STATE(2221), 1, + sym_dotted_name, + STATE(2433), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3638), 3, + ACTIONS(3783), 2, + sym__newline, + anon_sym_SEMI, + [109112] = 6, + ACTIONS(2578), 1, + anon_sym_COLON, + ACTIONS(3484), 1, + anon_sym_if, + ACTIONS(3785), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [109558] = 3, - STATE(2023), 1, - aux_sym_union_pattern_repeat1, + STATE(2106), 1, + aux_sym_case_clause_repeat1, + STATE(2762), 1, + sym_if_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [109132] = 5, + ACTIONS(3516), 1, + anon_sym_DOT, + ACTIONS(3520), 1, + anon_sym_COLON, + ACTIONS(3524), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3472), 4, + ACTIONS(3787), 2, anon_sym_COMMA, - anon_sym_as, anon_sym_RBRACK, - anon_sym_PIPE, - [109572] = 4, - ACTIONS(3811), 1, - anon_sym_PIPE, - STATE(2060), 1, - aux_sym_union_pattern_repeat1, + [109150] = 6, + ACTIONS(3789), 1, + anon_sym_LBRACE, + ACTIONS(3792), 1, + anon_sym_RBRACE, + ACTIONS(3794), 1, + aux_sym_format_specifier_token1, + STATE(2041), 1, + aux_sym_format_specifier_repeat1, + STATE(2357), 1, + sym_interpolation, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [109170] = 5, + ACTIONS(3797), 1, + anon_sym_COMMA, + ACTIONS(3799), 1, + anon_sym_RBRACE, + STATE(2374), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3472), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [109588] = 2, + ACTIONS(3251), 2, + anon_sym_COLON, + anon_sym_PIPE, + [109188] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1673), 5, - anon_sym_DOT, + ACTIONS(3801), 5, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, anon_sym_PIPE, - [109600] = 2, + [109200] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3631), 5, - anon_sym_DOT, + ACTIONS(3803), 5, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, anon_sym_PIPE, - [109612] = 4, - ACTIONS(3718), 1, - anon_sym_PIPE, - STATE(2016), 1, - aux_sym_union_pattern_repeat1, + [109212] = 5, + ACTIONS(3344), 1, + sym_identifier, + STATE(2221), 1, + sym_dotted_name, + STATE(2433), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3638), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [109628] = 2, + ACTIONS(3783), 2, + sym__newline, + anon_sym_SEMI, + [109230] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 5, + ACTIONS(2951), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [109640] = 6, - ACTIONS(3182), 1, - anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3814), 1, - anon_sym_as, - ACTIONS(3816), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [109660] = 3, - STATE(2016), 1, - aux_sym_union_pattern_repeat1, + [109242] = 3, + ACTIONS(3805), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3472), 4, + ACTIONS(3251), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [109674] = 6, - ACTIONS(3180), 1, - anon_sym_as, - ACTIONS(3182), 1, - anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3818), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [109694] = 6, - ACTIONS(3180), 1, - anon_sym_as, - ACTIONS(3182), 1, - anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3820), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [109714] = 3, - ACTIONS(3822), 1, + [109256] = 3, + ACTIONS(3807), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3311), 4, - anon_sym_RPAREN, + ACTIONS(3251), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [109728] = 6, - ACTIONS(3756), 1, - anon_sym_COLON, - ACTIONS(3824), 1, - anon_sym_EQ, - ACTIONS(3826), 1, anon_sym_RBRACE, - ACTIONS(3828), 1, - sym_type_conversion, - STATE(2769), 1, - sym_format_specifier, + [109270] = 4, + ACTIONS(3756), 1, + anon_sym_PIPE, + STATE(2025), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109748] = 6, - ACTIONS(3180), 1, + ACTIONS(3610), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3182), 1, - anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3830), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [109768] = 4, - ACTIONS(3832), 1, + [109286] = 4, + ACTIONS(3771), 1, anon_sym_PIPE, - STATE(2072), 1, + STATE(2032), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3472), 3, + ACTIONS(3566), 3, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACE, - [109784] = 2, + [109302] = 4, + ACTIONS(3771), 1, + anon_sym_PIPE, + STATE(2032), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3835), 5, + ACTIONS(3610), 3, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_as, anon_sym_RBRACE, - [109796] = 2, + [109318] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3706), 5, + ACTIONS(3728), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [109808] = 6, - ACTIONS(3391), 1, - sym_identifier, - ACTIONS(3837), 1, - anon_sym_LPAREN, - STATE(2114), 1, - sym_dotted_name, - STATE(2218), 1, - sym_aliased_import, - STATE(2562), 1, - sym__import_list, + [109330] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109828] = 2, + ACTIONS(2871), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [109342] = 3, + STATE(2032), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3631), 5, - anon_sym_DOT, + ACTIONS(3592), 4, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_as, anon_sym_PIPE, - [109840] = 2, + anon_sym_RBRACE, + [109356] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3636), 5, - anon_sym_DOT, + ACTIONS(3738), 5, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [109368] = 4, + ACTIONS(3809), 1, anon_sym_PIPE, - [109852] = 2, + STATE(2056), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3486), 5, - anon_sym_DOT, + ACTIONS(3592), 3, anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + [109384] = 6, + ACTIONS(3711), 1, anon_sym_COLON, + ACTIONS(3812), 1, anon_sym_EQ, - anon_sym_PIPE, - [109864] = 5, - ACTIONS(3504), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_COLON, - ACTIONS(3512), 1, - anon_sym_PIPE, + ACTIONS(3814), 1, + anon_sym_RBRACE, + ACTIONS(3816), 1, + sym_type_conversion, + STATE(2654), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3839), 2, + [109404] = 5, + ACTIONS(3818), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [109882] = 6, - ACTIONS(1579), 1, - anon_sym_LBRACK, - ACTIONS(3801), 1, - anon_sym_LPAREN, - ACTIONS(3841), 1, - anon_sym_COLON, - STATE(2507), 1, - sym_type_parameter, - STATE(2794), 1, - sym_argument_list, + ACTIONS(3820), 1, + anon_sym_RBRACE, + STATE(2457), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109902] = 2, + ACTIONS(3251), 2, + anon_sym_COLON, + anon_sym_PIPE, + [109422] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3603), 5, + ACTIONS(3822), 5, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [109914] = 5, - ACTIONS(3843), 1, + anon_sym_COLON, + anon_sym_PIPE, + [109434] = 6, + ACTIONS(3161), 1, + anon_sym_as, + ACTIONS(3163), 1, + anon_sym_if, + ACTIONS(3165), 1, + anon_sym_and, + ACTIONS(3167), 1, + anon_sym_or, + ACTIONS(3824), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [109454] = 5, + ACTIONS(3826), 1, anon_sym_COMMA, - ACTIONS(3845), 1, + ACTIONS(3828), 1, anon_sym_RBRACE, - STATE(2335), 1, + STATE(2263), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3311), 2, + ACTIONS(3251), 2, anon_sym_COLON, anon_sym_PIPE, - [109932] = 2, + [109472] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3548), 5, - anon_sym_DOT, + ACTIONS(3830), 5, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, anon_sym_PIPE, - [109944] = 2, + [109484] = 4, + ACTIONS(3832), 1, + anon_sym_PIPE, + STATE(2067), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3486), 5, - anon_sym_DOT, + ACTIONS(3610), 3, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_as, anon_sym_RBRACK, - anon_sym_PIPE, - [109956] = 3, - ACTIONS(3847), 1, - anon_sym_LPAREN, + [109500] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3311), 4, + ACTIONS(2880), 5, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [109970] = 2, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [109512] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3835), 5, + ACTIONS(3728), 5, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [109982] = 4, - ACTIONS(3734), 1, + [109524] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3738), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [109536] = 4, + ACTIONS(3832), 1, anon_sym_PIPE, - STATE(2023), 1, + STATE(2004), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3524), 3, + ACTIONS(3488), 3, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, - [109998] = 2, + [109552] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2889), 5, + ACTIONS(1581), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [110010] = 6, - ACTIONS(3180), 1, + [109564] = 6, + ACTIONS(3161), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3167), 1, anon_sym_or, - ACTIONS(3411), 1, + ACTIONS(3834), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110030] = 2, + [109584] = 4, + ACTIONS(3165), 1, + anon_sym_and, + ACTIONS(3167), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3636), 5, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(2998), 3, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [110042] = 6, - ACTIONS(3180), 1, + [109600] = 6, + ACTIONS(3161), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3167), 1, anon_sym_or, - ACTIONS(3849), 1, + ACTIONS(3836), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110062] = 2, + [109620] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3534), 5, - anon_sym_DOT, + ACTIONS(3495), 5, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, - anon_sym_PIPE, - [110074] = 4, - ACTIONS(3718), 1, - anon_sym_PIPE, - STATE(2016), 1, - aux_sym_union_pattern_repeat1, + [109632] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3524), 3, + ACTIONS(3462), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [110090] = 6, - ACTIONS(3180), 1, - anon_sym_as, - ACTIONS(3182), 1, - anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3851), 1, anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [109644] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110110] = 2, + ACTIONS(2951), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [109656] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3835), 5, + ACTIONS(3495), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [110122] = 6, - ACTIONS(3180), 1, + [109668] = 4, + ACTIONS(3838), 1, + anon_sym_COMMA, + STATE(2028), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1287), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + [109684] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3840), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3182), 1, anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3853), 1, - anon_sym_else, + anon_sym_COLON, + anon_sym_PIPE, + [109696] = 4, + ACTIONS(3832), 1, + anon_sym_PIPE, + STATE(2067), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3566), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + [109712] = 6, + ACTIONS(1579), 1, + anon_sym_LBRACK, + ACTIONS(3752), 1, + anon_sym_LPAREN, + ACTIONS(3842), 1, + anon_sym_COLON, + STATE(2249), 1, + sym_type_parameter, + STATE(2690), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110142] = 2, + [109732] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3502), 5, + ACTIONS(3454), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_EQ, anon_sym_PIPE, - [110154] = 2, + [109744] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 5, + ACTIONS(3632), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [110166] = 4, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, + [109756] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3015), 3, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [110182] = 5, - ACTIONS(3538), 1, + ACTIONS(3647), 5, anon_sym_DOT, - ACTIONS(3540), 1, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(3542), 1, + anon_sym_EQ, anon_sym_PIPE, + [109768] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3855), 2, - sym__newline, - anon_sym_SEMI, - [110200] = 5, - ACTIONS(3504), 1, + ACTIONS(3454), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [109780] = 5, + ACTIONS(3516), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3520), 1, anon_sym_COLON, - ACTIONS(3512), 1, + ACTIONS(3524), 1, anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3536), 2, + ACTIONS(3470), 2, anon_sym_COMMA, anon_sym_RBRACK, - [110218] = 2, + [109798] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3857), 5, + ACTIONS(3466), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [110230] = 6, - ACTIONS(3180), 1, + [109810] = 6, + ACTIONS(3161), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3167), 1, anon_sym_or, - ACTIONS(3859), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [110250] = 5, - ACTIONS(3608), 1, - anon_sym_DOT, - ACTIONS(3610), 1, + ACTIONS(3844), 1, anon_sym_COLON, - ACTIONS(3612), 1, - anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3681), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [110268] = 4, - ACTIONS(3704), 1, + [109830] = 4, + ACTIONS(3756), 1, anon_sym_PIPE, - STATE(2111), 1, + STATE(2025), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3638), 3, + ACTIONS(3566), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - [110284] = 3, - STATE(2111), 1, - aux_sym_union_pattern_repeat1, + [109846] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3472), 4, - anon_sym_RPAREN, + ACTIONS(2878), 5, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [110298] = 2, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [109858] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3861), 5, + ACTIONS(3846), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [110310] = 5, - ACTIONS(3863), 1, - anon_sym_COMMA, - ACTIONS(3865), 1, - anon_sym_RBRACE, - STATE(2292), 1, - aux_sym_dict_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3311), 2, - anon_sym_COLON, - anon_sym_PIPE, - [110328] = 5, - ACTIONS(3736), 1, - anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_COLON, - ACTIONS(3742), 1, - anon_sym_PIPE, + [109870] = 3, + ACTIONS(3848), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3536), 2, + ACTIONS(3251), 4, anon_sym_COMMA, - anon_sym_EQ, - [110346] = 6, - ACTIONS(3182), 1, - anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3814), 1, anon_sym_as, - ACTIONS(3867), 1, - anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [109884] = 5, + ACTIONS(3344), 1, + sym_identifier, + STATE(2221), 1, + sym_dotted_name, + STATE(2433), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110366] = 4, - ACTIONS(3704), 1, - anon_sym_PIPE, - STATE(2121), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, + ACTIONS(3850), 2, + sym__newline, + anon_sym_SEMI, + [109902] = 6, + ACTIONS(3852), 1, + anon_sym_LBRACE, + ACTIONS(3854), 1, + anon_sym_RBRACE, + ACTIONS(3856), 1, + aux_sym_format_specifier_token1, + STATE(2041), 1, + aux_sym_format_specifier_repeat1, + STATE(2357), 1, + sym_interpolation, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3564), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [110382] = 2, + [109922] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3869), 5, + ACTIONS(3858), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [110394] = 2, + [109934] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3871), 5, + ACTIONS(3495), 5, anon_sym_COMMA, - anon_sym_as, anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [109946] = 6, + ACTIONS(3574), 1, + anon_sym_COMMA, + ACTIONS(3681), 1, + anon_sym_DOT, + ACTIONS(3683), 1, anon_sym_COLON, + ACTIONS(3685), 1, anon_sym_PIPE, - [110406] = 5, - ACTIONS(3875), 1, - anon_sym_COMMA, - ACTIONS(3877), 1, - anon_sym_as, - STATE(2217), 1, - aux_sym__import_list_repeat1, + ACTIONS(3860), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3873), 2, - sym__newline, - anon_sym_SEMI, - [110424] = 2, + [109966] = 6, + ACTIONS(3344), 1, + sym_identifier, + ACTIONS(3862), 1, + anon_sym_LPAREN, + STATE(1988), 1, + sym_dotted_name, + STATE(2113), 1, + sym_aliased_import, + STATE(2555), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3879), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [110436] = 2, + [109986] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3881), 5, + ACTIONS(3864), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [110448] = 6, - ACTIONS(3710), 1, + [109998] = 6, + ACTIONS(3852), 1, anon_sym_LBRACE, - ACTIONS(3883), 1, + ACTIONS(3866), 1, anon_sym_RBRACE, - ACTIONS(3885), 1, + ACTIONS(3868), 1, aux_sym_format_specifier_token1, - STATE(2039), 1, + STATE(2092), 1, aux_sym_format_specifier_repeat1, - STATE(2465), 1, + STATE(2357), 1, sym_interpolation, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [110468] = 2, + [110018] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3778), 5, + ACTIONS(3533), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [110030] = 5, + ACTIONS(3572), 1, + anon_sym_DOT, + ACTIONS(3576), 1, + anon_sym_COLON, + ACTIONS(3580), 1, anon_sym_PIPE, - [110480] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3887), 5, + ACTIONS(3574), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [110048] = 3, + STATE(2025), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3592), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, anon_sym_PIPE, - [110492] = 2, + [110062] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3889), 5, + ACTIONS(3870), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [110504] = 4, - ACTIONS(3891), 1, - anon_sym_PIPE, - STATE(2121), 1, - aux_sym_union_pattern_repeat1, + [110074] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3472), 3, - anon_sym_RPAREN, + ACTIONS(3870), 4, anon_sym_COMMA, anon_sym_as, - [110520] = 2, + anon_sym_PIPE, + anon_sym_RBRACE, + [110085] = 5, + ACTIONS(3711), 1, + anon_sym_COLON, + ACTIONS(3872), 1, + anon_sym_RBRACE, + ACTIONS(3874), 1, + sym_type_conversion, + STATE(2628), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 5, + [110102] = 5, + ACTIONS(3876), 1, + anon_sym_case, + ACTIONS(3878), 1, + sym__dedent, + STATE(2110), 1, + aux_sym__match_block_repeat1, + STATE(2533), 1, + sym_case_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [110119] = 4, + ACTIONS(3880), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [110532] = 6, - ACTIONS(3180), 1, - anon_sym_as, - ACTIONS(3182), 1, + STATE(2106), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3883), 2, anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3894), 1, - anon_sym_else, + anon_sym_COLON, + [110134] = 5, + ACTIONS(1579), 1, + anon_sym_LBRACK, + ACTIONS(3885), 1, + anon_sym_LPAREN, + STATE(2494), 1, + sym_parameters, + STATE(2497), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [110151] = 4, + ACTIONS(3233), 1, + anon_sym_COMMA, + STATE(2028), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3887), 2, + sym__newline, + anon_sym_SEMI, + [110166] = 4, + ACTIONS(3891), 1, + anon_sym_COMMA, + STATE(2117), 1, + aux_sym_global_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3889), 2, + sym__newline, + anon_sym_SEMI, + [110181] = 5, + ACTIONS(3876), 1, + anon_sym_case, + ACTIONS(3893), 1, + sym__dedent, + STATE(2152), 1, + aux_sym__match_block_repeat1, + STATE(2533), 1, + sym_case_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [110198] = 4, + ACTIONS(3895), 1, + anon_sym_COMMA, + STATE(2028), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1467), 2, + sym__newline, + anon_sym_SEMI, + [110213] = 4, + ACTIONS(3899), 1, + anon_sym_COMMA, + STATE(2112), 1, + aux_sym_print_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3897), 2, + sym__newline, + anon_sym_SEMI, + [110228] = 4, + ACTIONS(3689), 1, + anon_sym_COMMA, + STATE(2161), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3687), 2, + sym__newline, + anon_sym_SEMI, + [110243] = 5, + ACTIONS(3876), 1, + anon_sym_case, + ACTIONS(3902), 1, + sym__dedent, + STATE(2215), 1, + aux_sym__match_block_repeat1, + STATE(2533), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110552] = 2, + [110260] = 4, + ACTIONS(3891), 1, + anon_sym_COMMA, + STATE(2154), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3887), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [110563] = 2, + ACTIONS(3904), 2, + sym__newline, + anon_sym_SEMI, + [110275] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 4, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(3251), 2, + anon_sym_COLON, anon_sym_PIPE, + ACTIONS(3906), 2, + anon_sym_COMMA, anon_sym_RBRACE, - [110574] = 2, + [110288] = 4, + ACTIONS(3891), 1, + anon_sym_COMMA, + STATE(2154), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3726), 4, + ACTIONS(3908), 2, + sym__newline, + anon_sym_SEMI, + [110303] = 5, + ACTIONS(3910), 1, + anon_sym_RPAREN, + ACTIONS(3912), 1, anon_sym_COMMA, + ACTIONS(3914), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [110585] = 2, + STATE(2365), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3869), 4, + [110320] = 5, + ACTIONS(3916), 1, anon_sym_COMMA, + ACTIONS(3918), 1, anon_sym_as, + ACTIONS(3920), 1, anon_sym_RBRACK, - anon_sym_PIPE, - [110596] = 2, + STATE(2370), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3896), 4, - anon_sym_async, - anon_sym_def, - anon_sym_class, - anon_sym_AT, - [110607] = 2, + [110337] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3750), 4, + ACTIONS(3701), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110618] = 2, + [110348] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3764), 4, + ACTIONS(3709), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110629] = 5, - ACTIONS(3898), 1, - anon_sym_case, - ACTIONS(3900), 1, - sym__dedent, - STATE(2234), 1, - aux_sym__match_block_repeat1, - STATE(2567), 1, - sym_case_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [110646] = 2, + [110359] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3776), 4, + ACTIONS(3746), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110657] = 2, + [110370] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3780), 4, + ACTIONS(3803), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110668] = 2, + [110381] = 5, + ACTIONS(3681), 1, + anon_sym_DOT, + ACTIONS(3683), 1, + anon_sym_COLON, + ACTIONS(3685), 1, + anon_sym_PIPE, + ACTIONS(3922), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3792), 4, - anon_sym_COMMA, + [110398] = 5, + ACTIONS(3914), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [110679] = 2, + ACTIONS(3924), 1, + anon_sym_RPAREN, + ACTIONS(3926), 1, + anon_sym_COMMA, + STATE(2391), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [110415] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3778), 4, + ACTIONS(3672), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110690] = 2, + [110426] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3805), 4, + ACTIONS(3858), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110701] = 2, + [110437] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 4, + ACTIONS(3864), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110712] = 2, + [110448] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3857), 4, + ACTIONS(3705), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110723] = 2, + [110459] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3861), 4, + ACTIONS(3707), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110734] = 2, + [110470] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3696), 4, + ACTIONS(3732), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110745] = 2, + [110481] = 4, + ACTIONS(3930), 1, + anon_sym_DOT, + STATE(2173), 1, + aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3871), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [110756] = 2, + ACTIONS(3928), 2, + anon_sym_import, + sym_identifier, + [110496] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3879), 4, + ACTIONS(3703), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110767] = 2, + [110507] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3881), 4, + ACTIONS(3734), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110778] = 2, + [110518] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3887), 4, + ACTIONS(3773), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110789] = 2, + [110529] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3889), 4, + ACTIONS(3822), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110800] = 2, + [110540] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3716), 4, + ACTIONS(3840), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110811] = 2, + [110551] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3732), 4, + ACTIONS(3679), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110822] = 2, + [110562] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3746), 4, + ACTIONS(3765), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110833] = 2, + [110573] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3786), 4, + ACTIONS(3846), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110844] = 2, + [110584] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3790), 4, + ACTIONS(3830), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110855] = 2, + [110595] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3724), 4, + ACTIONS(3801), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110866] = 2, + [110606] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3726), 4, + ACTIONS(3677), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110877] = 5, - ACTIONS(3902), 1, - anon_sym_RPAREN, - ACTIONS(3904), 1, - anon_sym_COMMA, - ACTIONS(3906), 1, - anon_sym_as, - STATE(2341), 1, - aux_sym_case_clause_repeat1, + [110617] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110894] = 5, - ACTIONS(3908), 1, + ACTIONS(3719), 4, anon_sym_COMMA, - ACTIONS(3910), 1, anon_sym_as, - ACTIONS(3912), 1, anon_sym_RBRACK, - STATE(2351), 1, - aux_sym_case_clause_repeat1, + anon_sym_PIPE, + [110628] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110911] = 4, - ACTIONS(3916), 1, + ACTIONS(3870), 4, anon_sym_COMMA, - STATE(2175), 1, - aux_sym_print_statement_repeat1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [110639] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3914), 2, - sym__newline, - anon_sym_SEMI, - [110926] = 4, - ACTIONS(3920), 1, + ACTIONS(3740), 4, anon_sym_COMMA, - STATE(2155), 1, - aux_sym_print_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3918), 2, - sym__newline, - anon_sym_SEMI, - [110941] = 4, - ACTIONS(3924), 1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [110650] = 4, + ACTIONS(3934), 1, anon_sym_COMMA, - STATE(2175), 1, + STATE(2214), 1, aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3922), 2, + ACTIONS(3932), 2, sym__newline, anon_sym_SEMI, - [110956] = 5, - ACTIONS(3752), 1, + [110665] = 5, + ACTIONS(3914), 1, + anon_sym_as, + ACTIONS(3936), 1, anon_sym_RPAREN, - ACTIONS(3926), 1, - sym_identifier, - STATE(2274), 1, - sym_dotted_name, - STATE(2606), 1, - sym_aliased_import, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [110973] = 4, - ACTIONS(3263), 1, + ACTIONS(3938), 1, anon_sym_COMMA, - STATE(2052), 1, - aux_sym_assert_statement_repeat1, + STATE(2260), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3928), 2, - sym__newline, - anon_sym_SEMI, - [110988] = 5, - ACTIONS(3906), 1, + [110682] = 5, + ACTIONS(3918), 1, anon_sym_as, - ACTIONS(3930), 1, - anon_sym_RPAREN, - ACTIONS(3932), 1, + ACTIONS(3940), 1, anon_sym_COMMA, - STATE(2285), 1, + ACTIONS(3942), 1, + anon_sym_RBRACK, + STATE(2261), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111005] = 3, - ACTIONS(3518), 1, - anon_sym_as, + [110699] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3934), 3, + ACTIONS(3610), 4, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - [111018] = 2, + [110710] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3936), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [111029] = 5, - ACTIONS(3906), 1, + ACTIONS(3944), 4, + anon_sym_async, + anon_sym_def, + anon_sym_class, + anon_sym_AT, + [110721] = 5, + ACTIONS(3946), 1, + anon_sym_case, + ACTIONS(3949), 1, + sym__dedent, + STATE(2152), 1, + aux_sym__match_block_repeat1, + STATE(2533), 1, + sym_case_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [110738] = 5, + ACTIONS(3914), 1, anon_sym_as, - ACTIONS(3938), 1, + ACTIONS(3951), 1, anon_sym_RPAREN, - ACTIONS(3940), 1, + ACTIONS(3953), 1, anon_sym_COMMA, - STATE(2410), 1, + STATE(2264), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111046] = 4, - ACTIONS(3942), 1, + [110755] = 4, + ACTIONS(3957), 1, anon_sym_COMMA, - STATE(2164), 1, - aux_sym_case_clause_repeat1, + STATE(2154), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3934), 2, - anon_sym_if, - anon_sym_COLON, - [111061] = 2, + ACTIONS(3955), 2, + sym__newline, + anon_sym_SEMI, + [110770] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3869), 4, + ACTIONS(3701), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111072] = 2, + [110781] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3750), 4, + ACTIONS(3709), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111083] = 2, + [110792] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3764), 4, + ACTIONS(3746), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111094] = 2, + [110803] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3776), 4, + ACTIONS(3803), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111105] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3780), 4, + [110814] = 5, + ACTIONS(3687), 1, + anon_sym_RPAREN, + ACTIONS(3960), 1, anon_sym_COMMA, + ACTIONS(3962), 1, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [111116] = 2, + STATE(2375), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3792), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [111127] = 2, + [110831] = 5, + ACTIONS(3344), 1, + sym_identifier, + STATE(1988), 1, + sym_dotted_name, + STATE(2113), 1, + sym_aliased_import, + STATE(2573), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3778), 4, - anon_sym_RPAREN, + [110848] = 4, + ACTIONS(3966), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [111138] = 2, + STATE(2222), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3805), 4, + ACTIONS(3964), 2, + sym__newline, + anon_sym_SEMI, + [110863] = 4, + ACTIONS(3968), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [111149] = 4, - ACTIONS(3947), 1, - anon_sym_DOT, - STATE(2173), 1, - aux_sym_import_prefix_repeat1, + STATE(2222), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3945), 2, - anon_sym_import, - sym_identifier, - [111164] = 2, + ACTIONS(3964), 2, + sym__newline, + anon_sym_SEMI, + [110878] = 5, + ACTIONS(3914), 1, + anon_sym_as, + ACTIONS(3970), 1, + anon_sym_RPAREN, + ACTIONS(3972), 1, + anon_sym_COMMA, + STATE(2304), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 4, - anon_sym_RPAREN, - anon_sym_COMMA, + [110895] = 5, + ACTIONS(3918), 1, anon_sym_as, - anon_sym_PIPE, - [111175] = 4, - ACTIONS(3952), 1, + ACTIONS(3974), 1, anon_sym_COMMA, - STATE(2175), 1, - aux_sym_print_statement_repeat1, + ACTIONS(3976), 1, + anon_sym_RBRACK, + STATE(2306), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3950), 2, - sym__newline, - anon_sym_SEMI, - [111190] = 2, + [110912] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3726), 4, + ACTIONS(3672), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111201] = 2, + [110923] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3857), 4, + ACTIONS(3858), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111212] = 2, + [110934] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3861), 4, + ACTIONS(3864), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111223] = 2, + [110945] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3696), 4, + ACTIONS(3705), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111234] = 2, + [110956] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3871), 4, + ACTIONS(3707), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111245] = 2, + [110967] = 5, + ACTIONS(3914), 1, + anon_sym_as, + ACTIONS(3978), 1, + anon_sym_RPAREN, + ACTIONS(3980), 1, + anon_sym_COMMA, + STATE(2314), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3879), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [111256] = 2, + [110984] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3881), 4, + ACTIONS(3732), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111267] = 2, + [110995] = 5, + ACTIONS(3574), 1, + anon_sym_COMMA, + ACTIONS(3681), 1, + anon_sym_DOT, + ACTIONS(3683), 1, + anon_sym_COLON, + ACTIONS(3685), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3887), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [111278] = 3, + [111012] = 4, + ACTIONS(3984), 1, + anon_sym_DOT, + STATE(2173), 1, + aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3311), 2, + ACTIONS(3982), 2, + anon_sym_import, + sym_identifier, + [111027] = 4, + ACTIONS(3989), 1, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3955), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [111291] = 2, + ACTIONS(3991), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3889), 4, + ACTIONS(3987), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [111302] = 2, + [111042] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3716), 4, + ACTIONS(3993), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [111313] = 2, + anon_sym_if, + anon_sym_COLON, + [111053] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3732), 4, + ACTIONS(3734), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111324] = 2, + [111064] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3746), 4, + ACTIONS(3773), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111335] = 2, + [111075] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3786), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [111346] = 5, - ACTIONS(3906), 1, - anon_sym_as, - ACTIONS(3957), 1, + ACTIONS(3822), 4, anon_sym_RPAREN, - ACTIONS(3959), 1, anon_sym_COMMA, - STATE(2289), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111363] = 5, - ACTIONS(3910), 1, anon_sym_as, - ACTIONS(3961), 1, - anon_sym_COMMA, - ACTIONS(3963), 1, - anon_sym_RBRACK, - STATE(2290), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111380] = 2, + anon_sym_PIPE, + [111086] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3790), 4, + ACTIONS(3840), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111391] = 2, + [111097] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3724), 4, + ACTIONS(3679), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111402] = 5, - ACTIONS(3906), 1, - anon_sym_as, - ACTIONS(3965), 1, - anon_sym_RPAREN, - ACTIONS(3967), 1, - anon_sym_COMMA, - STATE(2294), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111419] = 5, - ACTIONS(1579), 1, - anon_sym_LBRACK, - ACTIONS(3969), 1, - anon_sym_LPAREN, - STATE(2527), 1, - sym_parameters, - STATE(2553), 1, - sym_type_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111436] = 2, + [111108] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3869), 4, + ACTIONS(3765), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [111447] = 4, - ACTIONS(3973), 1, - anon_sym_COMMA, - STATE(2238), 1, - aux_sym_global_statement_repeat1, + [111119] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3971), 2, - sym__newline, - anon_sym_SEMI, - [111462] = 5, - ACTIONS(3752), 1, + ACTIONS(3846), 4, anon_sym_RPAREN, - ACTIONS(3926), 1, - sym_identifier, - STATE(2274), 1, - sym_dotted_name, - STATE(2606), 1, - sym_aliased_import, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111479] = 4, - ACTIONS(3973), 1, - anon_sym_COMMA, - STATE(2239), 1, - aux_sym_global_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3975), 2, - sym__newline, - anon_sym_SEMI, - [111494] = 4, - ACTIONS(3977), 1, anon_sym_COMMA, - STATE(2052), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1445), 2, - sym__newline, - anon_sym_SEMI, - [111509] = 5, - ACTIONS(1579), 1, - anon_sym_LBRACK, - ACTIONS(3969), 1, - anon_sym_LPAREN, - STATE(2600), 1, - sym_parameters, - STATE(2602), 1, - sym_type_parameter, + anon_sym_as, + anon_sym_PIPE, + [111130] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111526] = 5, - ACTIONS(3906), 1, - anon_sym_as, - ACTIONS(3979), 1, + ACTIONS(3830), 4, anon_sym_RPAREN, - ACTIONS(3981), 1, anon_sym_COMMA, - STATE(2331), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111543] = 5, - ACTIONS(3910), 1, anon_sym_as, - ACTIONS(3983), 1, - anon_sym_COMMA, - ACTIONS(3985), 1, - anon_sym_RBRACK, - STATE(2333), 1, - aux_sym_case_clause_repeat1, + anon_sym_PIPE, + [111141] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111560] = 5, - ACTIONS(3906), 1, - anon_sym_as, - ACTIONS(3987), 1, + ACTIONS(3801), 4, anon_sym_RPAREN, - ACTIONS(3989), 1, anon_sym_COMMA, - STATE(2340), 1, - aux_sym_case_clause_repeat1, + anon_sym_as, + anon_sym_PIPE, + [111152] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111577] = 5, - ACTIONS(3681), 1, + ACTIONS(3677), 4, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3736), 1, - anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_COLON, - ACTIONS(3742), 1, + anon_sym_as, anon_sym_PIPE, + [111163] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111594] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3750), 4, + ACTIONS(3719), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111605] = 5, - ACTIONS(3898), 1, - anon_sym_case, - ACTIONS(3991), 1, - sym__dedent, - STATE(2234), 1, - aux_sym__match_block_repeat1, - STATE(2567), 1, - sym_case_clause, + [111174] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111622] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3764), 4, + ACTIONS(3870), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111633] = 4, - ACTIONS(3263), 1, + [111185] = 5, + ACTIONS(3914), 1, + anon_sym_as, + ACTIONS(3995), 1, + anon_sym_RPAREN, + ACTIONS(3997), 1, anon_sym_COMMA, - STATE(2052), 1, - aux_sym_assert_statement_repeat1, + STATE(2442), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3993), 2, - sym__newline, - anon_sym_SEMI, - [111648] = 2, + [111202] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3776), 4, + ACTIONS(3740), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111659] = 2, + [111213] = 5, + ACTIONS(3918), 1, + anon_sym_as, + ACTIONS(3999), 1, + anon_sym_COMMA, + ACTIONS(4001), 1, + anon_sym_RBRACK, + STATE(2446), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3780), 4, - anon_sym_RPAREN, + [111230] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3701), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111670] = 2, + anon_sym_RBRACE, + [111241] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3792), 4, - anon_sym_RPAREN, + ACTIONS(3746), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111681] = 2, + anon_sym_RBRACE, + [111252] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3805), 4, - anon_sym_RPAREN, + ACTIONS(3803), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111692] = 5, - ACTIONS(3873), 1, + anon_sym_RBRACE, + [111263] = 5, + ACTIONS(3850), 1, anon_sym_RPAREN, - ACTIONS(3995), 1, - anon_sym_COMMA, - ACTIONS(3997), 1, - anon_sym_as, - STATE(2454), 1, - aux_sym__import_list_repeat1, + ACTIONS(4003), 1, + sym_identifier, + STATE(2458), 1, + sym_dotted_name, + STATE(2564), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111709] = 5, - ACTIONS(3898), 1, - anon_sym_case, - ACTIONS(3999), 1, - sym__dedent, - STATE(2207), 1, - aux_sym__match_block_repeat1, - STATE(2567), 1, - sym_case_clause, + [111280] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111726] = 4, - ACTIONS(4003), 1, + ACTIONS(3672), 4, anon_sym_COMMA, - STATE(2230), 1, - aux_sym__import_list_repeat1, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [111291] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4001), 2, - sym__newline, - anon_sym_SEMI, - [111741] = 4, - ACTIONS(4005), 1, + ACTIONS(3858), 4, anon_sym_COMMA, - STATE(2230), 1, - aux_sym__import_list_repeat1, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [111302] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4001), 2, - sym__newline, - anon_sym_SEMI, - [111756] = 4, - ACTIONS(3875), 1, + ACTIONS(3864), 4, anon_sym_COMMA, - STATE(2216), 1, - aux_sym__import_list_repeat1, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [111313] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3873), 2, - sym__newline, - anon_sym_SEMI, - [111771] = 2, + ACTIONS(3705), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [111324] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3857), 4, - anon_sym_RPAREN, + ACTIONS(3707), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111782] = 2, + anon_sym_RBRACE, + [111335] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3861), 4, - anon_sym_RPAREN, + ACTIONS(3732), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111793] = 2, + anon_sym_RBRACE, + [111346] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3696), 4, - anon_sym_RPAREN, + ACTIONS(3703), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111804] = 2, + anon_sym_RBRACE, + [111357] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3871), 4, - anon_sym_RPAREN, + ACTIONS(3734), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111815] = 2, + anon_sym_RBRACE, + [111368] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3879), 4, - anon_sym_RPAREN, + ACTIONS(3773), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111826] = 5, - ACTIONS(3756), 1, - anon_sym_COLON, - ACTIONS(4007), 1, anon_sym_RBRACE, - ACTIONS(4009), 1, - sym_type_conversion, - STATE(2744), 1, - sym_format_specifier, + [111379] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111843] = 2, + ACTIONS(3822), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [111390] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3524), 4, + ACTIONS(3840), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [111854] = 2, + anon_sym_PIPE, + anon_sym_RBRACE, + [111401] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3881), 4, - anon_sym_RPAREN, + ACTIONS(3679), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111865] = 4, - ACTIONS(4013), 1, - anon_sym_COLON, - ACTIONS(4015), 1, - anon_sym_EQ, + anon_sym_RBRACE, + [111412] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4011), 2, - anon_sym_RPAREN, + ACTIONS(3765), 4, anon_sym_COMMA, - [111880] = 2, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [111423] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3889), 4, - anon_sym_RPAREN, + ACTIONS(3846), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111891] = 3, - ACTIONS(3877), 1, - anon_sym_as, + anon_sym_RBRACE, + [111434] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4017), 3, - sym__newline, - anon_sym_SEMI, + ACTIONS(3830), 4, anon_sym_COMMA, - [111904] = 4, - ACTIONS(4021), 1, - anon_sym_COMMA, - STATE(2230), 1, - aux_sym__import_list_repeat1, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [111445] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4019), 2, - sym__newline, - anon_sym_SEMI, - [111919] = 5, - ACTIONS(3926), 1, - sym_identifier, - STATE(2214), 1, - sym_dotted_name, - STATE(2372), 1, - sym_aliased_import, - STATE(2706), 1, - sym__import_list, + ACTIONS(3801), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [111456] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111936] = 5, - ACTIONS(3926), 1, - sym_identifier, - STATE(2214), 1, - sym_dotted_name, - STATE(2372), 1, - sym_aliased_import, - STATE(2730), 1, - sym__import_list, + ACTIONS(3677), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [111467] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111953] = 2, + ACTIONS(3719), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [111478] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3716), 4, - anon_sym_RPAREN, + ACTIONS(3740), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111964] = 5, - ACTIONS(4024), 1, + anon_sym_RBRACE, + [111489] = 4, + ACTIONS(4007), 1, + anon_sym_COMMA, + STATE(2112), 1, + aux_sym_print_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4005), 2, + sym__newline, + anon_sym_SEMI, + [111504] = 5, + ACTIONS(3876), 1, anon_sym_case, - ACTIONS(4027), 1, + ACTIONS(4009), 1, sym__dedent, - STATE(2234), 1, + STATE(2152), 1, aux_sym__match_block_repeat1, - STATE(2567), 1, + STATE(2533), 1, sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111981] = 2, + [111521] = 4, + ACTIONS(4013), 1, + anon_sym_COMMA, + STATE(2112), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3732), 4, - anon_sym_RPAREN, + ACTIONS(4011), 2, + sym__newline, + anon_sym_SEMI, + [111536] = 4, + ACTIONS(3233), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [111992] = 2, + STATE(2028), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3746), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [112003] = 5, - ACTIONS(3766), 1, - anon_sym_RPAREN, - ACTIONS(3926), 1, - sym_identifier, - STATE(2274), 1, - sym_dotted_name, - STATE(2606), 1, - sym_aliased_import, + ACTIONS(4015), 2, + sym__newline, + anon_sym_SEMI, + [111551] = 5, + ACTIONS(1579), 1, + anon_sym_LBRACK, + ACTIONS(3885), 1, + anon_sym_LPAREN, + STATE(2515), 1, + sym_type_parameter, + STATE(2552), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112020] = 4, - ACTIONS(3973), 1, - anon_sym_COMMA, - STATE(2245), 1, - aux_sym_global_statement_repeat1, + [111568] = 5, + ACTIONS(3711), 1, + anon_sym_COLON, + ACTIONS(4017), 1, + anon_sym_RBRACE, + ACTIONS(4019), 1, + sym_type_conversion, + STATE(2612), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4029), 2, - sym__newline, - anon_sym_SEMI, - [112035] = 4, - ACTIONS(3973), 1, + [111585] = 4, + ACTIONS(3891), 1, anon_sym_COMMA, - STATE(2245), 1, + STATE(2115), 1, aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4031), 2, + ACTIONS(4021), 2, sym__newline, anon_sym_SEMI, - [112050] = 2, + [111600] = 3, + ACTIONS(3691), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3786), 4, - anon_sym_RPAREN, + ACTIONS(4023), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [112061] = 5, - ACTIONS(3906), 1, - anon_sym_as, - ACTIONS(4033), 1, - anon_sym_RPAREN, - ACTIONS(4035), 1, + [111613] = 4, + ACTIONS(4027), 1, anon_sym_COMMA, - STATE(2255), 1, - aux_sym_case_clause_repeat1, + STATE(2222), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112078] = 2, + ACTIONS(4025), 2, + sym__newline, + anon_sym_SEMI, + [111628] = 5, + ACTIONS(4003), 1, + sym_identifier, + STATE(2159), 1, + sym_dotted_name, + STATE(2274), 1, + sym_aliased_import, + STATE(2759), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3790), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [112089] = 2, + [111645] = 5, + ACTIONS(4003), 1, + sym_identifier, + STATE(2159), 1, + sym_dotted_name, + STATE(2274), 1, + sym_aliased_import, + STATE(2583), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3724), 4, + [111662] = 5, + ACTIONS(3783), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [112100] = 5, - ACTIONS(3910), 1, - anon_sym_as, - ACTIONS(4037), 1, - anon_sym_COMMA, - ACTIONS(4039), 1, - anon_sym_RBRACK, - STATE(2266), 1, - aux_sym_case_clause_repeat1, + ACTIONS(4003), 1, + sym_identifier, + STATE(2458), 1, + sym_dotted_name, + STATE(2564), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112117] = 4, - ACTIONS(4043), 1, - anon_sym_COMMA, - STATE(2245), 1, - aux_sym_global_statement_repeat1, + [111679] = 5, + ACTIONS(3783), 1, + anon_sym_RPAREN, + ACTIONS(4003), 1, + sym_identifier, + STATE(2458), 1, + sym_dotted_name, + STATE(2564), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4041), 2, - sym__newline, - anon_sym_SEMI, - [112132] = 5, + [111696] = 5, ACTIONS(1579), 1, anon_sym_LBRACK, - ACTIONS(3969), 1, + ACTIONS(3885), 1, anon_sym_LPAREN, - STATE(2585), 1, + STATE(2548), 1, sym_parameters, - STATE(2607), 1, + STATE(2576), 1, sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112149] = 5, + [111713] = 5, ACTIONS(1579), 1, anon_sym_LBRACK, - ACTIONS(3969), 1, + ACTIONS(3885), 1, anon_sym_LPAREN, - STATE(2586), 1, + STATE(2550), 1, sym_parameters, - STATE(2609), 1, + STATE(2578), 1, sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112166] = 5, - ACTIONS(3736), 1, - anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_COLON, - ACTIONS(3742), 1, - anon_sym_PIPE, - ACTIONS(4046), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112183] = 5, - ACTIONS(3756), 1, - anon_sym_COLON, - ACTIONS(4048), 1, - anon_sym_RBRACE, - ACTIONS(4050), 1, - sym_type_conversion, - STATE(2720), 1, - sym_format_specifier, + [111730] = 5, + ACTIONS(3914), 1, + anon_sym_as, + ACTIONS(4030), 1, + anon_sym_RPAREN, + ACTIONS(4032), 1, + anon_sym_COMMA, + STATE(2353), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112200] = 5, - ACTIONS(3391), 1, - sym_identifier, - STATE(2114), 1, - sym_dotted_name, - STATE(2218), 1, - sym_aliased_import, - STATE(2522), 1, - sym__import_list, + [111747] = 3, + ACTIONS(3482), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112217] = 5, - ACTIONS(3898), 1, - anon_sym_case, - ACTIONS(4052), 1, - sym__dedent, - STATE(2131), 1, - aux_sym__match_block_repeat1, - STATE(2567), 1, - sym_case_clause, + ACTIONS(3883), 3, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + [111760] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112234] = 4, - ACTIONS(4056), 1, - anon_sym_DOT, - STATE(2173), 1, - aux_sym_import_prefix_repeat1, + ACTIONS(3703), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [111771] = 4, + ACTIONS(4034), 1, + anon_sym_RPAREN, + ACTIONS(4036), 1, + anon_sym_COMMA, + STATE(2366), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4054), 2, - anon_sym_import, - sym_identifier, - [112249] = 4, - ACTIONS(3736), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_PIPE, - ACTIONS(4058), 1, - anon_sym_COLON, + [111785] = 4, + ACTIONS(3241), 1, + anon_sym_COMMA, + ACTIONS(3243), 1, + anon_sym_RBRACK, + STATE(2387), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112263] = 4, - ACTIONS(3433), 1, + [111799] = 4, + ACTIONS(3411), 1, anon_sym_COMMA, - ACTIONS(3435), 1, + ACTIONS(3413), 1, anon_sym_RBRACE, - STATE(2261), 1, + STATE(2240), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112277] = 4, - ACTIONS(2672), 1, - anon_sym_RPAREN, - ACTIONS(4060), 1, - anon_sym_COMMA, - STATE(2373), 1, - aux_sym_case_clause_repeat1, + [111813] = 4, + ACTIONS(3681), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + anon_sym_PIPE, + ACTIONS(4038), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112291] = 4, - ACTIONS(3391), 1, - sym_identifier, - STATE(2229), 1, - sym_dotted_name, - STATE(2432), 1, - sym_aliased_import, + [111827] = 4, + ACTIONS(1011), 1, + anon_sym_RBRACK, + ACTIONS(4040), 1, + anon_sym_COMMA, + STATE(2298), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112305] = 4, - ACTIONS(637), 1, + [111841] = 4, + ACTIONS(615), 1, sym__newline, - ACTIONS(4062), 1, + ACTIONS(4042), 1, anon_sym_SEMI, - STATE(2448), 1, + STATE(2300), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112319] = 4, - ACTIONS(3056), 1, + [111855] = 4, + ACTIONS(3010), 1, anon_sym_COMMA, - ACTIONS(4064), 1, + ACTIONS(4044), 1, anon_sym_RPAREN, - STATE(2382), 1, + STATE(2346), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112333] = 4, - ACTIONS(3056), 1, + [111869] = 4, + ACTIONS(3010), 1, anon_sym_COMMA, - ACTIONS(4066), 1, + ACTIONS(4046), 1, anon_sym_RPAREN, - STATE(2382), 1, + STATE(2346), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112347] = 4, - ACTIONS(3528), 1, - anon_sym_RPAREN, - ACTIONS(4068), 1, - anon_sym_COMMA, - STATE(2260), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112361] = 4, - ACTIONS(1357), 1, - anon_sym_RBRACE, - ACTIONS(4071), 1, - anon_sym_COMMA, - STATE(2301), 1, - aux_sym_dictionary_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112375] = 4, - ACTIONS(4073), 1, - anon_sym_COMMA, - ACTIONS(4075), 1, - anon_sym_in, - STATE(2486), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112389] = 4, - ACTIONS(1339), 1, + [111883] = 4, + ACTIONS(1323), 1, anon_sym_RBRACE, - ACTIONS(4077), 1, + ACTIONS(4048), 1, anon_sym_COMMA, - STATE(2301), 1, + STATE(2293), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112403] = 4, - ACTIONS(3079), 1, + [111897] = 4, + ACTIONS(3034), 1, anon_sym_RPAREN, - ACTIONS(3081), 1, + ACTIONS(3036), 1, anon_sym_COMMA, - STATE(2273), 1, + STATE(2248), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112417] = 4, - ACTIONS(4079), 1, + [111911] = 4, + ACTIONS(4050), 1, anon_sym_RPAREN, - ACTIONS(4081), 1, + ACTIONS(4052), 1, anon_sym_COMMA, - STATE(2275), 1, + STATE(2250), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112431] = 4, - ACTIONS(2674), 1, - anon_sym_RBRACK, - ACTIONS(4083), 1, - anon_sym_COMMA, - STATE(2481), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112445] = 4, - ACTIONS(3241), 1, - anon_sym_COMMA, - ACTIONS(3245), 1, - anon_sym_RBRACK, - STATE(2277), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, + [111925] = 3, + ACTIONS(3643), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [112459] = 4, - ACTIONS(4085), 1, - anon_sym_COMMA, - ACTIONS(4087), 1, - anon_sym_COLON, - STATE(2466), 1, - aux_sym_match_statement_repeat1, - ACTIONS(3), 2, + ACTIONS(3645), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [111937] = 3, + ACTIONS(3558), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [112473] = 4, - ACTIONS(3056), 1, + ACTIONS(3560), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [111949] = 4, + ACTIONS(3227), 1, anon_sym_COMMA, - ACTIONS(4089), 1, - anon_sym_RPAREN, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112487] = 4, - ACTIONS(3736), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_PIPE, - ACTIONS(4091), 1, - anon_sym_COLON, + ACTIONS(3229), 1, + anon_sym_RBRACK, + STATE(2252), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112501] = 4, - ACTIONS(3056), 1, - anon_sym_COMMA, - ACTIONS(4093), 1, - anon_sym_RPAREN, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, + [111963] = 3, + ACTIONS(3622), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [112515] = 3, - ACTIONS(4097), 1, - anon_sym_as, + ACTIONS(3624), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [111975] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4095), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [112527] = 4, - ACTIONS(1201), 1, + ACTIONS(2453), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_in, + [111985] = 4, + ACTIONS(1171), 1, anon_sym_RPAREN, - ACTIONS(4099), 1, + ACTIONS(4054), 1, anon_sym_COMMA, - STATE(2260), 1, + STATE(2269), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112541] = 3, - ACTIONS(3997), 1, - anon_sym_as, + [111999] = 4, + ACTIONS(3752), 1, + anon_sym_LPAREN, + ACTIONS(4056), 1, + anon_sym_COLON, + STATE(2606), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4017), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [112553] = 4, - ACTIONS(1211), 1, + [112013] = 4, + ACTIONS(1173), 1, anon_sym_RPAREN, - ACTIONS(4101), 1, + ACTIONS(4058), 1, anon_sym_COMMA, - STATE(2260), 1, + STATE(2269), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112567] = 4, - ACTIONS(4103), 1, + [112027] = 4, + ACTIONS(4060), 1, anon_sym_COMMA, - ACTIONS(4105), 1, + ACTIONS(4062), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2348), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112581] = 4, - ACTIONS(4107), 1, + [112041] = 4, + ACTIONS(4064), 1, anon_sym_COMMA, - ACTIONS(4109), 1, + ACTIONS(4066), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2348), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112595] = 4, - ACTIONS(4111), 1, - anon_sym_COMMA, - ACTIONS(4113), 1, - anon_sym_RBRACE, - STATE(2281), 1, - aux_sym_dict_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112609] = 4, - ACTIONS(4073), 1, - anon_sym_COMMA, - ACTIONS(4115), 1, - anon_sym_in, - STATE(2486), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112623] = 4, - ACTIONS(1045), 1, + [112055] = 4, + ACTIONS(1001), 1, anon_sym_RBRACK, - ACTIONS(4117), 1, + ACTIONS(4068), 1, anon_sym_COMMA, - STATE(2316), 1, + STATE(2298), 1, aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112637] = 4, - ACTIONS(4119), 1, - anon_sym_COMMA, - ACTIONS(4122), 1, - anon_sym_RBRACE, - STATE(2281), 1, - aux_sym_dict_pattern_repeat1, + [112069] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112651] = 4, - ACTIONS(4124), 1, + ACTIONS(3610), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4126), 1, - anon_sym_RBRACE, - STATE(2281), 1, - aux_sym_dict_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112665] = 4, - ACTIONS(4128), 1, + anon_sym_as, + [112079] = 4, + ACTIONS(1459), 1, + anon_sym_RPAREN, + ACTIONS(4070), 1, anon_sym_COMMA, - ACTIONS(4131), 1, - anon_sym_RBRACK, - STATE(2283), 1, - aux_sym_subscript_repeat1, + STATE(2380), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112679] = 4, - ACTIONS(1025), 1, - anon_sym_RBRACK, - ACTIONS(4133), 1, + [112093] = 4, + ACTIONS(1423), 1, + anon_sym_COLON, + ACTIONS(4072), 1, anon_sym_COMMA, - STATE(2316), 1, - aux_sym_type_parameter_repeat1, + STATE(2259), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112693] = 4, - ACTIONS(2702), 1, + [112107] = 4, + ACTIONS(4074), 1, anon_sym_RPAREN, - ACTIONS(4135), 1, - anon_sym_COMMA, - STATE(2373), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112707] = 4, - ACTIONS(4137), 1, + ACTIONS(4076), 1, anon_sym_COMMA, - ACTIONS(4139), 1, - anon_sym_RBRACE, - STATE(2360), 1, - aux_sym_dict_pattern_repeat1, + STATE(2257), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112721] = 4, - ACTIONS(4141), 1, + [112121] = 4, + ACTIONS(4079), 1, anon_sym_COMMA, - ACTIONS(4143), 1, + ACTIONS(4081), 1, anon_sym_RBRACE, - STATE(2291), 1, + STATE(2262), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112735] = 4, - ACTIONS(1215), 1, - anon_sym_RPAREN, - ACTIONS(4145), 1, + [112135] = 4, + ACTIONS(4083), 1, anon_sym_COMMA, - STATE(2260), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4086), 1, + anon_sym_COLON, + STATE(2259), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112749] = 4, - ACTIONS(2706), 1, + [112149] = 4, + ACTIONS(2634), 1, anon_sym_RPAREN, - ACTIONS(4147), 1, + ACTIONS(4088), 1, anon_sym_COMMA, - STATE(2373), 1, + STATE(2313), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112763] = 4, - ACTIONS(2708), 1, + [112163] = 4, + ACTIONS(2636), 1, anon_sym_RBRACK, - ACTIONS(4149), 1, + ACTIONS(4090), 1, anon_sym_COMMA, - STATE(2481), 1, + STATE(2414), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112777] = 4, - ACTIONS(4151), 1, + [112177] = 4, + ACTIONS(4092), 1, anon_sym_COMMA, - ACTIONS(4153), 1, + ACTIONS(4094), 1, anon_sym_RBRACE, - STATE(2281), 1, + STATE(2326), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112791] = 4, - ACTIONS(4155), 1, + [112191] = 4, + ACTIONS(4096), 1, anon_sym_COMMA, - ACTIONS(4157), 1, + ACTIONS(4098), 1, anon_sym_RBRACE, - STATE(2281), 1, + STATE(2326), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112805] = 4, - ACTIONS(4073), 1, - anon_sym_COMMA, - ACTIONS(4159), 1, - anon_sym_in, - STATE(2486), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112819] = 4, - ACTIONS(2622), 1, + [112205] = 4, + ACTIONS(2644), 1, anon_sym_RPAREN, - ACTIONS(4161), 1, + ACTIONS(4100), 1, anon_sym_COMMA, - STATE(2373), 1, + STATE(2313), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112833] = 2, + [112219] = 4, + ACTIONS(3681), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + anon_sym_PIPE, + ACTIONS(4102), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112233] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 3, + ACTIONS(3955), 3, sym__newline, anon_sym_SEMI, - anon_sym_in, - [112843] = 4, - ACTIONS(1465), 1, - anon_sym_RPAREN, - ACTIONS(4163), 1, anon_sym_COMMA, - STATE(2437), 1, - aux_sym_with_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112857] = 2, - ACTIONS(3), 2, + [112243] = 3, + ACTIONS(3509), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1686), 3, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [112867] = 4, - ACTIONS(1299), 1, - anon_sym_COLON, - ACTIONS(4165), 1, + ACTIONS(3511), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [112255] = 4, + ACTIONS(1309), 1, + anon_sym_RBRACE, + ACTIONS(4104), 1, anon_sym_COMMA, - STATE(2323), 1, - aux_sym_assert_statement_repeat1, + STATE(2293), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112881] = 4, - ACTIONS(4167), 1, + [112269] = 4, + ACTIONS(3626), 1, + anon_sym_RPAREN, + ACTIONS(4106), 1, anon_sym_COMMA, - ACTIONS(4169), 1, - anon_sym_COLON, - STATE(2415), 1, - aux_sym__parameters_repeat1, + STATE(2269), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112895] = 4, - ACTIONS(4171), 1, + [112283] = 4, + ACTIONS(4109), 1, anon_sym_SEMI, - ACTIONS(4173), 1, + ACTIONS(4111), 1, sym__newline, - STATE(2307), 1, + STATE(2279), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112909] = 4, - ACTIONS(4175), 1, - anon_sym_COMMA, - ACTIONS(4178), 1, - anon_sym_RBRACE, - STATE(2301), 1, - aux_sym_dictionary_repeat1, + [112297] = 4, + ACTIONS(4113), 1, + sym__newline, + ACTIONS(4115), 1, + sym__indent, + STATE(778), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112923] = 2, - ACTIONS(3), 2, + [112311] = 3, + ACTIONS(3665), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3936), 3, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(3667), 2, + anon_sym_LBRACE, anon_sym_RBRACE, - [112933] = 4, - ACTIONS(1217), 1, - anon_sym_RPAREN, - ACTIONS(4180), 1, + [112323] = 4, + ACTIONS(3010), 1, anon_sym_COMMA, - STATE(2260), 1, - aux_sym_argument_list_repeat1, + ACTIONS(3048), 1, + anon_sym_RPAREN, + STATE(2346), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112947] = 4, - ACTIONS(3056), 1, - anon_sym_COMMA, - ACTIONS(3087), 1, + [112337] = 4, + ACTIONS(3687), 1, anon_sym_RPAREN, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(3960), 1, + anon_sym_COMMA, + STATE(2371), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112961] = 4, - ACTIONS(4182), 1, - anon_sym_SEMI, - ACTIONS(4184), 1, - sym__newline, - STATE(2431), 1, - aux_sym__simple_statements_repeat1, + [112351] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112975] = 4, - ACTIONS(3418), 1, + ACTIONS(1653), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [112361] = 4, + ACTIONS(3417), 1, anon_sym_COMMA, - ACTIONS(3420), 1, + ACTIONS(3419), 1, anon_sym_RBRACE, - STATE(2310), 1, + STATE(2282), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112989] = 4, - ACTIONS(641), 1, + [112375] = 3, + ACTIONS(3639), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3641), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [112387] = 3, + ACTIONS(3213), 1, + anon_sym_from, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3211), 2, sym__newline, - ACTIONS(4186), 1, anon_sym_SEMI, - STATE(2448), 1, + [112399] = 4, + ACTIONS(623), 1, + sym__newline, + ACTIONS(4117), 1, + anon_sym_SEMI, + STATE(2300), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113003] = 3, - ACTIONS(3618), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [112413] = 4, + ACTIONS(2987), 1, + anon_sym_RBRACK, + ACTIONS(3131), 1, + anon_sym_COMMA, + STATE(2397), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3620), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [113015] = 4, - ACTIONS(3089), 1, - anon_sym_RPAREN, - ACTIONS(3091), 1, - anon_sym_COMMA, - STATE(2396), 1, - aux_sym_argument_list_repeat1, + [112427] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113029] = 4, + ACTIONS(2446), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_in, + [112437] = 4, ACTIONS(1333), 1, anon_sym_RBRACE, - ACTIONS(4188), 1, + ACTIONS(4119), 1, anon_sym_COMMA, - STATE(2301), 1, + STATE(2293), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113043] = 4, - ACTIONS(4190), 1, - sym__newline, - ACTIONS(4192), 1, - sym__indent, - STATE(822), 1, - sym__match_block, + [112451] = 4, + ACTIONS(4121), 1, + anon_sym_COMMA, + ACTIONS(4123), 1, + anon_sym_RBRACK, + STATE(2399), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113057] = 4, - ACTIONS(3028), 1, - anon_sym_RPAREN, - ACTIONS(3030), 1, + [112465] = 4, + ACTIONS(3340), 1, anon_sym_COMMA, - STATE(2318), 1, - aux_sym_argument_list_repeat1, + ACTIONS(3342), 1, + anon_sym_RBRACE, + STATE(2268), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113071] = 4, - ACTIONS(4194), 1, + [112479] = 4, + ACTIONS(3050), 1, anon_sym_RPAREN, - ACTIONS(4196), 1, + ACTIONS(3052), 1, anon_sym_COMMA, - STATE(2319), 1, + STATE(2290), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113085] = 4, - ACTIONS(3307), 1, + [112493] = 4, + ACTIONS(4125), 1, + anon_sym_RPAREN, + ACTIONS(4127), 1, anon_sym_COMMA, - ACTIONS(3309), 1, - anon_sym_RBRACK, - STATE(2322), 1, - aux_sym_subscript_repeat1, + STATE(2292), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113099] = 4, - ACTIONS(4198), 1, + [112507] = 4, + ACTIONS(2987), 1, anon_sym_RPAREN, - ACTIONS(4200), 1, + ACTIONS(3010), 1, anon_sym_COMMA, - STATE(2401), 1, - aux_sym_argument_list_repeat1, + STATE(2346), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113113] = 4, - ACTIONS(3839), 1, - anon_sym_RBRACK, - ACTIONS(4202), 1, + [112521] = 4, + ACTIONS(3217), 1, anon_sym_COMMA, - STATE(2316), 1, - aux_sym_type_parameter_repeat1, + ACTIONS(3221), 1, + anon_sym_RBRACK, + STATE(2295), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113127] = 4, - ACTIONS(4205), 1, + [112535] = 4, + ACTIONS(4123), 1, anon_sym_RPAREN, - ACTIONS(4207), 1, + ACTIONS(4129), 1, anon_sym_COMMA, - STATE(2317), 1, - aux_sym__parameters_repeat1, + STATE(2362), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113141] = 4, - ACTIONS(1255), 1, + [112549] = 4, + ACTIONS(1181), 1, anon_sym_RPAREN, - ACTIONS(4210), 1, + ACTIONS(4131), 1, anon_sym_COMMA, - STATE(2260), 1, + STATE(2269), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113155] = 4, - ACTIONS(1257), 1, + [112563] = 4, + ACTIONS(1287), 1, + anon_sym_RBRACK, + ACTIONS(4133), 1, + anon_sym_COMMA, + STATE(2315), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112577] = 4, + ACTIONS(1183), 1, anon_sym_RPAREN, - ACTIONS(4212), 1, + ACTIONS(4135), 1, anon_sym_COMMA, - STATE(2260), 1, + STATE(2269), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113169] = 4, - ACTIONS(3736), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_PIPE, - ACTIONS(4214), 1, - anon_sym_COLON, + [112591] = 4, + ACTIONS(4137), 1, + anon_sym_COMMA, + ACTIONS(4140), 1, + anon_sym_RBRACE, + STATE(2293), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113183] = 4, - ACTIONS(4216), 1, + [112605] = 4, + ACTIONS(4142), 1, anon_sym_COMMA, - ACTIONS(4218), 1, + ACTIONS(4144), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2348), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113197] = 4, - ACTIONS(4220), 1, + [112619] = 4, + ACTIONS(4146), 1, anon_sym_COMMA, - ACTIONS(4222), 1, + ACTIONS(4148), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2348), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113211] = 4, - ACTIONS(3232), 1, + [112633] = 4, + ACTIONS(2947), 1, anon_sym_COLON, - ACTIONS(4224), 1, + ACTIONS(4150), 1, anon_sym_COMMA, - STATE(2323), 1, - aux_sym_assert_statement_repeat1, + STATE(2310), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113225] = 4, - ACTIONS(1033), 1, + [112647] = 4, + ACTIONS(1017), 1, anon_sym_RBRACK, - ACTIONS(4227), 1, + ACTIONS(4152), 1, anon_sym_COMMA, - STATE(2316), 1, + STATE(2298), 1, aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113239] = 3, - ACTIONS(3218), 1, - anon_sym_from, + [112661] = 4, + ACTIONS(3787), 1, + anon_sym_RBRACK, + ACTIONS(4154), 1, + anon_sym_COMMA, + STATE(2298), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3216), 2, - sym__newline, - anon_sym_SEMI, - [113251] = 4, - ACTIONS(4229), 1, - anon_sym_RPAREN, - ACTIONS(4231), 1, - anon_sym_COMMA, - STATE(2296), 1, - aux_sym_with_clause_repeat1, - ACTIONS(3), 2, + [112675] = 3, + ACTIONS(3501), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [113265] = 3, - ACTIONS(1724), 1, - anon_sym_except, + ACTIONS(3503), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [112687] = 4, + ACTIONS(4157), 1, + anon_sym_SEMI, + ACTIONS(4160), 1, + sym__newline, + STATE(2300), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1722), 2, - anon_sym_except_STAR, - anon_sym_finally, - [113277] = 4, - ACTIONS(4233), 1, - anon_sym_COMMA, - ACTIONS(4235), 1, - anon_sym_RBRACE, - STATE(2334), 1, - aux_sym_dict_pattern_repeat1, + [112701] = 4, + ACTIONS(3681), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + anon_sym_PIPE, + ACTIONS(4162), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113291] = 4, - ACTIONS(4237), 1, - sym__newline, - ACTIONS(4239), 1, - sym__indent, - STATE(784), 1, - sym__match_block, + [112715] = 4, + ACTIONS(4003), 1, + sym_identifier, + STATE(2458), 1, + sym_dotted_name, + STATE(2564), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113305] = 4, - ACTIONS(4205), 1, - anon_sym_COLON, - ACTIONS(4241), 1, + [112729] = 4, + ACTIONS(4164), 1, anon_sym_COMMA, - STATE(2330), 1, - aux_sym__parameters_repeat1, + ACTIONS(4166), 1, + anon_sym_RBRACE, + STATE(2308), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113319] = 4, + [112743] = 4, ACTIONS(2654), 1, anon_sym_RPAREN, - ACTIONS(4244), 1, + ACTIONS(4168), 1, anon_sym_COMMA, - STATE(2373), 1, + STATE(2313), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113333] = 4, - ACTIONS(4237), 1, - sym__newline, - ACTIONS(4239), 1, - sym__indent, - STATE(794), 1, - sym__match_block, + [112757] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113347] = 4, + ACTIONS(3610), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + [112767] = 4, ACTIONS(2656), 1, anon_sym_RBRACK, - ACTIONS(4246), 1, + ACTIONS(4170), 1, anon_sym_COMMA, - STATE(2481), 1, + STATE(2414), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113361] = 4, - ACTIONS(4248), 1, - anon_sym_COMMA, - ACTIONS(4250), 1, - anon_sym_RBRACE, - STATE(2281), 1, - aux_sym_dict_pattern_repeat1, + [112781] = 3, + ACTIONS(4174), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113375] = 4, - ACTIONS(4252), 1, + ACTIONS(4172), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [112793] = 4, + ACTIONS(4176), 1, anon_sym_COMMA, - ACTIONS(4254), 1, + ACTIONS(4178), 1, anon_sym_RBRACE, - STATE(2281), 1, + STATE(2326), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113389] = 3, - ACTIONS(3640), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3642), 2, - anon_sym_LBRACE, + [112807] = 4, + ACTIONS(4180), 1, + anon_sym_COMMA, + ACTIONS(4182), 1, anon_sym_RBRACE, - [113401] = 3, - ACTIONS(3677), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + STATE(2326), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3679), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [113413] = 4, - ACTIONS(1291), 1, - anon_sym_RBRACE, - ACTIONS(4256), 1, + [112821] = 4, + ACTIONS(4074), 1, + anon_sym_COLON, + ACTIONS(4184), 1, anon_sym_COMMA, - STATE(2425), 1, - aux_sym__collection_elements_repeat1, + STATE(2310), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113427] = 3, - ACTIONS(1718), 1, - anon_sym_except, + [112835] = 3, + ACTIONS(3914), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 2, - anon_sym_except_STAR, - anon_sym_finally, - [113439] = 4, - ACTIONS(2662), 1, + ACTIONS(3883), 2, anon_sym_RPAREN, - ACTIONS(4258), 1, anon_sym_COMMA, - STATE(2373), 1, - aux_sym_case_clause_repeat1, + [112847] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113453] = 4, - ACTIONS(2678), 1, + ACTIONS(3993), 3, anon_sym_RPAREN, - ACTIONS(4260), 1, anon_sym_COMMA, - STATE(2373), 1, + anon_sym_as, + [112857] = 4, + ACTIONS(3883), 1, + anon_sym_RPAREN, + ACTIONS(4187), 1, + anon_sym_COMMA, + STATE(2313), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113467] = 3, - ACTIONS(3476), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [112871] = 4, + ACTIONS(2662), 1, + anon_sym_RPAREN, + ACTIONS(4190), 1, + anon_sym_COMMA, + STATE(2313), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3478), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [113479] = 3, - ACTIONS(4262), 1, - anon_sym_EQ, + [112885] = 4, + ACTIONS(3209), 1, + anon_sym_RBRACK, + ACTIONS(4192), 1, + anon_sym_COMMA, + STATE(2315), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4011), 2, + [112899] = 4, + ACTIONS(3010), 1, anon_sym_COMMA, - anon_sym_COLON, - [113491] = 3, - ACTIONS(4266), 1, - anon_sym_in, + ACTIONS(3139), 1, + anon_sym_RPAREN, + STATE(2346), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4264), 2, + [112913] = 4, + ACTIONS(4195), 1, sym__newline, - anon_sym_SEMI, - [113503] = 4, - ACTIONS(1455), 1, - anon_sym_COLON, - ACTIONS(4268), 1, + ACTIONS(4197), 1, + sym__indent, + STATE(805), 1, + sym__match_block, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112927] = 4, + ACTIONS(3010), 1, anon_sym_COMMA, - STATE(2387), 1, - aux_sym_with_clause_repeat1, + ACTIONS(4199), 1, + anon_sym_RPAREN, + STATE(2346), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113517] = 4, - ACTIONS(4270), 1, + [112941] = 4, + ACTIONS(4201), 1, anon_sym_SEMI, - ACTIONS(4272), 1, + ACTIONS(4203), 1, sym__newline, - STATE(2352), 1, + STATE(2327), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113531] = 4, - ACTIONS(3368), 1, + [112955] = 4, + ACTIONS(4205), 1, + anon_sym_RPAREN, + ACTIONS(4207), 1, anon_sym_COMMA, - ACTIONS(3370), 1, - anon_sym_RBRACE, - STATE(2263), 1, - aux_sym_dictionary_repeat1, + STATE(2425), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113545] = 4, - ACTIONS(3056), 1, + [112969] = 3, + ACTIONS(3991), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3987), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3099), 1, + [112981] = 4, + ACTIONS(3010), 1, + anon_sym_COMMA, + ACTIONS(3062), 1, anon_sym_RPAREN, - STATE(2382), 1, + STATE(2346), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113559] = 4, - ACTIONS(3401), 1, + [112995] = 3, + ACTIONS(4209), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3987), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [113007] = 4, + ACTIONS(3431), 1, anon_sym_COMMA, - ACTIONS(3403), 1, + ACTIONS(3433), 1, anon_sym_RBRACE, - STATE(2354), 1, + STATE(2330), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113573] = 4, - ACTIONS(1043), 1, - anon_sym_RBRACK, - ACTIONS(4274), 1, + [113021] = 4, + ACTIONS(3010), 1, anon_sym_COMMA, - STATE(2316), 1, - aux_sym_type_parameter_repeat1, + ACTIONS(4211), 1, + anon_sym_RPAREN, + STATE(2346), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113587] = 4, - ACTIONS(2680), 1, - anon_sym_RBRACK, - ACTIONS(4276), 1, + [113035] = 4, + ACTIONS(4213), 1, anon_sym_COMMA, - STATE(2481), 1, - aux_sym_case_clause_repeat1, + ACTIONS(4216), 1, + anon_sym_RBRACE, + STATE(2326), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113601] = 4, - ACTIONS(645), 1, + [113049] = 4, + ACTIONS(625), 1, sym__newline, - ACTIONS(4278), 1, + ACTIONS(4218), 1, anon_sym_SEMI, - STATE(2448), 1, + STATE(2300), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113615] = 4, - ACTIONS(3319), 1, - anon_sym_COMMA, - ACTIONS(3321), 1, - anon_sym_RBRACK, - STATE(2462), 1, - aux_sym_subscript_repeat1, + [113063] = 4, + ACTIONS(4113), 1, + sym__newline, + ACTIONS(4115), 1, + sym__indent, + STATE(784), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113629] = 4, - ACTIONS(1351), 1, + [113077] = 4, + ACTIONS(3711), 1, + anon_sym_COLON, + ACTIONS(4220), 1, anon_sym_RBRACE, - ACTIONS(4280), 1, - anon_sym_COMMA, - STATE(2301), 1, - aux_sym_dictionary_repeat1, + STATE(2651), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113643] = 4, - ACTIONS(1299), 1, - anon_sym_RPAREN, - ACTIONS(4282), 1, + [113091] = 4, + ACTIONS(1327), 1, + anon_sym_RBRACE, + ACTIONS(4222), 1, anon_sym_COMMA, - STATE(2389), 1, - aux_sym_assert_statement_repeat1, + STATE(2293), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113657] = 4, - ACTIONS(3736), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_PIPE, - ACTIONS(4284), 1, - anon_sym_COLON, + [113105] = 4, + ACTIONS(4224), 1, + anon_sym_COMMA, + ACTIONS(4226), 1, + anon_sym_RBRACE, + STATE(2373), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113671] = 4, - ACTIONS(3101), 1, + [113119] = 4, + ACTIONS(3064), 1, anon_sym_RPAREN, - ACTIONS(3103), 1, + ACTIONS(3066), 1, anon_sym_COMMA, - STATE(2362), 1, + STATE(2337), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113685] = 4, - ACTIONS(4286), 1, + [113133] = 4, + ACTIONS(4228), 1, anon_sym_RPAREN, - ACTIONS(4288), 1, + ACTIONS(4230), 1, anon_sym_COMMA, - STATE(2364), 1, + STATE(2338), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113699] = 4, - ACTIONS(3323), 1, + [113147] = 4, + ACTIONS(3468), 1, + anon_sym_RBRACE, + ACTIONS(4232), 1, anon_sym_COMMA, - ACTIONS(3325), 1, - anon_sym_RBRACK, - STATE(2366), 1, - aux_sym_subscript_repeat1, + STATE(2334), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113713] = 4, - ACTIONS(4290), 1, + [113161] = 4, + ACTIONS(3253), 1, anon_sym_COMMA, - ACTIONS(4292), 1, - anon_sym_RBRACE, - STATE(2281), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(3255), 1, + anon_sym_RBRACK, + STATE(2341), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113727] = 4, - ACTIONS(4294), 1, + [113175] = 4, + ACTIONS(1161), 1, + anon_sym_RPAREN, + ACTIONS(4235), 1, anon_sym_COMMA, - ACTIONS(4296), 1, - anon_sym_RBRACE, - STATE(2281), 1, - aux_sym_dict_pattern_repeat1, + STATE(2269), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113741] = 4, - ACTIONS(1183), 1, + [113189] = 4, + ACTIONS(1239), 1, anon_sym_RPAREN, - ACTIONS(4298), 1, + ACTIONS(4237), 1, anon_sym_COMMA, - STATE(2260), 1, + STATE(2269), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113755] = 4, - ACTIONS(4237), 1, - sym__newline, + [113203] = 4, + ACTIONS(1193), 1, + anon_sym_RPAREN, ACTIONS(4239), 1, - sym__indent, - STATE(849), 1, - sym__match_block, + anon_sym_COMMA, + STATE(2269), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113769] = 4, - ACTIONS(1185), 1, - anon_sym_RPAREN, - ACTIONS(4300), 1, - anon_sym_COMMA, - STATE(2260), 1, - aux_sym_argument_list_repeat1, + [113217] = 3, + ACTIONS(4241), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113783] = 4, - ACTIONS(4302), 1, + ACTIONS(3987), 2, anon_sym_COMMA, - ACTIONS(4304), 1, + anon_sym_COLON, + [113229] = 4, + ACTIONS(4243), 1, + anon_sym_COMMA, + ACTIONS(4245), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2348), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113797] = 4, - ACTIONS(4306), 1, + [113243] = 4, + ACTIONS(4247), 1, anon_sym_COMMA, - ACTIONS(4308), 1, + ACTIONS(4249), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2348), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113811] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2475), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_in, - [113821] = 4, - ACTIONS(2997), 1, + [113257] = 4, + ACTIONS(1163), 1, anon_sym_RPAREN, - ACTIONS(3056), 1, + ACTIONS(4251), 1, anon_sym_COMMA, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, + STATE(2269), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113835] = 3, - ACTIONS(4262), 1, - anon_sym_EQ, + [113271] = 4, + ACTIONS(4195), 1, + sym__newline, + ACTIONS(4197), 1, + sym__indent, + STATE(790), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4011), 2, + [113285] = 4, + ACTIONS(4253), 1, anon_sym_COMMA, + ACTIONS(4256), 1, anon_sym_COLON, - [113847] = 3, - ACTIONS(3906), 1, - anon_sym_as, + STATE(2344), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3934), 2, + [113299] = 4, + ACTIONS(3468), 1, anon_sym_RPAREN, + ACTIONS(4258), 1, anon_sym_COMMA, - [113859] = 2, + STATE(2345), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3936), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [113869] = 4, - ACTIONS(3873), 1, + [113313] = 4, + ACTIONS(1263), 1, anon_sym_RPAREN, - ACTIONS(3995), 1, + ACTIONS(4261), 1, anon_sym_COMMA, - STATE(2453), 1, - aux_sym__import_list_repeat1, + STATE(2345), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113883] = 4, - ACTIONS(3934), 1, - anon_sym_RPAREN, - ACTIONS(4310), 1, + [113327] = 4, + ACTIONS(4205), 1, + anon_sym_COLON, + ACTIONS(4263), 1, anon_sym_COMMA, - STATE(2373), 1, - aux_sym_case_clause_repeat1, + STATE(2296), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113897] = 4, - ACTIONS(4313), 1, - anon_sym_SEMI, - ACTIONS(4315), 1, - sym__newline, - STATE(2381), 1, - aux_sym__simple_statements_repeat1, + [113341] = 4, + ACTIONS(4265), 1, + anon_sym_COMMA, + ACTIONS(4268), 1, + anon_sym_RBRACK, + STATE(2348), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113911] = 4, - ACTIONS(1299), 1, - anon_sym_RBRACK, - ACTIONS(4317), 1, - anon_sym_COMMA, - STATE(2405), 1, - aux_sym_assert_statement_repeat1, + [113355] = 4, + ACTIONS(2712), 1, + sym_identifier, + ACTIONS(4270), 1, + anon_sym_import, + STATE(2627), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113925] = 4, - ACTIONS(3056), 1, - anon_sym_COMMA, - ACTIONS(3111), 1, - anon_sym_RPAREN, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, + [113369] = 3, + ACTIONS(4241), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113939] = 4, - ACTIONS(2997), 1, - anon_sym_RBRACK, - ACTIONS(3152), 1, + ACTIONS(3987), 2, anon_sym_COMMA, - STATE(2460), 1, - aux_sym__collection_elements_repeat1, + anon_sym_COLON, + [113381] = 4, + ACTIONS(4272), 1, + anon_sym_COMMA, + ACTIONS(4274), 1, + anon_sym_RBRACK, + STATE(2348), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113953] = 4, - ACTIONS(4319), 1, + [113395] = 4, + ACTIONS(3008), 1, + anon_sym_RPAREN, + ACTIONS(3010), 1, anon_sym_COMMA, - ACTIONS(4321), 1, - anon_sym_RBRACK, - STATE(2467), 1, - aux_sym__patterns_repeat1, + STATE(2346), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113967] = 4, - ACTIONS(3364), 1, + [113409] = 4, + ACTIONS(2674), 1, + anon_sym_RPAREN, + ACTIONS(4276), 1, anon_sym_COMMA, - ACTIONS(3366), 1, - anon_sym_RBRACE, - STATE(2384), 1, - aux_sym_dictionary_repeat1, + STATE(2313), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113981] = 4, - ACTIONS(2889), 1, - anon_sym_RBRACK, - ACTIONS(4323), 1, + [113423] = 4, + ACTIONS(4278), 1, anon_sym_COMMA, - STATE(2380), 1, - aux_sym__patterns_repeat1, + ACTIONS(4280), 1, + anon_sym_RBRACK, + STATE(2348), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113995] = 4, - ACTIONS(635), 1, - sym__newline, - ACTIONS(4326), 1, - anon_sym_SEMI, - STATE(2448), 1, - aux_sym__simple_statements_repeat1, + [113437] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114009] = 4, - ACTIONS(1291), 1, - anon_sym_RPAREN, - ACTIONS(4328), 1, + ACTIONS(3610), 3, anon_sym_COMMA, - STATE(2482), 1, - aux_sym__collection_elements_repeat1, + anon_sym_as, + anon_sym_RBRACE, + [113447] = 4, + ACTIONS(3407), 1, + anon_sym_COMMA, + ACTIONS(3409), 1, + anon_sym_RBRACE, + STATE(2359), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114023] = 4, - ACTIONS(4019), 1, - anon_sym_RPAREN, - ACTIONS(4330), 1, - anon_sym_COMMA, - STATE(2383), 1, - aux_sym__import_list_repeat1, + [113461] = 3, + ACTIONS(4284), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4282), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [113473] = 4, + ACTIONS(3490), 1, + anon_sym_PIPE, + ACTIONS(4286), 1, + anon_sym_COLON, + STATE(1887), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114037] = 4, - ACTIONS(1361), 1, + [113487] = 4, + ACTIONS(1311), 1, anon_sym_RBRACE, - ACTIONS(4333), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - STATE(2301), 1, + STATE(2293), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114051] = 4, - ACTIONS(3124), 1, - anon_sym_RPAREN, - ACTIONS(3126), 1, + [113501] = 4, + ACTIONS(4290), 1, anon_sym_COMMA, - STATE(2391), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4292), 1, + anon_sym_RBRACE, + STATE(2452), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114065] = 4, - ACTIONS(4335), 1, + [113515] = 4, + ACTIONS(3085), 1, anon_sym_RPAREN, - ACTIONS(4337), 1, + ACTIONS(3087), 1, anon_sym_COMMA, - STATE(2393), 1, + STATE(2364), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114079] = 4, - ACTIONS(4339), 1, + [113529] = 4, + ACTIONS(2016), 1, + anon_sym_RPAREN, + ACTIONS(4294), 1, anon_sym_COMMA, - ACTIONS(4342), 1, - anon_sym_COLON, - STATE(2387), 1, - aux_sym_with_clause_repeat1, + STATE(2429), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114093] = 4, - ACTIONS(3273), 1, + [113543] = 4, + ACTIONS(3260), 1, anon_sym_COMMA, - ACTIONS(3275), 1, + ACTIONS(3262), 1, anon_sym_RBRACK, - STATE(2395), 1, + STATE(2369), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114107] = 4, - ACTIONS(3232), 1, + [113557] = 4, + ACTIONS(1203), 1, anon_sym_RPAREN, - ACTIONS(4344), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - STATE(2389), 1, - aux_sym_assert_statement_repeat1, + STATE(2269), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114121] = 4, - ACTIONS(4347), 1, + [113571] = 4, + ACTIONS(2688), 1, + anon_sym_RPAREN, + ACTIONS(4298), 1, anon_sym_COMMA, - ACTIONS(4349), 1, - anon_sym_RBRACK, - STATE(2283), 1, - aux_sym_subscript_repeat1, + STATE(2313), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114135] = 4, - ACTIONS(1203), 1, + [113585] = 4, + ACTIONS(1205), 1, anon_sym_RPAREN, - ACTIONS(4351), 1, + ACTIONS(4300), 1, anon_sym_COMMA, - STATE(2260), 1, + STATE(2269), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114149] = 3, - ACTIONS(3689), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [113599] = 4, + ACTIONS(3711), 1, + anon_sym_COLON, + ACTIONS(4302), 1, + anon_sym_RBRACE, + STATE(2676), 1, + sym_format_specifier, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3691), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [114161] = 4, - ACTIONS(1205), 1, + [113613] = 4, + ACTIONS(4304), 1, anon_sym_RPAREN, - ACTIONS(4353), 1, + ACTIONS(4306), 1, anon_sym_COMMA, - STATE(2260), 1, + STATE(2382), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114175] = 4, - ACTIONS(4355), 1, + [113627] = 4, + ACTIONS(4308), 1, anon_sym_COMMA, - ACTIONS(4357), 1, + ACTIONS(4310), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2348), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114189] = 4, - ACTIONS(4359), 1, - anon_sym_COMMA, - ACTIONS(4361), 1, + [113641] = 4, + ACTIONS(2652), 1, anon_sym_RBRACK, - STATE(2283), 1, - aux_sym_subscript_repeat1, + ACTIONS(4312), 1, + anon_sym_COMMA, + STATE(2414), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114203] = 4, - ACTIONS(1251), 1, + [113655] = 4, + ACTIONS(3964), 1, anon_sym_RPAREN, - ACTIONS(4363), 1, + ACTIONS(4314), 1, anon_sym_COMMA, - STATE(2260), 1, - aux_sym_argument_list_repeat1, + STATE(2460), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114217] = 4, - ACTIONS(3736), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_PIPE, - ACTIONS(4365), 1, - anon_sym_COLON, + [113669] = 4, + ACTIONS(2975), 1, + anon_sym_COMMA, + ACTIONS(2987), 1, + anon_sym_RBRACE, + STATE(2434), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114231] = 3, - ACTIONS(3544), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3546), 2, - anon_sym_LBRACE, + [113683] = 4, + ACTIONS(4316), 1, + anon_sym_COMMA, + ACTIONS(4318), 1, anon_sym_RBRACE, - [114243] = 3, - ACTIONS(3573), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + STATE(2326), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3575), 2, - anon_sym_LBRACE, + [113697] = 4, + ACTIONS(4320), 1, + anon_sym_COMMA, + ACTIONS(4322), 1, anon_sym_RBRACE, - [114255] = 4, - ACTIONS(3926), 1, - sym_identifier, - STATE(2274), 1, - sym_dotted_name, - STATE(2606), 1, - sym_aliased_import, + STATE(2326), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114269] = 4, - ACTIONS(1253), 1, + [113711] = 4, + ACTIONS(3964), 1, anon_sym_RPAREN, - ACTIONS(4367), 1, + ACTIONS(4324), 1, anon_sym_COMMA, - STATE(2260), 1, - aux_sym_argument_list_repeat1, + STATE(2460), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114283] = 3, - ACTIONS(1730), 1, - anon_sym_except, + [113725] = 4, + ACTIONS(1151), 1, + anon_sym_RPAREN, + ACTIONS(4326), 1, + anon_sym_COMMA, + STATE(2269), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1732), 2, - anon_sym_except_STAR, - anon_sym_finally, - [114295] = 4, - ACTIONS(4369), 1, - anon_sym_SEMI, - ACTIONS(4371), 1, - sym__newline, - STATE(2408), 1, - aux_sym__simple_statements_repeat1, + [113739] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114309] = 4, - ACTIONS(3056), 1, + ACTIONS(3993), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + [113749] = 4, + ACTIONS(3010), 1, anon_sym_COMMA, - ACTIONS(3132), 1, + ACTIONS(3093), 1, anon_sym_RPAREN, - STATE(2382), 1, + STATE(2346), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114323] = 4, - ACTIONS(3232), 1, - anon_sym_RBRACK, - ACTIONS(4373), 1, - anon_sym_COMMA, - STATE(2405), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114337] = 4, - ACTIONS(3455), 1, + [113763] = 4, + ACTIONS(3435), 1, anon_sym_COMMA, - ACTIONS(3457), 1, + ACTIONS(3437), 1, anon_sym_RBRACE, - STATE(2409), 1, + STATE(2381), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114351] = 4, - ACTIONS(4376), 1, + [113777] = 4, + ACTIONS(4086), 1, + anon_sym_RPAREN, + ACTIONS(4328), 1, anon_sym_COMMA, - ACTIONS(4378), 1, - anon_sym_RBRACK, - STATE(2283), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114365] = 4, - ACTIONS(621), 1, - sym__newline, - ACTIONS(4380), 1, - anon_sym_SEMI, - STATE(2448), 1, - aux_sym__simple_statements_repeat1, + STATE(2380), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114379] = 4, - ACTIONS(1329), 1, + [113791] = 4, + ACTIONS(1335), 1, anon_sym_RBRACE, - ACTIONS(4382), 1, + ACTIONS(4331), 1, anon_sym_COMMA, - STATE(2301), 1, + STATE(2293), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114393] = 4, - ACTIONS(2688), 1, + [113805] = 4, + ACTIONS(1153), 1, anon_sym_RPAREN, - ACTIONS(4384), 1, + ACTIONS(4333), 1, anon_sym_COMMA, - STATE(2373), 1, - aux_sym_case_clause_repeat1, + STATE(2269), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114407] = 4, - ACTIONS(3756), 1, - anon_sym_COLON, - ACTIONS(4386), 1, - anon_sym_RBRACE, - STATE(2646), 1, - sym_format_specifier, + [113819] = 4, + ACTIONS(3095), 1, + anon_sym_RPAREN, + ACTIONS(3097), 1, + anon_sym_COMMA, + STATE(2388), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114421] = 4, - ACTIONS(3134), 1, + [113833] = 4, + ACTIONS(4335), 1, anon_sym_RPAREN, - ACTIONS(3136), 1, + ACTIONS(4337), 1, anon_sym_COMMA, - STATE(2416), 1, + STATE(2390), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114435] = 4, - ACTIONS(4388), 1, - anon_sym_RPAREN, - ACTIONS(4390), 1, + [113847] = 4, + ACTIONS(4339), 1, anon_sym_COMMA, - STATE(2418), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4341), 1, + anon_sym_RBRACK, + STATE(2348), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114449] = 4, - ACTIONS(3285), 1, + [113861] = 4, + ACTIONS(3268), 1, anon_sym_COMMA, - ACTIONS(3287), 1, + ACTIONS(3270), 1, anon_sym_RBRACK, - STATE(2421), 1, + STATE(2393), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114463] = 4, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(4392), 1, + [113875] = 4, + ACTIONS(4343), 1, anon_sym_COMMA, - STATE(2330), 1, - aux_sym__parameters_repeat1, + ACTIONS(4345), 1, + anon_sym_RBRACK, + STATE(2348), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114477] = 4, - ACTIONS(1219), 1, + [113889] = 4, + ACTIONS(1215), 1, anon_sym_RPAREN, - ACTIONS(4394), 1, + ACTIONS(4347), 1, anon_sym_COMMA, - STATE(2260), 1, + STATE(2269), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114491] = 4, - ACTIONS(4169), 1, - anon_sym_RPAREN, - ACTIONS(4396), 1, - anon_sym_COMMA, - STATE(2502), 1, - aux_sym__parameters_repeat1, + [113903] = 4, + ACTIONS(3711), 1, + anon_sym_COLON, + ACTIONS(4349), 1, + anon_sym_RBRACE, + STATE(2702), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114505] = 4, - ACTIONS(1221), 1, + [113917] = 4, + ACTIONS(1217), 1, anon_sym_RPAREN, - ACTIONS(4398), 1, + ACTIONS(4351), 1, anon_sym_COMMA, - STATE(2260), 1, + STATE(2269), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114519] = 3, - ACTIONS(4015), 1, - anon_sym_EQ, + [113931] = 4, + ACTIONS(2624), 1, + anon_sym_RPAREN, + ACTIONS(4353), 1, + anon_sym_COMMA, + STATE(2313), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4011), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [114531] = 4, - ACTIONS(4400), 1, + [113945] = 4, + ACTIONS(4355), 1, anon_sym_COMMA, - ACTIONS(4402), 1, + ACTIONS(4357), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2348), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114545] = 4, - ACTIONS(4404), 1, + [113959] = 4, + ACTIONS(4359), 1, anon_sym_COMMA, - ACTIONS(4406), 1, + ACTIONS(4361), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2348), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114559] = 3, - ACTIONS(4408), 1, - anon_sym_COLON, + [113973] = 3, + ACTIONS(3918), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4011), 2, - anon_sym_RPAREN, + ACTIONS(3883), 2, anon_sym_COMMA, - [114571] = 4, - ACTIONS(3756), 1, - anon_sym_COLON, - ACTIONS(4410), 1, - anon_sym_RBRACE, - STATE(2758), 1, - sym_format_specifier, + anon_sym_RBRACK, + [113985] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114585] = 4, - ACTIONS(4321), 1, - anon_sym_RPAREN, - ACTIONS(4412), 1, + ACTIONS(3993), 3, anon_sym_COMMA, - STATE(2512), 1, - aux_sym__patterns_repeat1, + anon_sym_as, + anon_sym_RBRACK, + [113995] = 4, + ACTIONS(3344), 1, + sym_identifier, + STATE(2221), 1, + sym_dotted_name, + STATE(2433), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114599] = 4, - ACTIONS(3560), 1, - anon_sym_RBRACE, - ACTIONS(4414), 1, + [114009] = 4, + ACTIONS(1263), 1, + anon_sym_RBRACK, + ACTIONS(4363), 1, anon_sym_COMMA, - STATE(2425), 1, + STATE(2471), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114613] = 2, + [114023] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3524), 3, + ACTIONS(2878), 3, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - [114623] = 3, - ACTIONS(1726), 1, - anon_sym_except, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1728), 2, - anon_sym_except_STAR, - anon_sym_finally, - [114635] = 4, - ACTIONS(3056), 1, + anon_sym_EQ, + [114033] = 4, + ACTIONS(2016), 1, + anon_sym_RBRACK, + ACTIONS(4365), 1, anon_sym_COMMA, - ACTIONS(3093), 1, - anon_sym_RPAREN, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, + STATE(2463), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114649] = 4, - ACTIONS(4417), 1, - anon_sym_SEMI, - ACTIONS(4419), 1, - sym__newline, - STATE(2434), 1, - aux_sym__simple_statements_repeat1, + [114047] = 4, + ACTIONS(4367), 1, + anon_sym_COMMA, + ACTIONS(4369), 1, + anon_sym_in, + STATE(2465), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114663] = 4, - ACTIONS(3056), 1, + [114061] = 4, + ACTIONS(3010), 1, anon_sym_COMMA, - ACTIONS(3142), 1, + ACTIONS(3114), 1, anon_sym_RPAREN, - STATE(2382), 1, + STATE(2346), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114677] = 4, - ACTIONS(631), 1, - sym__newline, - ACTIONS(4421), 1, - anon_sym_SEMI, - STATE(2448), 1, - aux_sym__simple_statements_repeat1, + [114075] = 4, + ACTIONS(3681), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + anon_sym_PIPE, + ACTIONS(4371), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114691] = 2, + [114089] = 4, + ACTIONS(3354), 1, + anon_sym_COMMA, + ACTIONS(3356), 1, + anon_sym_RBRACE, + STATE(2407), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4017), 3, - sym__newline, - anon_sym_SEMI, + [114103] = 4, + ACTIONS(3116), 1, + anon_sym_RPAREN, + ACTIONS(3118), 1, anon_sym_COMMA, - [114701] = 4, - ACTIONS(3405), 1, + STATE(2336), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114117] = 4, + ACTIONS(4373), 1, + anon_sym_RPAREN, + ACTIONS(4375), 1, anon_sym_COMMA, - ACTIONS(3407), 1, - anon_sym_RBRACE, - STATE(2435), 1, - aux_sym_dictionary_repeat1, + STATE(2342), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114715] = 4, - ACTIONS(649), 1, - sym__newline, - ACTIONS(4423), 1, + [114131] = 4, + ACTIONS(4377), 1, anon_sym_SEMI, - STATE(2448), 1, + ACTIONS(4379), 1, + sym__newline, + STATE(2418), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114729] = 4, - ACTIONS(1321), 1, + [114145] = 4, + ACTIONS(1319), 1, anon_sym_RBRACE, - ACTIONS(4425), 1, + ACTIONS(4381), 1, anon_sym_COMMA, - STATE(2301), 1, - aux_sym_dictionary_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114743] = 2, + STATE(2293), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4427), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [114753] = 4, - ACTIONS(4342), 1, + [114159] = 4, + ACTIONS(3120), 1, anon_sym_RPAREN, - ACTIONS(4429), 1, + ACTIONS(3122), 1, anon_sym_COMMA, - STATE(2437), 1, - aux_sym_with_clause_repeat1, + STATE(2412), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114767] = 4, - ACTIONS(3144), 1, + [114173] = 4, + ACTIONS(4383), 1, anon_sym_RPAREN, - ACTIONS(3146), 1, + ACTIONS(4385), 1, anon_sym_COMMA, - STATE(2443), 1, + STATE(2413), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114781] = 4, - ACTIONS(4432), 1, - anon_sym_RPAREN, - ACTIONS(4434), 1, + [114187] = 4, + ACTIONS(4367), 1, anon_sym_COMMA, - STATE(2444), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4387), 1, + anon_sym_in, + STATE(2465), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114795] = 4, - ACTIONS(3291), 1, + [114201] = 4, + ACTIONS(3286), 1, anon_sym_COMMA, - ACTIONS(3293), 1, + ACTIONS(3288), 1, anon_sym_RBRACK, - STATE(2446), 1, + STATE(2416), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114809] = 4, - ACTIONS(2732), 1, - sym_identifier, - ACTIONS(4436), 1, - anon_sym_import, - STATE(2627), 1, - sym_dotted_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114823] = 4, - ACTIONS(4438), 1, + [114215] = 4, + ACTIONS(1227), 1, + anon_sym_RPAREN, + ACTIONS(4389), 1, anon_sym_COMMA, - ACTIONS(4440), 1, - anon_sym_COLON, - STATE(2345), 1, - aux_sym_with_clause_repeat1, + STATE(2269), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114837] = 4, - ACTIONS(1239), 1, + [114229] = 4, + ACTIONS(1229), 1, anon_sym_RPAREN, - ACTIONS(4442), 1, + ACTIONS(4391), 1, anon_sym_COMMA, - STATE(2260), 1, + STATE(2269), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114851] = 4, - ACTIONS(1241), 1, - anon_sym_RPAREN, - ACTIONS(4444), 1, + [114243] = 4, + ACTIONS(3883), 1, + anon_sym_RBRACK, + ACTIONS(4393), 1, anon_sym_COMMA, - STATE(2260), 1, - aux_sym_argument_list_repeat1, + STATE(2414), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114865] = 4, - ACTIONS(4446), 1, + [114257] = 4, + ACTIONS(4396), 1, anon_sym_COMMA, - ACTIONS(4448), 1, + ACTIONS(4398), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2348), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114879] = 4, - ACTIONS(4450), 1, + [114271] = 4, + ACTIONS(4400), 1, anon_sym_COMMA, - ACTIONS(4452), 1, + ACTIONS(4402), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2348), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114893] = 4, - ACTIONS(4454), 1, + [114285] = 4, + ACTIONS(3298), 1, anon_sym_COMMA, - ACTIONS(4456), 1, + ACTIONS(3300), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2354), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114907] = 4, - ACTIONS(4458), 1, - anon_sym_SEMI, - ACTIONS(4461), 1, + [114299] = 4, + ACTIONS(609), 1, sym__newline, - STATE(2448), 1, + ACTIONS(4404), 1, + anon_sym_SEMI, + STATE(2300), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114921] = 4, - ACTIONS(4237), 1, + [114313] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1653), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [114323] = 4, + ACTIONS(4113), 1, sym__newline, - ACTIONS(4239), 1, + ACTIONS(4115), 1, sym__indent, - STATE(730), 1, + STATE(735), 1, sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114935] = 4, - ACTIONS(3299), 1, + [114337] = 4, + ACTIONS(3290), 1, anon_sym_COMMA, - ACTIONS(3301), 1, + ACTIONS(3292), 1, anon_sym_RBRACK, - STATE(2452), 1, + STATE(2423), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114949] = 4, - ACTIONS(4463), 1, + [114351] = 4, + ACTIONS(4406), 1, anon_sym_COMMA, - ACTIONS(4465), 1, + ACTIONS(4408), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2348), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114963] = 4, - ACTIONS(4467), 1, + [114365] = 4, + ACTIONS(4410), 1, anon_sym_COMMA, - ACTIONS(4469), 1, + ACTIONS(4412), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2348), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114977] = 4, - ACTIONS(4001), 1, - anon_sym_RPAREN, - ACTIONS(4471), 1, + [114379] = 4, + ACTIONS(4414), 1, anon_sym_COMMA, - STATE(2383), 1, - aux_sym__import_list_repeat1, + ACTIONS(4416), 1, + anon_sym_COLON, + STATE(2256), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114991] = 4, - ACTIONS(4001), 1, + [114393] = 4, + ACTIONS(2947), 1, anon_sym_RPAREN, - ACTIONS(4473), 1, + ACTIONS(4418), 1, anon_sym_COMMA, - STATE(2383), 1, - aux_sym__import_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115005] = 3, - ACTIONS(3910), 1, - anon_sym_as, + STATE(2257), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3934), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [115017] = 4, - ACTIONS(3340), 1, + [114407] = 4, + ACTIONS(3294), 1, anon_sym_COMMA, - ACTIONS(3342), 1, + ACTIONS(3296), 1, anon_sym_RBRACK, - STATE(2459), 1, + STATE(2428), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115031] = 4, - ACTIONS(4475), 1, - anon_sym_SEMI, - ACTIONS(4477), 1, - sym__newline, - STATE(2257), 1, - aux_sym__simple_statements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115045] = 4, - ACTIONS(4479), 1, + [114421] = 4, + ACTIONS(4420), 1, anon_sym_COMMA, - ACTIONS(4481), 1, + ACTIONS(4422), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2348), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115059] = 4, - ACTIONS(4483), 1, + [114435] = 4, + ACTIONS(4424), 1, anon_sym_COMMA, - ACTIONS(4485), 1, + ACTIONS(4426), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2348), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115073] = 4, - ACTIONS(1291), 1, - anon_sym_RBRACK, - ACTIONS(4487), 1, + [114449] = 4, + ACTIONS(2871), 1, + anon_sym_RPAREN, + ACTIONS(4428), 1, anon_sym_COMMA, - STATE(2503), 1, - aux_sym__collection_elements_repeat1, + STATE(2429), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115087] = 2, + [114463] = 4, + ACTIONS(3711), 1, + anon_sym_COLON, + ACTIONS(4431), 1, + anon_sym_RBRACE, + STATE(2748), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3936), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [115097] = 4, - ACTIONS(4489), 1, - anon_sym_COMMA, - ACTIONS(4491), 1, - anon_sym_RBRACK, - STATE(2283), 1, - aux_sym_subscript_repeat1, + [114477] = 4, + ACTIONS(4113), 1, + sym__newline, + ACTIONS(4115), 1, + sym__indent, + STATE(748), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115111] = 4, - ACTIONS(4493), 1, - anon_sym_SEMI, - ACTIONS(4495), 1, - sym__newline, - STATE(2485), 1, - aux_sym__simple_statements_repeat1, + [114491] = 4, + ACTIONS(4433), 1, + anon_sym_COMMA, + ACTIONS(4435), 1, + anon_sym_COLON, + STATE(2344), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115125] = 2, + [114505] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2898), 3, - anon_sym_RPAREN, + ACTIONS(4023), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_EQ, - [115135] = 3, - ACTIONS(4499), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [114515] = 4, + ACTIONS(1263), 1, + anon_sym_RBRACE, + ACTIONS(4437), 1, + anon_sym_COMMA, + STATE(2334), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4497), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [115147] = 4, - ACTIONS(4501), 1, + [114529] = 3, + ACTIONS(4441), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4439), 2, + sym__newline, + anon_sym_SEMI, + [114541] = 4, + ACTIONS(4367), 1, anon_sym_COMMA, - ACTIONS(4504), 1, - anon_sym_COLON, - STATE(2466), 1, - aux_sym_match_statement_repeat1, + ACTIONS(4443), 1, + anon_sym_in, + STATE(2465), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115161] = 4, - ACTIONS(2054), 1, - anon_sym_RBRACK, - ACTIONS(4506), 1, + [114555] = 4, + ACTIONS(4367), 1, anon_sym_COMMA, - STATE(2380), 1, + ACTIONS(4445), 1, + anon_sym_in, + STATE(2465), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115175] = 4, - ACTIONS(3801), 1, + [114569] = 4, + ACTIONS(3752), 1, anon_sym_LPAREN, - ACTIONS(4508), 1, + ACTIONS(4447), 1, anon_sym_COLON, - STATE(2707), 1, + STATE(2677), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115189] = 4, - ACTIONS(4073), 1, + [114583] = 4, + ACTIONS(4367), 1, anon_sym_COMMA, - ACTIONS(4510), 1, + ACTIONS(4449), 1, anon_sym_in, - STATE(2486), 1, + STATE(2465), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115203] = 4, - ACTIONS(3054), 1, - anon_sym_RPAREN, - ACTIONS(3056), 1, - anon_sym_COMMA, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, + [114597] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115217] = 4, - ACTIONS(4073), 1, + ACTIONS(4451), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [114607] = 4, + ACTIONS(4367), 1, anon_sym_COMMA, - ACTIONS(4512), 1, + ACTIONS(4453), 1, anon_sym_in, - STATE(2486), 1, + STATE(2465), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115231] = 2, + [114621] = 4, + ACTIONS(2670), 1, + anon_sym_RPAREN, + ACTIONS(4455), 1, + anon_sym_COMMA, + STATE(2313), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4041), 3, + [114635] = 4, + ACTIONS(4195), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(4197), 1, + sym__indent, + STATE(788), 1, + sym__match_block, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114649] = 4, + ACTIONS(1287), 1, + anon_sym_RPAREN, + ACTIONS(4457), 1, anon_sym_COMMA, - [115241] = 4, - ACTIONS(3526), 1, - anon_sym_PIPE, - ACTIONS(4514), 1, - anon_sym_COLON, - STATE(1933), 1, - aux_sym_union_pattern_repeat1, + STATE(2468), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115255] = 4, - ACTIONS(3736), 1, + [114663] = 4, + ACTIONS(3681), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3685), 1, anon_sym_PIPE, - ACTIONS(4516), 1, + ACTIONS(4459), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115269] = 4, - ACTIONS(2985), 1, + [114677] = 4, + ACTIONS(2672), 1, + anon_sym_RBRACK, + ACTIONS(4461), 1, anon_sym_COMMA, - ACTIONS(2997), 1, - anon_sym_RBRACE, - STATE(2338), 1, - aux_sym__collection_elements_repeat1, + STATE(2414), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115283] = 4, - ACTIONS(3736), 1, + [114691] = 4, + ACTIONS(3681), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3685), 1, anon_sym_PIPE, - ACTIONS(4518), 1, + ACTIONS(4463), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115297] = 4, - ACTIONS(3736), 1, + [114705] = 4, + ACTIONS(3681), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3685), 1, anon_sym_PIPE, - ACTIONS(4520), 1, + ACTIONS(4465), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115311] = 4, - ACTIONS(4522), 1, + [114719] = 4, + ACTIONS(3681), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + anon_sym_PIPE, + ACTIONS(4467), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114733] = 4, + ACTIONS(1287), 1, + anon_sym_COLON, + ACTIONS(4469), 1, anon_sym_COMMA, - ACTIONS(4524), 1, + STATE(2462), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114747] = 4, + ACTIONS(4471), 1, + anon_sym_SEMI, + ACTIONS(4473), 1, + sym__newline, + STATE(2464), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114761] = 4, + ACTIONS(4475), 1, + anon_sym_COMMA, + ACTIONS(4477), 1, anon_sym_RBRACE, - STATE(2278), 1, + STATE(2326), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115325] = 4, - ACTIONS(3756), 1, - anon_sym_COLON, - ACTIONS(4526), 1, + [114775] = 4, + ACTIONS(4367), 1, + anon_sym_COMMA, + ACTIONS(4479), 1, + anon_sym_in, + STATE(2465), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114789] = 4, + ACTIONS(4367), 1, + anon_sym_COMMA, + ACTIONS(4481), 1, + anon_sym_in, + STATE(2465), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114803] = 3, + ACTIONS(3618), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3620), 2, + anon_sym_LBRACE, anon_sym_RBRACE, - STATE(2617), 1, - sym_format_specifier, + [114815] = 4, + ACTIONS(3010), 1, + anon_sym_COMMA, + ACTIONS(3054), 1, + anon_sym_RPAREN, + STATE(2346), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115339] = 4, - ACTIONS(3381), 1, + [114829] = 4, + ACTIONS(4483), 1, anon_sym_COMMA, - ACTIONS(3383), 1, + ACTIONS(4485), 1, anon_sym_RBRACE, - STATE(2492), 1, - aux_sym_dictionary_repeat1, + STATE(2326), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115353] = 4, - ACTIONS(3934), 1, - anon_sym_RBRACK, - ACTIONS(4528), 1, + [114843] = 3, + ACTIONS(3962), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4023), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2481), 1, - aux_sym_case_clause_repeat1, + [114855] = 4, + ACTIONS(4487), 1, + anon_sym_SEMI, + ACTIONS(4489), 1, + sym__newline, + STATE(2237), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115367] = 4, - ACTIONS(3560), 1, + [114869] = 4, + ACTIONS(4025), 1, anon_sym_RPAREN, - ACTIONS(4531), 1, + ACTIONS(4491), 1, anon_sym_COMMA, - STATE(2482), 1, - aux_sym__collection_elements_repeat1, + STATE(2460), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115381] = 4, - ACTIONS(4073), 1, + [114883] = 4, + ACTIONS(3358), 1, anon_sym_COMMA, - ACTIONS(4534), 1, - anon_sym_in, - STATE(2486), 1, - aux_sym__patterns_repeat1, + ACTIONS(3360), 1, + anon_sym_RBRACE, + STATE(2473), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115395] = 4, - ACTIONS(4073), 1, + [114897] = 4, + ACTIONS(3209), 1, + anon_sym_COLON, + ACTIONS(4494), 1, anon_sym_COMMA, - ACTIONS(4536), 1, - anon_sym_in, - STATE(2486), 1, + STATE(2462), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114911] = 4, + ACTIONS(2871), 1, + anon_sym_RBRACK, + ACTIONS(4497), 1, + anon_sym_COMMA, + STATE(2463), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115409] = 4, - ACTIONS(627), 1, + [114925] = 4, + ACTIONS(617), 1, sym__newline, - ACTIONS(4538), 1, + ACTIONS(4500), 1, anon_sym_SEMI, - STATE(2448), 1, + STATE(2300), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115423] = 4, - ACTIONS(995), 1, + [114939] = 4, + ACTIONS(971), 1, anon_sym_in, - ACTIONS(4540), 1, + ACTIONS(4502), 1, anon_sym_COMMA, - STATE(2497), 1, + STATE(2475), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115437] = 3, - ACTIONS(3614), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3616), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [115449] = 4, - ACTIONS(3056), 1, + [114953] = 4, + ACTIONS(3010), 1, anon_sym_COMMA, - ACTIONS(4542), 1, + ACTIONS(4504), 1, anon_sym_RPAREN, - STATE(2382), 1, + STATE(2346), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115463] = 4, - ACTIONS(3056), 1, + [114967] = 4, + ACTIONS(3010), 1, anon_sym_COMMA, - ACTIONS(4544), 1, + ACTIONS(4506), 1, anon_sym_RPAREN, - STATE(2382), 1, + STATE(2346), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115477] = 4, - ACTIONS(4190), 1, + [114981] = 4, + ACTIONS(3209), 1, + anon_sym_RPAREN, + ACTIONS(4508), 1, + anon_sym_COMMA, + STATE(2468), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114995] = 4, + ACTIONS(4195), 1, sym__newline, - ACTIONS(4192), 1, + ACTIONS(4197), 1, sym__indent, - STATE(812), 1, + STATE(782), 1, sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115491] = 4, - ACTIONS(4546), 1, + [115009] = 4, + ACTIONS(4511), 1, anon_sym_COMMA, - ACTIONS(4548), 1, + ACTIONS(4513), 1, anon_sym_COLON, - STATE(2466), 1, + STATE(2344), 1, aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115505] = 4, - ACTIONS(1327), 1, - anon_sym_RBRACE, - ACTIONS(4550), 1, + [115023] = 4, + ACTIONS(3468), 1, + anon_sym_RBRACK, + ACTIONS(4515), 1, anon_sym_COMMA, - STATE(2301), 1, - aux_sym_dictionary_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115519] = 2, + STATE(2471), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3524), 3, + [115037] = 4, + ACTIONS(1009), 1, + anon_sym_RBRACK, + ACTIONS(4518), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [115529] = 4, - ACTIONS(4190), 1, - sym__newline, - ACTIONS(4192), 1, - sym__indent, - STATE(799), 1, - sym__match_block, + STATE(2298), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115543] = 2, + [115051] = 4, + ACTIONS(1295), 1, + anon_sym_RBRACE, + ACTIONS(4520), 1, + anon_sym_COMMA, + STATE(2293), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1686), 3, + [115065] = 4, + ACTIONS(4522), 1, anon_sym_RPAREN, + ACTIONS(4524), 1, anon_sym_COMMA, - anon_sym_EQ, - [115553] = 2, + STATE(2255), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3524), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [115563] = 4, - ACTIONS(2889), 1, + [115079] = 4, + ACTIONS(2871), 1, anon_sym_in, - ACTIONS(4552), 1, + ACTIONS(4526), 1, anon_sym_COMMA, - STATE(2497), 1, + STATE(2475), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115577] = 4, - ACTIONS(4073), 1, + [115093] = 4, + ACTIONS(3010), 1, + anon_sym_COMMA, + ACTIONS(3074), 1, + anon_sym_RPAREN, + STATE(2346), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115107] = 4, + ACTIONS(4367), 1, anon_sym_COMMA, - ACTIONS(4555), 1, + ACTIONS(4529), 1, anon_sym_in, - STATE(2486), 1, + STATE(2465), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115591] = 4, - ACTIONS(3056), 1, + [115121] = 4, + ACTIONS(4367), 1, anon_sym_COMMA, - ACTIONS(3074), 1, - anon_sym_RPAREN, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4531), 1, + anon_sym_in, + STATE(2465), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115605] = 4, - ACTIONS(3058), 1, + [115135] = 4, + ACTIONS(3079), 1, anon_sym_RPAREN, - ACTIONS(3060), 1, + ACTIONS(3081), 1, anon_sym_COMMA, - STATE(2288), 1, + STATE(2376), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115619] = 4, - ACTIONS(4557), 1, + [115149] = 4, + ACTIONS(4533), 1, + anon_sym_COMMA, + ACTIONS(4535), 1, + anon_sym_RBRACK, + STATE(2348), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115163] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4537), 2, + sym__newline, + anon_sym_SEMI, + [115172] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4539), 2, anon_sym_RPAREN, - ACTIONS(4559), 1, anon_sym_COMMA, - STATE(2303), 1, - aux_sym_argument_list_repeat1, + [115181] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115633] = 4, - ACTIONS(2969), 1, + ACTIONS(4086), 2, anon_sym_RPAREN, - ACTIONS(4561), 1, anon_sym_COMMA, - STATE(2317), 1, - aux_sym__parameters_repeat1, + [115190] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4541), 2, + anon_sym__, + sym_identifier, + [115199] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4543), 2, + sym__newline, + anon_sym_SEMI, + [115208] = 3, + ACTIONS(4545), 1, + sym_integer, + ACTIONS(4547), 1, + sym_float, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115219] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1581), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [115228] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1605), 2, + sym__dedent, + anon_sym_case, + [115237] = 3, + ACTIONS(4549), 1, + sym_integer, + ACTIONS(4551), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115647] = 4, - ACTIONS(3560), 1, - anon_sym_RBRACK, - ACTIONS(4563), 1, - anon_sym_COMMA, - STATE(2503), 1, - aux_sym__collection_elements_repeat1, + [115248] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115661] = 3, - ACTIONS(1698), 1, - anon_sym_except, + ACTIONS(3318), 2, + sym__newline, + anon_sym_SEMI, + [115257] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 2, - anon_sym_except_STAR, - anon_sym_finally, - [115673] = 4, - ACTIONS(3303), 1, - anon_sym_COMMA, - ACTIONS(3305), 1, - anon_sym_RBRACK, - STATE(2407), 1, - aux_sym_subscript_repeat1, + ACTIONS(4553), 2, + sym__dedent, + anon_sym_case, + [115266] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115687] = 4, - ACTIONS(2889), 1, - anon_sym_RPAREN, - ACTIONS(4566), 1, - anon_sym_COMMA, - STATE(2506), 1, - aux_sym__patterns_repeat1, + ACTIONS(4555), 2, + sym__dedent, + anon_sym_case, + [115275] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115701] = 4, - ACTIONS(3801), 1, - anon_sym_LPAREN, - ACTIONS(4569), 1, + ACTIONS(4557), 2, + sym__dedent, + anon_sym_case, + [115284] = 3, + ACTIONS(4559), 1, anon_sym_COLON, - STATE(2784), 1, - sym_argument_list, + ACTIONS(4561), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115715] = 4, - ACTIONS(3756), 1, - anon_sym_COLON, - ACTIONS(4571), 1, - anon_sym_RBRACE, - STATE(2663), 1, - sym_format_specifier, + [115295] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115729] = 4, - ACTIONS(4190), 1, - sym__newline, - ACTIONS(4192), 1, - sym__indent, - STATE(820), 1, - sym__match_block, + ACTIONS(4563), 2, + sym__dedent, + anon_sym_case, + [115304] = 3, + ACTIONS(4565), 1, + sym_integer, + ACTIONS(4567), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115743] = 4, - ACTIONS(4073), 1, - anon_sym_COMMA, - ACTIONS(4573), 1, - anon_sym_in, - STATE(2486), 1, - aux_sym__patterns_repeat1, + [115315] = 3, + ACTIONS(3885), 1, + anon_sym_LPAREN, + STATE(2540), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115757] = 4, - ACTIONS(4073), 1, - anon_sym_COMMA, - ACTIONS(4575), 1, - anon_sym_in, - STATE(2486), 1, - aux_sym__patterns_repeat1, + [115326] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115771] = 4, - ACTIONS(2054), 1, - anon_sym_RPAREN, - ACTIONS(4577), 1, + ACTIONS(4140), 2, anon_sym_COMMA, - STATE(2506), 1, - aux_sym__patterns_repeat1, + anon_sym_RBRACE, + [115335] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115785] = 2, + ACTIONS(4569), 2, + sym__dedent, + anon_sym_case, + [115344] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3528), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [115794] = 2, + ACTIONS(4571), 2, + anon_sym__, + sym_identifier, + [115353] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4011), 2, - anon_sym_COMMA, - anon_sym_COLON, - [115803] = 3, - ACTIONS(4579), 1, + ACTIONS(4573), 2, + sym__dedent, + anon_sym_case, + [115362] = 3, + ACTIONS(4575), 1, sym_integer, - ACTIONS(4581), 1, + ACTIONS(4577), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115814] = 2, + [115373] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4205), 2, - anon_sym_RPAREN, + ACTIONS(3987), 2, anon_sym_COMMA, - [115823] = 2, + anon_sym_COLON, + [115382] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4579), 2, + sym__dedent, + anon_sym_case, + [115391] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 2, + ACTIONS(4581), 2, sym__newline, anon_sym_SEMI, - [115832] = 3, - ACTIONS(4585), 1, + [115400] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4086), 2, + anon_sym_COMMA, + anon_sym_COLON, + [115409] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3468), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115418] = 3, + ACTIONS(4583), 1, sym_integer, - ACTIONS(4587), 1, + ACTIONS(4585), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115843] = 2, + [115429] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3195), 2, + ACTIONS(4160), 2, sym__newline, anon_sym_SEMI, - [115852] = 2, + [115438] = 3, + ACTIONS(4587), 1, + sym_integer, + ACTIONS(4589), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4589), 2, - anon_sym_COLON, - anon_sym_DASH_GT, - [115861] = 2, + [115449] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(4591), 2, - sym__dedent, - anon_sym_case, - [115870] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4593), 2, - sym__newline, - anon_sym_SEMI, - [115879] = 2, + anon_sym__, + sym_identifier, + [115458] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4427), 2, + ACTIONS(3626), 2, anon_sym_RPAREN, anon_sym_COMMA, - [115888] = 3, - ACTIONS(4595), 1, + [115467] = 3, + ACTIONS(4593), 1, sym_integer, - ACTIONS(4597), 1, + ACTIONS(4595), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115899] = 2, + [115478] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3195), 2, + ACTIONS(4074), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [115908] = 2, + anon_sym_COLON, + [115487] = 3, + ACTIONS(3885), 1, + anon_sym_LPAREN, + STATE(2543), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4599), 2, + [115498] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4597), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [115917] = 3, + [115507] = 3, + ACTIONS(4599), 1, + sym_integer, ACTIONS(4601), 1, - anon_sym_COLON, - ACTIONS(4603), 1, - anon_sym_DASH_GT, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115928] = 2, + [115518] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4605), 2, - sym__dedent, - anon_sym_case, - [115937] = 2, + ACTIONS(3987), 2, + anon_sym_COMMA, + anon_sym_COLON, + [115527] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4607), 2, + ACTIONS(1722), 2, sym__dedent, anon_sym_case, - [115946] = 2, + [115536] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1728), 2, + ACTIONS(4603), 2, sym__dedent, anon_sym_case, - [115955] = 2, + [115545] = 3, + ACTIONS(4605), 1, + sym_integer, + ACTIONS(4607), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4609), 2, - anon_sym__, - sym_identifier, - [115964] = 2, + [115556] = 3, + ACTIONS(4609), 1, + sym_integer, + ACTIONS(4611), 1, + sym_float, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115567] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3172), 2, + sym__newline, + anon_sym_SEMI, + [115576] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4611), 2, + ACTIONS(4613), 2, sym__dedent, anon_sym_case, - [115973] = 3, - ACTIONS(4613), 1, - sym_integer, - ACTIONS(4615), 1, - sym_float, + [115585] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115984] = 2, + ACTIONS(4539), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [115594] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4617), 2, - anon_sym__, - sym_identifier, - [115993] = 2, + ACTIONS(4615), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [115603] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4619), 2, + ACTIONS(3172), 2, anon_sym_COMMA, anon_sym_RBRACK, - [116002] = 3, - ACTIONS(4621), 1, - sym_integer, - ACTIONS(4623), 1, - sym_float, + [115612] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116013] = 2, + ACTIONS(4617), 2, + sym__dedent, + anon_sym_case, + [115621] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4619), 2, + ACTIONS(3468), 2, anon_sym_COMMA, anon_sym_RBRACE, - [116022] = 2, + [115630] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4625), 2, + ACTIONS(4619), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [115639] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2880), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [116031] = 2, + [115648] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4627), 2, + ACTIONS(4621), 2, sym__dedent, anon_sym_case, - [116040] = 2, + [115657] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4629), 2, + ACTIONS(4623), 2, sym__dedent, anon_sym_case, - [116049] = 2, + [115666] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4205), 2, - anon_sym_COMMA, - anon_sym_COLON, - [116058] = 2, + ACTIONS(4625), 2, + sym__newline, + anon_sym_SEMI, + [115675] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3560), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [116067] = 3, - ACTIONS(4631), 1, - sym_integer, - ACTIONS(4633), 1, - sym_float, + ACTIONS(3223), 2, + sym__newline, + anon_sym_SEMI, + [115684] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116078] = 2, + ACTIONS(4627), 2, + sym__newline, + anon_sym_SEMI, + [115693] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4178), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [116087] = 2, + ACTIONS(1692), 2, + sym__dedent, + anon_sym_case, + [115702] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4635), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [116096] = 3, - ACTIONS(4637), 1, - sym_integer, - ACTIONS(4639), 1, - sym_float, + ACTIONS(4629), 2, + sym__newline, + anon_sym_SEMI, + [115711] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116107] = 2, + ACTIONS(3429), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [115720] = 3, + ACTIONS(4631), 1, + anon_sym_COLON, + ACTIONS(4633), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4011), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [116116] = 2, + [115731] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4625), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [116125] = 2, + ACTIONS(4635), 2, + sym__newline, + anon_sym_SEMI, + [115740] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3195), 2, + ACTIONS(2871), 2, anon_sym_RPAREN, anon_sym_COMMA, - [116134] = 2, + [115749] = 3, + ACTIONS(4637), 1, + anon_sym_COLON, + ACTIONS(4639), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4641), 2, + [115760] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3987), 2, anon_sym_RPAREN, anon_sym_COMMA, - [116143] = 2, + [115769] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4342), 2, - anon_sym_RPAREN, + ACTIONS(2878), 2, anon_sym_COMMA, - [116152] = 2, + anon_sym_RBRACK, + [115778] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4643), 2, - sym__dedent, - anon_sym_case, - [116161] = 3, - ACTIONS(3969), 1, - anon_sym_LPAREN, - STATE(2588), 1, - sym_parameters, + ACTIONS(1581), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115787] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116172] = 2, + ACTIONS(4641), 2, + sym__newline, + anon_sym_SEMI, + [115796] = 3, + ACTIONS(4643), 1, + anon_sym_COLON, + ACTIONS(4645), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4645), 2, - sym__dedent, - anon_sym_case, - [116181] = 2, + [115807] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2898), 2, + ACTIONS(3172), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [116190] = 3, + [115816] = 3, ACTIONS(4647), 1, - sym_integer, + anon_sym_COLON, ACTIONS(4649), 1, - sym_float, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [116201] = 2, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4461), 2, - sym__newline, - anon_sym_SEMI, - [116210] = 2, + [115827] = 3, + ACTIONS(4651), 1, + anon_sym_COLON, + ACTIONS(4653), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4651), 2, - sym__newline, - anon_sym_SEMI, - [116219] = 3, - ACTIONS(4653), 1, - anon_sym_COMMA, - STATE(1963), 1, - aux_sym__patterns_repeat1, + [115838] = 3, + ACTIONS(4655), 1, + anon_sym_COLON, + ACTIONS(4657), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116230] = 2, + [115849] = 3, + ACTIONS(4659), 1, + anon_sym_COLON, + ACTIONS(4661), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4011), 2, - anon_sym_COMMA, - anon_sym_COLON, - [116239] = 2, + [115860] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3385), 2, + ACTIONS(4074), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [116248] = 2, + [115869] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4655), 2, + ACTIONS(4663), 2, sym__newline, anon_sym_SEMI, - [116257] = 2, + [115878] = 3, + ACTIONS(4665), 1, + sym_integer, + ACTIONS(4667), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4657), 2, - anon_sym__, - sym_identifier, - [116266] = 2, + [115889] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4659), 2, - anon_sym_COLON, - anon_sym_DASH_GT, - [116275] = 2, + ACTIONS(4669), 2, + sym__newline, + anon_sym_SEMI, + [115898] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4342), 2, + ACTIONS(2880), 2, anon_sym_COMMA, - anon_sym_COLON, - [116284] = 2, + anon_sym_RBRACK, + [115907] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4661), 2, + ACTIONS(4671), 2, sym__newline, anon_sym_SEMI, - [116293] = 2, + [115916] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4663), 2, + ACTIONS(1712), 2, sym__dedent, anon_sym_case, - [116302] = 2, + [115925] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3315), 2, - sym__newline, - anon_sym_SEMI, - [116311] = 2, + ACTIONS(4673), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [115934] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 2, + ACTIONS(1625), 2, sym__dedent, anon_sym_case, - [116320] = 2, + [115943] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4665), 2, + ACTIONS(4675), 2, sym__newline, anon_sym_SEMI, - [116329] = 2, + [115952] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4619), 2, + ACTIONS(4023), 2, anon_sym_RPAREN, anon_sym_COMMA, - [116338] = 3, - ACTIONS(4667), 1, - anon_sym_COLON, - ACTIONS(4669), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [116349] = 2, + [115961] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4671), 2, - sym__dedent, - anon_sym_case, - [116358] = 2, + ACTIONS(2871), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [115970] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4673), 2, - sym__dedent, - anon_sym_case, - [116367] = 3, - ACTIONS(4675), 1, - sym_integer, + ACTIONS(3068), 2, + sym__newline, + anon_sym_SEMI, + [115979] = 3, ACTIONS(4677), 1, + sym_integer, + ACTIONS(4679), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116378] = 2, + [115990] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4679), 2, - sym__dedent, - anon_sym_case, - [116387] = 2, + ACTIONS(4451), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115999] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(4681), 2, - sym__newline, - anon_sym_SEMI, - [116396] = 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [116008] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4683), 2, - sym__newline, - anon_sym_SEMI, - [116405] = 2, + ACTIONS(4539), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [116017] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4625), 2, - anon_sym_RPAREN, + ACTIONS(4681), 2, anon_sym_COMMA, - [116414] = 2, + anon_sym_RBRACE, + [116026] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3560), 2, - anon_sym_RPAREN, + ACTIONS(4683), 2, anon_sym_COMMA, - [116423] = 2, + anon_sym_COLON, + [116035] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(4685), 2, - anon_sym__, - sym_identifier, - [116432] = 2, + sym__newline, + anon_sym_SEMI, + [116044] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3468), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [116053] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(4687), 2, sym__dedent, anon_sym_case, - [116441] = 2, + [116062] = 3, + ACTIONS(3885), 1, + anon_sym_LPAREN, + STATE(2551), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4689), 2, - sym__newline, - anon_sym_SEMI, - [116450] = 2, + [116073] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3560), 2, + ACTIONS(4681), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [116459] = 3, - ACTIONS(4691), 1, - anon_sym_COLON, - ACTIONS(4693), 1, - anon_sym_DASH_GT, + [116082] = 3, + ACTIONS(3885), 1, + anon_sym_LPAREN, + STATE(2553), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116470] = 3, - ACTIONS(4695), 1, - anon_sym_COLON, - ACTIONS(4697), 1, - anon_sym_DASH_GT, + [116093] = 3, + ACTIONS(4689), 1, + anon_sym_COMMA, + STATE(1890), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116481] = 3, - ACTIONS(4699), 1, - anon_sym_COLON, - ACTIONS(4701), 1, - anon_sym_DASH_GT, + [116104] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116492] = 3, - ACTIONS(4703), 1, - anon_sym_COLON, - ACTIONS(4705), 1, - anon_sym_DASH_GT, + ACTIONS(4691), 2, + anon_sym__, + sym_identifier, + [116113] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116503] = 3, - ACTIONS(4707), 1, - anon_sym_COLON, - ACTIONS(4709), 1, - anon_sym_DASH_GT, + ACTIONS(4683), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [116122] = 2, + ACTIONS(4693), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116514] = 3, - ACTIONS(4711), 1, - sym_integer, - ACTIONS(4713), 1, - sym_float, + [116130] = 2, + ACTIONS(4695), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116525] = 2, + [116138] = 2, + ACTIONS(3116), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3317), 2, - sym__newline, - anon_sym_SEMI, - [116534] = 3, - ACTIONS(4715), 1, - sym_integer, - ACTIONS(4717), 1, - sym_float, + [116146] = 2, + ACTIONS(4697), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116545] = 2, + [116154] = 2, + ACTIONS(4699), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1732), 2, - sym__dedent, - anon_sym_case, - [116554] = 3, - ACTIONS(4719), 1, - sym_integer, - ACTIONS(4721), 1, - sym_float, + [116162] = 2, + ACTIONS(4369), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116565] = 2, + [116170] = 2, + ACTIONS(4701), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4723), 2, - sym__newline, - anon_sym_SEMI, - [116574] = 2, + [116178] = 2, + ACTIONS(4703), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 2, - anon_sym_COMMA, + [116186] = 2, + ACTIONS(4705), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116194] = 2, + ACTIONS(4707), 1, anon_sym_RBRACK, - [116583] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [116592] = 2, + [116202] = 2, + ACTIONS(4709), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4725), 2, - sym__newline, - anon_sym_SEMI, - [116601] = 2, + [116210] = 2, + ACTIONS(3356), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2904), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [116610] = 3, - ACTIONS(4727), 1, + [116218] = 2, + ACTIONS(4711), 1, anon_sym_COLON, - ACTIONS(4729), 1, - anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116621] = 2, + [116226] = 2, + ACTIONS(3050), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2904), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [116630] = 3, - ACTIONS(3969), 1, - anon_sym_LPAREN, - STATE(2572), 1, - sym_parameters, + [116234] = 2, + ACTIONS(4713), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116641] = 2, + [116242] = 2, + ACTIONS(4715), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1722), 2, - sym__dedent, - anon_sym_case, - [116650] = 2, + [116250] = 2, + ACTIONS(4717), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3066), 2, - sym__newline, - anon_sym_SEMI, - [116659] = 2, + [116258] = 2, + ACTIONS(3034), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 2, - sym__dedent, - anon_sym_case, - [116668] = 2, + [116266] = 2, + ACTIONS(4719), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116274] = 2, + ACTIONS(4721), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4017), 2, + [116282] = 2, + ACTIONS(4723), 1, anon_sym_RPAREN, - anon_sym_COMMA, - [116677] = 3, - ACTIONS(3969), 1, - anon_sym_LPAREN, - STATE(2587), 1, - sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116688] = 2, + [116290] = 2, + ACTIONS(4725), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4731), 2, - sym__newline, - anon_sym_SEMI, - [116697] = 3, - ACTIONS(3969), 1, - anon_sym_LPAREN, - STATE(2589), 1, - sym_parameters, + [116298] = 2, + ACTIONS(4727), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116708] = 2, + [116306] = 2, + ACTIONS(4729), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4635), 2, - anon_sym_COMMA, + [116314] = 2, + ACTIONS(4731), 1, anon_sym_COLON, - [116717] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2889), 2, + [116322] = 2, + ACTIONS(3120), 1, anon_sym_RPAREN, - anon_sym_COMMA, - [116726] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2889), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [116735] = 2, + [116330] = 2, + ACTIONS(4733), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4733), 2, - sym__newline, - anon_sym_SEMI, - [116744] = 2, + [116338] = 2, + ACTIONS(3419), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116346] = 2, ACTIONS(4735), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116752] = 2, + [116354] = 2, ACTIONS(4737), 1, - anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116760] = 2, + [116362] = 2, ACTIONS(4739), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116768] = 2, - ACTIONS(4741), 1, - anon_sym_RBRACE, + [116370] = 2, + ACTIONS(4387), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116776] = 2, - ACTIONS(4743), 1, + [116378] = 2, + ACTIONS(4741), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116784] = 2, - ACTIONS(3407), 1, - anon_sym_RBRACE, + [116386] = 2, + ACTIONS(4743), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116792] = 2, + [116394] = 2, ACTIONS(4745), 1, - sym_identifier, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116800] = 2, + [116402] = 2, ACTIONS(4747), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116808] = 2, + [116410] = 2, ACTIONS(4749), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116816] = 2, + [116418] = 2, ACTIONS(4751), 1, - anon_sym_COLON, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116824] = 2, + [116426] = 2, ACTIONS(4753), 1, - anon_sym_COLON, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116434] = 2, + ACTIONS(3409), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116832] = 2, + [116442] = 2, ACTIONS(4755), 1, - anon_sym_COLON, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116840] = 2, + [116450] = 2, ACTIONS(4757), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116848] = 2, + [116458] = 2, ACTIONS(4759), 1, - anon_sym_import, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116856] = 2, + [116466] = 2, ACTIONS(4761), 1, - anon_sym_RPAREN, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116864] = 2, + [116474] = 2, ACTIONS(4763), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116872] = 2, + [116482] = 2, ACTIONS(4765), 1, - anon_sym_COLON_EQ, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116880] = 2, + [116490] = 2, ACTIONS(4767), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116888] = 2, + [116498] = 2, ACTIONS(4769), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116896] = 2, + [116506] = 2, ACTIONS(4771), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116904] = 2, - ACTIONS(4773), 1, + [116514] = 2, + ACTIONS(3335), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116912] = 2, + [116522] = 2, + ACTIONS(4773), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116530] = 2, ACTIONS(4775), 1, - anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116920] = 2, - ACTIONS(3144), 1, - anon_sym_RPAREN, + [116538] = 2, + ACTIONS(1495), 1, + anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116928] = 2, + [116546] = 2, ACTIONS(4777), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116936] = 2, + [116554] = 2, ACTIONS(4779), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116944] = 2, + [116562] = 2, ACTIONS(4781), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116952] = 2, + [116570] = 2, ACTIONS(4783), 1, - anon_sym_import, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116960] = 2, + [116578] = 2, ACTIONS(4785), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [116968] = 2, - ACTIONS(3079), 1, - anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116976] = 2, + [116586] = 2, ACTIONS(4787), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116984] = 2, + [116594] = 2, ACTIONS(4789), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116992] = 2, + [116602] = 2, ACTIONS(4791), 1, - anon_sym_COLON_EQ, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117000] = 2, + [116610] = 2, ACTIONS(4793), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117008] = 2, + [116618] = 2, ACTIONS(4795), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117016] = 2, - ACTIONS(3457), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117024] = 2, + [116626] = 2, ACTIONS(4797), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117032] = 2, + [116634] = 2, ACTIONS(4799), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117040] = 2, + [116642] = 2, ACTIONS(4801), 1, - anon_sym_COLON, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117048] = 2, + [116650] = 2, ACTIONS(4803), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117056] = 2, - ACTIONS(1467), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117064] = 2, + [116658] = 2, ACTIONS(4805), 1, - anon_sym_RBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117072] = 2, + [116666] = 2, ACTIONS(4807), 1, - anon_sym_COLON, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117080] = 2, + [116674] = 2, ACTIONS(4809), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117088] = 2, + [116682] = 2, ACTIONS(4811), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117096] = 2, + [116690] = 2, ACTIONS(4813), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117104] = 2, + [116698] = 2, ACTIONS(4815), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117112] = 2, + [116706] = 2, ACTIONS(4817), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117120] = 2, + [116714] = 2, ACTIONS(4819), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117128] = 2, + [116722] = 2, ACTIONS(4821), 1, - anon_sym_COLON, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117136] = 2, + [116730] = 2, ACTIONS(4823), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117144] = 2, + [116738] = 2, ACTIONS(4825), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117152] = 2, + [116746] = 2, + ACTIONS(3437), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116754] = 2, ACTIONS(4827), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117160] = 2, + [116762] = 2, + ACTIONS(3405), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116770] = 2, ACTIONS(4829), 1, - anon_sym_RBRACK, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117168] = 2, + [116778] = 2, ACTIONS(4831), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117176] = 2, + [116786] = 2, ACTIONS(4833), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117184] = 2, + [116794] = 2, ACTIONS(4835), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117192] = 2, + [116802] = 2, ACTIONS(4837), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117200] = 2, - ACTIONS(3403), 1, - anon_sym_RBRACE, + [116810] = 2, + ACTIONS(4839), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117208] = 2, - ACTIONS(4839), 1, - anon_sym_COLON_EQ, + [116818] = 2, + ACTIONS(4449), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117216] = 2, + [116826] = 2, ACTIONS(4841), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117224] = 2, - ACTIONS(4843), 1, + [116834] = 2, + ACTIONS(3390), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116842] = 2, + ACTIONS(3433), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117232] = 2, + [116850] = 2, + ACTIONS(4843), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116858] = 2, + ACTIONS(4443), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116866] = 2, ACTIONS(4845), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117240] = 2, + [116874] = 2, ACTIONS(4847), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117248] = 2, + [116882] = 2, ACTIONS(4849), 1, - anon_sym_RBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117256] = 2, + [116890] = 2, ACTIONS(4851), 1, - anon_sym_COLON_EQ, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117264] = 2, - ACTIONS(4853), 1, - anon_sym_COLON, + [116898] = 2, + ACTIONS(4453), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117272] = 2, - ACTIONS(4855), 1, - sym_identifier, + [116906] = 2, + ACTIONS(3392), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117280] = 2, - ACTIONS(1473), 1, - anon_sym_def, + [116914] = 2, + ACTIONS(4853), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117288] = 2, - ACTIONS(4857), 1, - sym_identifier, + [116922] = 2, + ACTIONS(4855), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117296] = 2, - ACTIONS(3134), 1, - anon_sym_RPAREN, + [116930] = 2, + ACTIONS(4857), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117304] = 2, + [116938] = 2, ACTIONS(4859), 1, - anon_sym_COLON_EQ, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117312] = 2, + [116946] = 2, ACTIONS(4861), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117320] = 2, + [116954] = 2, ACTIONS(4863), 1, - anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116962] = 2, + ACTIONS(3342), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117328] = 2, + [116970] = 2, ACTIONS(4865), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117336] = 2, + [116978] = 2, ACTIONS(4867), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117344] = 2, + [116986] = 2, ACTIONS(4869), 1, - anon_sym_RBRACK, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117352] = 2, + [116994] = 2, ACTIONS(4871), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117360] = 2, + [117002] = 2, ACTIONS(4873), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117368] = 2, + [117010] = 2, ACTIONS(4875), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117376] = 2, + [117018] = 2, ACTIONS(4877), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117384] = 2, + [117026] = 2, + ACTIONS(4445), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [117034] = 2, ACTIONS(4879), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117392] = 2, + [117042] = 2, ACTIONS(4881), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117400] = 2, + [117050] = 2, ACTIONS(4883), 1, - sym_identifier, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [117058] = 2, + ACTIONS(3413), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117408] = 2, + [117066] = 2, ACTIONS(4885), 1, - anon_sym_COLON, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117416] = 2, - ACTIONS(4887), 1, - anon_sym_COLON, + [117074] = 2, + ACTIONS(3095), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117424] = 2, - ACTIONS(4889), 1, + [117082] = 2, + ACTIONS(4887), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117432] = 2, - ACTIONS(4510), 1, + [117090] = 2, + ACTIONS(4479), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117440] = 2, - ACTIONS(4891), 1, - anon_sym_for, + [117098] = 2, + ACTIONS(4889), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117448] = 2, - ACTIONS(3356), 1, - anon_sym_COLON, + [117106] = 2, + ACTIONS(4481), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117456] = 2, - ACTIONS(4893), 1, + [117114] = 2, + ACTIONS(4891), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117464] = 2, + [117122] = 2, + ACTIONS(4893), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [117130] = 2, ACTIONS(4895), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117472] = 2, + [117138] = 2, ACTIONS(4897), 1, - anon_sym_COLON, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117480] = 2, + [117146] = 2, ACTIONS(4899), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117488] = 2, - ACTIONS(4901), 1, + [117154] = 2, + ACTIONS(1469), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117496] = 2, - ACTIONS(3089), 1, + [117162] = 2, + ACTIONS(4901), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117504] = 2, - ACTIONS(4512), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117512] = 2, + [117170] = 2, ACTIONS(4903), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117520] = 2, - ACTIONS(3362), 1, - anon_sym_COLON, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117528] = 2, + [117178] = 2, ACTIONS(4905), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117536] = 2, - ACTIONS(4907), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117544] = 2, - ACTIONS(4075), 1, - anon_sym_in, + [117186] = 2, + ACTIONS(3064), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117552] = 2, - ACTIONS(3101), 1, - anon_sym_RPAREN, + [117194] = 2, + ACTIONS(4907), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117560] = 2, + [117202] = 2, ACTIONS(4909), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117568] = 2, + [117210] = 2, ACTIONS(4911), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117576] = 2, + [117218] = 2, ACTIONS(4913), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117584] = 2, + [117226] = 2, ACTIONS(4915), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117592] = 2, - ACTIONS(4917), 1, + [117234] = 2, + ACTIONS(3360), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117600] = 2, - ACTIONS(4919), 1, + [117242] = 2, + ACTIONS(4917), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117608] = 2, - ACTIONS(4921), 1, - anon_sym_RBRACK, + [117250] = 2, + ACTIONS(4919), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117616] = 2, - ACTIONS(4923), 1, - anon_sym_RBRACK, + [117258] = 2, + ACTIONS(4921), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117624] = 2, - ACTIONS(4925), 1, - anon_sym_RBRACK, + [117266] = 2, + ACTIONS(4923), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117632] = 2, - ACTIONS(3383), 1, - anon_sym_RBRACE, + [117274] = 2, + ACTIONS(4925), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117640] = 2, + [117282] = 2, ACTIONS(4927), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117648] = 2, + [117290] = 2, ACTIONS(4929), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117656] = 2, + [117298] = 2, ACTIONS(4931), 1, - anon_sym_in, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117664] = 2, + [117306] = 2, ACTIONS(4933), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117672] = 2, + [117314] = 2, ACTIONS(4935), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117680] = 2, - ACTIONS(3420), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117688] = 2, + [117322] = 2, ACTIONS(4937), 1, - ts_builtin_sym_end, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117696] = 2, - ACTIONS(4939), 1, - anon_sym_import, + [117330] = 2, + ACTIONS(3085), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117704] = 2, - ACTIONS(4534), 1, - anon_sym_in, + [117338] = 2, + ACTIONS(4939), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117712] = 2, + [117346] = 2, ACTIONS(4941), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117720] = 2, - ACTIONS(4536), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117728] = 2, + [117354] = 2, ACTIONS(4943), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117736] = 2, + [117362] = 2, ACTIONS(4945), 1, - anon_sym_COLON, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117744] = 2, + [117370] = 2, ACTIONS(4947), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117752] = 2, + [117378] = 2, ACTIONS(4949), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117760] = 2, + [117386] = 2, ACTIONS(4951), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117768] = 2, + [117394] = 2, ACTIONS(4953), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117776] = 2, + [117402] = 2, ACTIONS(4955), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117784] = 2, + [117410] = 2, ACTIONS(4957), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117792] = 2, + [117418] = 2, ACTIONS(4959), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117800] = 2, + [117426] = 2, ACTIONS(4961), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117808] = 2, + [117434] = 2, ACTIONS(4963), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117816] = 2, + [117442] = 2, ACTIONS(4965), 1, - anon_sym_RBRACE, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117824] = 2, + [117450] = 2, ACTIONS(4967), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117832] = 2, + [117458] = 2, ACTIONS(4969), 1, - sym_identifier, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117840] = 2, + [117466] = 2, ACTIONS(4971), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117848] = 2, + [117474] = 2, ACTIONS(4973), 1, - anon_sym_RBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117856] = 2, + [117482] = 2, ACTIONS(4975), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117864] = 2, + [117490] = 2, ACTIONS(4977), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117872] = 2, + [117498] = 2, ACTIONS(4979), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117880] = 2, + [117506] = 2, ACTIONS(4981), 1, - anon_sym_COLON, + ts_builtin_sym_end, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117888] = 2, + [117514] = 2, ACTIONS(4983), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117896] = 2, + [117522] = 2, ACTIONS(4985), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117904] = 2, + [117530] = 2, ACTIONS(4987), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117912] = 2, - ACTIONS(3399), 1, - anon_sym_COLON, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117920] = 2, + [117538] = 2, ACTIONS(4989), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117928] = 2, + [117546] = 2, ACTIONS(4991), 1, - anon_sym_RBRACK, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117936] = 2, + [117554] = 2, ACTIONS(4993), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117944] = 2, - ACTIONS(4995), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117952] = 2, - ACTIONS(4997), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117960] = 2, - ACTIONS(4999), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117968] = 2, - ACTIONS(5001), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117976] = 2, - ACTIONS(5003), 1, + [117562] = 2, + ACTIONS(4995), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117984] = 2, - ACTIONS(5005), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117992] = 2, - ACTIONS(3058), 1, + [117570] = 2, + ACTIONS(3079), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118000] = 2, - ACTIONS(5007), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118008] = 2, - ACTIONS(5009), 1, + [117578] = 2, + ACTIONS(4997), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118016] = 2, - ACTIONS(5011), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118024] = 2, - ACTIONS(5013), 1, + [117586] = 2, + ACTIONS(4999), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118032] = 2, - ACTIONS(4555), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118040] = 2, - ACTIONS(5015), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118048] = 2, - ACTIONS(3409), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118056] = 2, - ACTIONS(5017), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118064] = 2, - ACTIONS(3370), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118072] = 2, - ACTIONS(3028), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118080] = 2, - ACTIONS(5019), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118088] = 2, - ACTIONS(3124), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118096] = 2, - ACTIONS(4159), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118104] = 2, - ACTIONS(5021), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118112] = 2, - ACTIONS(3435), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118120] = 2, - ACTIONS(5023), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118128] = 2, - ACTIONS(5025), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118136] = 2, - ACTIONS(5027), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118144] = 2, - ACTIONS(5029), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118152] = 2, - ACTIONS(5031), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118160] = 2, - ACTIONS(5033), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118168] = 2, - ACTIONS(5035), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118176] = 2, - ACTIONS(5037), 1, + [117594] = 2, + ACTIONS(5001), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118184] = 2, - ACTIONS(5039), 1, + [117602] = 2, + ACTIONS(5003), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118192] = 2, - ACTIONS(4115), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118200] = 2, - ACTIONS(5041), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118208] = 2, - ACTIONS(5043), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118216] = 2, - ACTIONS(5045), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118224] = 2, - ACTIONS(5047), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118232] = 2, - ACTIONS(4573), 1, + [117610] = 2, + ACTIONS(4529), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118240] = 2, - ACTIONS(1491), 1, + [117618] = 2, + ACTIONS(1503), 1, anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118248] = 2, - ACTIONS(5049), 1, + [117626] = 2, + ACTIONS(5005), 1, anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118256] = 2, - ACTIONS(5051), 1, + [117634] = 2, + ACTIONS(5007), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118264] = 2, - ACTIONS(4575), 1, + [117642] = 2, + ACTIONS(4531), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118272] = 2, - ACTIONS(5053), 1, + [117650] = 2, + ACTIONS(5009), 1, anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118280] = 2, - ACTIONS(5055), 1, - sym_identifier, + [117658] = 2, + ACTIONS(5011), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118288] = 2, - ACTIONS(3366), 1, - anon_sym_RBRACE, + [117666] = 2, + ACTIONS(5013), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118296] = 2, - ACTIONS(5057), 1, - sym_identifier, + [117674] = 2, + ACTIONS(5015), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(190)] = 0, - [SMALL_STATE(191)] = 124, - [SMALL_STATE(192)] = 250, - [SMALL_STATE(193)] = 374, - [SMALL_STATE(194)] = 498, - [SMALL_STATE(195)] = 622, - [SMALL_STATE(196)] = 748, - [SMALL_STATE(197)] = 872, - [SMALL_STATE(198)] = 996, - [SMALL_STATE(199)] = 1124, - [SMALL_STATE(200)] = 1252, - [SMALL_STATE(201)] = 1378, - [SMALL_STATE(202)] = 1502, - [SMALL_STATE(203)] = 1626, - [SMALL_STATE(204)] = 1752, - [SMALL_STATE(205)] = 1876, - [SMALL_STATE(206)] = 2000, - [SMALL_STATE(207)] = 2124, - [SMALL_STATE(208)] = 2250, - [SMALL_STATE(209)] = 2374, - [SMALL_STATE(210)] = 2498, - [SMALL_STATE(211)] = 2624, - [SMALL_STATE(212)] = 2750, - [SMALL_STATE(213)] = 2870, - [SMALL_STATE(214)] = 2996, - [SMALL_STATE(215)] = 3120, - [SMALL_STATE(216)] = 3244, - [SMALL_STATE(217)] = 3368, - [SMALL_STATE(218)] = 3488, - [SMALL_STATE(219)] = 3608, - [SMALL_STATE(220)] = 3734, - [SMALL_STATE(221)] = 3858, - [SMALL_STATE(222)] = 3982, - [SMALL_STATE(223)] = 4106, - [SMALL_STATE(224)] = 4213, - [SMALL_STATE(225)] = 4320, - [SMALL_STATE(226)] = 4436, - [SMALL_STATE(227)] = 4552, - [SMALL_STATE(228)] = 4668, - [SMALL_STATE(229)] = 4784, - [SMALL_STATE(230)] = 4900, - [SMALL_STATE(231)] = 5016, - [SMALL_STATE(232)] = 5132, - [SMALL_STATE(233)] = 5248, - [SMALL_STATE(234)] = 5364, - [SMALL_STATE(235)] = 5480, - [SMALL_STATE(236)] = 5593, - [SMALL_STATE(237)] = 5706, - [SMALL_STATE(238)] = 5819, - [SMALL_STATE(239)] = 5932, - [SMALL_STATE(240)] = 6049, - [SMALL_STATE(241)] = 6162, - [SMALL_STATE(242)] = 6275, - [SMALL_STATE(243)] = 6388, - [SMALL_STATE(244)] = 6501, - [SMALL_STATE(245)] = 6616, - [SMALL_STATE(246)] = 6727, - [SMALL_STATE(247)] = 6842, - [SMALL_STATE(248)] = 6957, - [SMALL_STATE(249)] = 7070, - [SMALL_STATE(250)] = 7175, - [SMALL_STATE(251)] = 7290, - [SMALL_STATE(252)] = 7403, - [SMALL_STATE(253)] = 7518, - [SMALL_STATE(254)] = 7631, - [SMALL_STATE(255)] = 7744, - [SMALL_STATE(256)] = 7857, - [SMALL_STATE(257)] = 7972, - [SMALL_STATE(258)] = 8085, - [SMALL_STATE(259)] = 8198, - [SMALL_STATE(260)] = 8313, - [SMALL_STATE(261)] = 8426, - [SMALL_STATE(262)] = 8539, - [SMALL_STATE(263)] = 8654, - [SMALL_STATE(264)] = 8767, - [SMALL_STATE(265)] = 8882, - [SMALL_STATE(266)] = 8995, - [SMALL_STATE(267)] = 9108, - [SMALL_STATE(268)] = 9221, - [SMALL_STATE(269)] = 9326, - [SMALL_STATE(270)] = 9439, - [SMALL_STATE(271)] = 9552, - [SMALL_STATE(272)] = 9665, - [SMALL_STATE(273)] = 9778, - [SMALL_STATE(274)] = 9890, - [SMALL_STATE(275)] = 10006, - [SMALL_STATE(276)] = 10118, - [SMALL_STATE(277)] = 10230, - [SMALL_STATE(278)] = 10346, - [SMALL_STATE(279)] = 10458, - [SMALL_STATE(280)] = 10570, - [SMALL_STATE(281)] = 10682, - [SMALL_STATE(282)] = 10794, - [SMALL_STATE(283)] = 10906, - [SMALL_STATE(284)] = 11018, - [SMALL_STATE(285)] = 11132, - [SMALL_STATE(286)] = 11244, - [SMALL_STATE(287)] = 11360, - [SMALL_STATE(288)] = 11472, - [SMALL_STATE(289)] = 11584, - [SMALL_STATE(290)] = 11696, - [SMALL_STATE(291)] = 11808, - [SMALL_STATE(292)] = 11920, - [SMALL_STATE(293)] = 12032, - [SMALL_STATE(294)] = 12144, - [SMALL_STATE(295)] = 12256, - [SMALL_STATE(296)] = 12370, - [SMALL_STATE(297)] = 12484, - [SMALL_STATE(298)] = 12596, - [SMALL_STATE(299)] = 12708, - [SMALL_STATE(300)] = 12820, - [SMALL_STATE(301)] = 12932, - [SMALL_STATE(302)] = 13044, - [SMALL_STATE(303)] = 13156, - [SMALL_STATE(304)] = 13268, - [SMALL_STATE(305)] = 13380, - [SMALL_STATE(306)] = 13494, - [SMALL_STATE(307)] = 13606, - [SMALL_STATE(308)] = 13720, - [SMALL_STATE(309)] = 13832, - [SMALL_STATE(310)] = 13948, - [SMALL_STATE(311)] = 14062, - [SMALL_STATE(312)] = 14174, - [SMALL_STATE(313)] = 14286, - [SMALL_STATE(314)] = 14398, - [SMALL_STATE(315)] = 14510, - [SMALL_STATE(316)] = 14622, - [SMALL_STATE(317)] = 14738, - [SMALL_STATE(318)] = 14854, - [SMALL_STATE(319)] = 14966, - [SMALL_STATE(320)] = 15078, - [SMALL_STATE(321)] = 15192, - [SMALL_STATE(322)] = 15304, - [SMALL_STATE(323)] = 15416, - [SMALL_STATE(324)] = 15528, - [SMALL_STATE(325)] = 15640, - [SMALL_STATE(326)] = 15754, - [SMALL_STATE(327)] = 15866, - [SMALL_STATE(328)] = 15975, - [SMALL_STATE(329)] = 16084, - [SMALL_STATE(330)] = 16193, - [SMALL_STATE(331)] = 16302, - [SMALL_STATE(332)] = 16411, - [SMALL_STATE(333)] = 16520, - [SMALL_STATE(334)] = 16625, - [SMALL_STATE(335)] = 16734, - [SMALL_STATE(336)] = 16843, - [SMALL_STATE(337)] = 16952, - [SMALL_STATE(338)] = 17061, - [SMALL_STATE(339)] = 17170, - [SMALL_STATE(340)] = 17279, - [SMALL_STATE(341)] = 17384, - [SMALL_STATE(342)] = 17493, - [SMALL_STATE(343)] = 17602, - [SMALL_STATE(344)] = 17711, - [SMALL_STATE(345)] = 17820, - [SMALL_STATE(346)] = 17929, - [SMALL_STATE(347)] = 18038, - [SMALL_STATE(348)] = 18135, - [SMALL_STATE(349)] = 18244, - [SMALL_STATE(350)] = 18350, - [SMALL_STATE(351)] = 18458, - [SMALL_STATE(352)] = 18566, - [SMALL_STATE(353)] = 18674, - [SMALL_STATE(354)] = 18782, - [SMALL_STATE(355)] = 18890, - [SMALL_STATE(356)] = 18998, - [SMALL_STATE(357)] = 19106, - [SMALL_STATE(358)] = 19214, - [SMALL_STATE(359)] = 19322, - [SMALL_STATE(360)] = 19430, - [SMALL_STATE(361)] = 19538, - [SMALL_STATE(362)] = 19646, - [SMALL_STATE(363)] = 19754, - [SMALL_STATE(364)] = 19862, - [SMALL_STATE(365)] = 19968, - [SMALL_STATE(366)] = 20076, - [SMALL_STATE(367)] = 20184, - [SMALL_STATE(368)] = 20292, - [SMALL_STATE(369)] = 20400, - [SMALL_STATE(370)] = 20508, - [SMALL_STATE(371)] = 20616, - [SMALL_STATE(372)] = 20722, - [SMALL_STATE(373)] = 20817, - [SMALL_STATE(374)] = 20924, - [SMALL_STATE(375)] = 21031, - [SMALL_STATE(376)] = 21138, - [SMALL_STATE(377)] = 21243, - [SMALL_STATE(378)] = 21350, - [SMALL_STATE(379)] = 21457, - [SMALL_STATE(380)] = 21564, - [SMALL_STATE(381)] = 21669, - [SMALL_STATE(382)] = 21776, - [SMALL_STATE(383)] = 21883, - [SMALL_STATE(384)] = 21990, - [SMALL_STATE(385)] = 22097, - [SMALL_STATE(386)] = 22204, - [SMALL_STATE(387)] = 22311, - [SMALL_STATE(388)] = 22418, - [SMALL_STATE(389)] = 22525, - [SMALL_STATE(390)] = 22632, - [SMALL_STATE(391)] = 22739, - [SMALL_STATE(392)] = 22846, - [SMALL_STATE(393)] = 22953, - [SMALL_STATE(394)] = 23060, - [SMALL_STATE(395)] = 23167, - [SMALL_STATE(396)] = 23274, - [SMALL_STATE(397)] = 23381, - [SMALL_STATE(398)] = 23486, - [SMALL_STATE(399)] = 23593, - [SMALL_STATE(400)] = 23698, - [SMALL_STATE(401)] = 23805, - [SMALL_STATE(402)] = 23912, - [SMALL_STATE(403)] = 24017, - [SMALL_STATE(404)] = 24122, - [SMALL_STATE(405)] = 24229, - [SMALL_STATE(406)] = 24336, - [SMALL_STATE(407)] = 24443, - [SMALL_STATE(408)] = 24538, - [SMALL_STATE(409)] = 24645, - [SMALL_STATE(410)] = 24752, - [SMALL_STATE(411)] = 24856, - [SMALL_STATE(412)] = 24958, - [SMALL_STATE(413)] = 25060, - [SMALL_STATE(414)] = 25162, - [SMALL_STATE(415)] = 25264, - [SMALL_STATE(416)] = 25366, - [SMALL_STATE(417)] = 25460, - [SMALL_STATE(418)] = 25554, - [SMALL_STATE(419)] = 25656, - [SMALL_STATE(420)] = 25758, - [SMALL_STATE(421)] = 25862, - [SMALL_STATE(422)] = 25966, - [SMALL_STATE(423)] = 26068, - [SMALL_STATE(424)] = 26172, - [SMALL_STATE(425)] = 26274, - [SMALL_STATE(426)] = 26376, - [SMALL_STATE(427)] = 26478, - [SMALL_STATE(428)] = 26580, - [SMALL_STATE(429)] = 26682, - [SMALL_STATE(430)] = 26786, - [SMALL_STATE(431)] = 26888, - [SMALL_STATE(432)] = 26990, - [SMALL_STATE(433)] = 27094, - [SMALL_STATE(434)] = 27196, - [SMALL_STATE(435)] = 27300, - [SMALL_STATE(436)] = 27402, - [SMALL_STATE(437)] = 27496, - [SMALL_STATE(438)] = 27600, - [SMALL_STATE(439)] = 27702, - [SMALL_STATE(440)] = 27798, - [SMALL_STATE(441)] = 27900, - [SMALL_STATE(442)] = 28002, - [SMALL_STATE(443)] = 28104, - [SMALL_STATE(444)] = 28206, - [SMALL_STATE(445)] = 28308, - [SMALL_STATE(446)] = 28410, - [SMALL_STATE(447)] = 28512, - [SMALL_STATE(448)] = 28614, - [SMALL_STATE(449)] = 28716, - [SMALL_STATE(450)] = 28810, - [SMALL_STATE(451)] = 28914, - [SMALL_STATE(452)] = 29018, - [SMALL_STATE(453)] = 29122, - [SMALL_STATE(454)] = 29226, - [SMALL_STATE(455)] = 29330, - [SMALL_STATE(456)] = 29434, - [SMALL_STATE(457)] = 29538, - [SMALL_STATE(458)] = 29642, - [SMALL_STATE(459)] = 29746, - [SMALL_STATE(460)] = 29850, - [SMALL_STATE(461)] = 29954, - [SMALL_STATE(462)] = 30056, - [SMALL_STATE(463)] = 30131, - [SMALL_STATE(464)] = 30232, - [SMALL_STATE(465)] = 30333, - [SMALL_STATE(466)] = 30434, - [SMALL_STATE(467)] = 30535, - [SMALL_STATE(468)] = 30636, - [SMALL_STATE(469)] = 30737, - [SMALL_STATE(470)] = 30838, - [SMALL_STATE(471)] = 30939, - [SMALL_STATE(472)] = 31014, - [SMALL_STATE(473)] = 31115, - [SMALL_STATE(474)] = 31216, - [SMALL_STATE(475)] = 31317, - [SMALL_STATE(476)] = 31418, - [SMALL_STATE(477)] = 31495, - [SMALL_STATE(478)] = 31570, - [SMALL_STATE(479)] = 31671, - [SMALL_STATE(480)] = 31772, - [SMALL_STATE(481)] = 31873, - [SMALL_STATE(482)] = 31971, - [SMALL_STATE(483)] = 32069, - [SMALL_STATE(484)] = 32167, - [SMALL_STATE(485)] = 32265, - [SMALL_STATE(486)] = 32363, - [SMALL_STATE(487)] = 32461, - [SMALL_STATE(488)] = 32559, - [SMALL_STATE(489)] = 32657, - [SMALL_STATE(490)] = 32755, - [SMALL_STATE(491)] = 32853, - [SMALL_STATE(492)] = 32951, - [SMALL_STATE(493)] = 33049, - [SMALL_STATE(494)] = 33147, - [SMALL_STATE(495)] = 33245, - [SMALL_STATE(496)] = 33317, - [SMALL_STATE(497)] = 33415, - [SMALL_STATE(498)] = 33513, - [SMALL_STATE(499)] = 33611, - [SMALL_STATE(500)] = 33709, - [SMALL_STATE(501)] = 33807, - [SMALL_STATE(502)] = 33905, - [SMALL_STATE(503)] = 34003, - [SMALL_STATE(504)] = 34075, - [SMALL_STATE(505)] = 34173, - [SMALL_STATE(506)] = 34271, - [SMALL_STATE(507)] = 34369, - [SMALL_STATE(508)] = 34467, - [SMALL_STATE(509)] = 34565, - [SMALL_STATE(510)] = 34663, - [SMALL_STATE(511)] = 34761, - [SMALL_STATE(512)] = 34859, - [SMALL_STATE(513)] = 34957, - [SMALL_STATE(514)] = 35057, - [SMALL_STATE(515)] = 35155, - [SMALL_STATE(516)] = 35253, - [SMALL_STATE(517)] = 35351, - [SMALL_STATE(518)] = 35449, - [SMALL_STATE(519)] = 35547, - [SMALL_STATE(520)] = 35645, - [SMALL_STATE(521)] = 35743, - [SMALL_STATE(522)] = 35841, - [SMALL_STATE(523)] = 35939, - [SMALL_STATE(524)] = 36037, - [SMALL_STATE(525)] = 36135, - [SMALL_STATE(526)] = 36235, - [SMALL_STATE(527)] = 36333, - [SMALL_STATE(528)] = 36431, - [SMALL_STATE(529)] = 36529, - [SMALL_STATE(530)] = 36627, - [SMALL_STATE(531)] = 36725, - [SMALL_STATE(532)] = 36823, - [SMALL_STATE(533)] = 36921, - [SMALL_STATE(534)] = 37019, - [SMALL_STATE(535)] = 37117, - [SMALL_STATE(536)] = 37215, - [SMALL_STATE(537)] = 37313, - [SMALL_STATE(538)] = 37411, - [SMALL_STATE(539)] = 37509, - [SMALL_STATE(540)] = 37607, - [SMALL_STATE(541)] = 37705, - [SMALL_STATE(542)] = 37803, - [SMALL_STATE(543)] = 37901, - [SMALL_STATE(544)] = 37999, - [SMALL_STATE(545)] = 38097, - [SMALL_STATE(546)] = 38197, - [SMALL_STATE(547)] = 38295, - [SMALL_STATE(548)] = 38393, - [SMALL_STATE(549)] = 38491, - [SMALL_STATE(550)] = 38589, - [SMALL_STATE(551)] = 38687, - [SMALL_STATE(552)] = 38785, - [SMALL_STATE(553)] = 38883, - [SMALL_STATE(554)] = 38981, - [SMALL_STATE(555)] = 39079, - [SMALL_STATE(556)] = 39177, - [SMALL_STATE(557)] = 39275, - [SMALL_STATE(558)] = 39373, - [SMALL_STATE(559)] = 39473, - [SMALL_STATE(560)] = 39571, - [SMALL_STATE(561)] = 39669, - [SMALL_STATE(562)] = 39767, - [SMALL_STATE(563)] = 39865, - [SMALL_STATE(564)] = 39963, - [SMALL_STATE(565)] = 40061, - [SMALL_STATE(566)] = 40161, - [SMALL_STATE(567)] = 40261, - [SMALL_STATE(568)] = 40359, - [SMALL_STATE(569)] = 40457, - [SMALL_STATE(570)] = 40557, - [SMALL_STATE(571)] = 40655, - [SMALL_STATE(572)] = 40753, - [SMALL_STATE(573)] = 40825, - [SMALL_STATE(574)] = 40897, - [SMALL_STATE(575)] = 40995, - [SMALL_STATE(576)] = 41093, - [SMALL_STATE(577)] = 41191, - [SMALL_STATE(578)] = 41289, - [SMALL_STATE(579)] = 41387, - [SMALL_STATE(580)] = 41485, - [SMALL_STATE(581)] = 41583, - [SMALL_STATE(582)] = 41681, - [SMALL_STATE(583)] = 41779, - [SMALL_STATE(584)] = 41877, - [SMALL_STATE(585)] = 41975, - [SMALL_STATE(586)] = 42073, - [SMALL_STATE(587)] = 42171, - [SMALL_STATE(588)] = 42269, - [SMALL_STATE(589)] = 42341, - [SMALL_STATE(590)] = 42413, - [SMALL_STATE(591)] = 42511, - [SMALL_STATE(592)] = 42609, - [SMALL_STATE(593)] = 42707, - [SMALL_STATE(594)] = 42805, - [SMALL_STATE(595)] = 42903, - [SMALL_STATE(596)] = 43001, - [SMALL_STATE(597)] = 43099, - [SMALL_STATE(598)] = 43197, - [SMALL_STATE(599)] = 43295, - [SMALL_STATE(600)] = 43393, - [SMALL_STATE(601)] = 43491, - [SMALL_STATE(602)] = 43589, - [SMALL_STATE(603)] = 43687, - [SMALL_STATE(604)] = 43785, - [SMALL_STATE(605)] = 43883, - [SMALL_STATE(606)] = 43981, - [SMALL_STATE(607)] = 44079, - [SMALL_STATE(608)] = 44151, - [SMALL_STATE(609)] = 44223, - [SMALL_STATE(610)] = 44321, - [SMALL_STATE(611)] = 44419, - [SMALL_STATE(612)] = 44492, - [SMALL_STATE(613)] = 44558, - [SMALL_STATE(614)] = 44620, - [SMALL_STATE(615)] = 44688, - [SMALL_STATE(616)] = 44756, - [SMALL_STATE(617)] = 44822, - [SMALL_STATE(618)] = 44890, - [SMALL_STATE(619)] = 44958, - [SMALL_STATE(620)] = 45026, - [SMALL_STATE(621)] = 45094, - [SMALL_STATE(622)] = 45162, - [SMALL_STATE(623)] = 45230, - [SMALL_STATE(624)] = 45298, - [SMALL_STATE(625)] = 45364, - [SMALL_STATE(626)] = 45432, - [SMALL_STATE(627)] = 45494, - [SMALL_STATE(628)] = 45556, - [SMALL_STATE(629)] = 45618, - [SMALL_STATE(630)] = 45681, - [SMALL_STATE(631)] = 45744, - [SMALL_STATE(632)] = 45805, - [SMALL_STATE(633)] = 45866, - [SMALL_STATE(634)] = 45929, - [SMALL_STATE(635)] = 45986, - [SMALL_STATE(636)] = 46043, - [SMALL_STATE(637)] = 46100, - [SMALL_STATE(638)] = 46157, - [SMALL_STATE(639)] = 46220, - [SMALL_STATE(640)] = 46281, - [SMALL_STATE(641)] = 46344, - [SMALL_STATE(642)] = 46407, - [SMALL_STATE(643)] = 46464, - [SMALL_STATE(644)] = 46529, - [SMALL_STATE(645)] = 46592, - [SMALL_STATE(646)] = 46655, - [SMALL_STATE(647)] = 46718, - [SMALL_STATE(648)] = 46781, - [SMALL_STATE(649)] = 46838, - [SMALL_STATE(650)] = 46895, - [SMALL_STATE(651)] = 46951, - [SMALL_STATE(652)] = 47007, - [SMALL_STATE(653)] = 47099, - [SMALL_STATE(654)] = 47155, - [SMALL_STATE(655)] = 47211, - [SMALL_STATE(656)] = 47267, - [SMALL_STATE(657)] = 47323, - [SMALL_STATE(658)] = 47379, - [SMALL_STATE(659)] = 47435, - [SMALL_STATE(660)] = 47491, - [SMALL_STATE(661)] = 47547, - [SMALL_STATE(662)] = 47603, - [SMALL_STATE(663)] = 47659, - [SMALL_STATE(664)] = 47715, - [SMALL_STATE(665)] = 47771, - [SMALL_STATE(666)] = 47827, - [SMALL_STATE(667)] = 47883, - [SMALL_STATE(668)] = 47939, - [SMALL_STATE(669)] = 47995, - [SMALL_STATE(670)] = 48051, - [SMALL_STATE(671)] = 48107, - [SMALL_STATE(672)] = 48163, - [SMALL_STATE(673)] = 48219, - [SMALL_STATE(674)] = 48275, - [SMALL_STATE(675)] = 48331, - [SMALL_STATE(676)] = 48387, - [SMALL_STATE(677)] = 48443, - [SMALL_STATE(678)] = 48499, - [SMALL_STATE(679)] = 48555, - [SMALL_STATE(680)] = 48611, - [SMALL_STATE(681)] = 48667, - [SMALL_STATE(682)] = 48723, - [SMALL_STATE(683)] = 48779, - [SMALL_STATE(684)] = 48835, - [SMALL_STATE(685)] = 48891, - [SMALL_STATE(686)] = 48983, - [SMALL_STATE(687)] = 49039, - [SMALL_STATE(688)] = 49095, - [SMALL_STATE(689)] = 49151, - [SMALL_STATE(690)] = 49207, - [SMALL_STATE(691)] = 49263, - [SMALL_STATE(692)] = 49319, - [SMALL_STATE(693)] = 49375, - [SMALL_STATE(694)] = 49431, - [SMALL_STATE(695)] = 49487, - [SMALL_STATE(696)] = 49543, - [SMALL_STATE(697)] = 49599, - [SMALL_STATE(698)] = 49655, - [SMALL_STATE(699)] = 49711, - [SMALL_STATE(700)] = 49767, - [SMALL_STATE(701)] = 49823, - [SMALL_STATE(702)] = 49879, - [SMALL_STATE(703)] = 49934, - [SMALL_STATE(704)] = 49993, - [SMALL_STATE(705)] = 50052, - [SMALL_STATE(706)] = 50111, - [SMALL_STATE(707)] = 50170, - [SMALL_STATE(708)] = 50229, - [SMALL_STATE(709)] = 50288, - [SMALL_STATE(710)] = 50347, - [SMALL_STATE(711)] = 50406, - [SMALL_STATE(712)] = 50465, - [SMALL_STATE(713)] = 50524, - [SMALL_STATE(714)] = 50579, - [SMALL_STATE(715)] = 50638, - [SMALL_STATE(716)] = 50697, - [SMALL_STATE(717)] = 50752, - [SMALL_STATE(718)] = 50807, - [SMALL_STATE(719)] = 50866, - [SMALL_STATE(720)] = 50921, - [SMALL_STATE(721)] = 50980, - [SMALL_STATE(722)] = 51039, - [SMALL_STATE(723)] = 51094, - [SMALL_STATE(724)] = 51153, - [SMALL_STATE(725)] = 51207, - [SMALL_STATE(726)] = 51261, - [SMALL_STATE(727)] = 51315, - [SMALL_STATE(728)] = 51407, - [SMALL_STATE(729)] = 51499, - [SMALL_STATE(730)] = 51553, - [SMALL_STATE(731)] = 51606, - [SMALL_STATE(732)] = 51659, - [SMALL_STATE(733)] = 51712, - [SMALL_STATE(734)] = 51765, - [SMALL_STATE(735)] = 51818, - [SMALL_STATE(736)] = 51871, - [SMALL_STATE(737)] = 51924, - [SMALL_STATE(738)] = 51977, - [SMALL_STATE(739)] = 52030, - [SMALL_STATE(740)] = 52083, - [SMALL_STATE(741)] = 52136, - [SMALL_STATE(742)] = 52189, - [SMALL_STATE(743)] = 52278, - [SMALL_STATE(744)] = 52331, - [SMALL_STATE(745)] = 52384, - [SMALL_STATE(746)] = 52437, - [SMALL_STATE(747)] = 52490, - [SMALL_STATE(748)] = 52543, - [SMALL_STATE(749)] = 52596, - [SMALL_STATE(750)] = 52649, - [SMALL_STATE(751)] = 52702, - [SMALL_STATE(752)] = 52755, - [SMALL_STATE(753)] = 52808, - [SMALL_STATE(754)] = 52861, - [SMALL_STATE(755)] = 52914, - [SMALL_STATE(756)] = 52967, - [SMALL_STATE(757)] = 53020, - [SMALL_STATE(758)] = 53073, - [SMALL_STATE(759)] = 53126, - [SMALL_STATE(760)] = 53179, - [SMALL_STATE(761)] = 53232, - [SMALL_STATE(762)] = 53285, - [SMALL_STATE(763)] = 53338, - [SMALL_STATE(764)] = 53391, - [SMALL_STATE(765)] = 53444, - [SMALL_STATE(766)] = 53497, - [SMALL_STATE(767)] = 53550, - [SMALL_STATE(768)] = 53603, - [SMALL_STATE(769)] = 53656, - [SMALL_STATE(770)] = 53745, - [SMALL_STATE(771)] = 53798, - [SMALL_STATE(772)] = 53887, - [SMALL_STATE(773)] = 53940, - [SMALL_STATE(774)] = 53993, - [SMALL_STATE(775)] = 54046, - [SMALL_STATE(776)] = 54099, - [SMALL_STATE(777)] = 54152, - [SMALL_STATE(778)] = 54205, - [SMALL_STATE(779)] = 54258, - [SMALL_STATE(780)] = 54311, - [SMALL_STATE(781)] = 54364, - [SMALL_STATE(782)] = 54417, - [SMALL_STATE(783)] = 54470, - [SMALL_STATE(784)] = 54523, - [SMALL_STATE(785)] = 54576, - [SMALL_STATE(786)] = 54629, - [SMALL_STATE(787)] = 54682, - [SMALL_STATE(788)] = 54735, - [SMALL_STATE(789)] = 54788, - [SMALL_STATE(790)] = 54841, - [SMALL_STATE(791)] = 54894, - [SMALL_STATE(792)] = 54947, - [SMALL_STATE(793)] = 55000, - [SMALL_STATE(794)] = 55053, - [SMALL_STATE(795)] = 55106, - [SMALL_STATE(796)] = 55195, - [SMALL_STATE(797)] = 55248, - [SMALL_STATE(798)] = 55301, - [SMALL_STATE(799)] = 55354, - [SMALL_STATE(800)] = 55407, - [SMALL_STATE(801)] = 55460, - [SMALL_STATE(802)] = 55513, - [SMALL_STATE(803)] = 55566, - [SMALL_STATE(804)] = 55619, - [SMALL_STATE(805)] = 55708, - [SMALL_STATE(806)] = 55761, - [SMALL_STATE(807)] = 55814, - [SMALL_STATE(808)] = 55867, - [SMALL_STATE(809)] = 55956, - [SMALL_STATE(810)] = 56009, - [SMALL_STATE(811)] = 56098, - [SMALL_STATE(812)] = 56151, - [SMALL_STATE(813)] = 56204, - [SMALL_STATE(814)] = 56257, - [SMALL_STATE(815)] = 56310, - [SMALL_STATE(816)] = 56363, - [SMALL_STATE(817)] = 56416, - [SMALL_STATE(818)] = 56469, - [SMALL_STATE(819)] = 56522, - [SMALL_STATE(820)] = 56575, - [SMALL_STATE(821)] = 56628, - [SMALL_STATE(822)] = 56681, - [SMALL_STATE(823)] = 56734, - [SMALL_STATE(824)] = 56787, - [SMALL_STATE(825)] = 56840, - [SMALL_STATE(826)] = 56893, - [SMALL_STATE(827)] = 56946, - [SMALL_STATE(828)] = 56999, - [SMALL_STATE(829)] = 57088, - [SMALL_STATE(830)] = 57141, - [SMALL_STATE(831)] = 57194, - [SMALL_STATE(832)] = 57247, - [SMALL_STATE(833)] = 57300, - [SMALL_STATE(834)] = 57353, - [SMALL_STATE(835)] = 57406, - [SMALL_STATE(836)] = 57459, - [SMALL_STATE(837)] = 57512, - [SMALL_STATE(838)] = 57601, - [SMALL_STATE(839)] = 57654, - [SMALL_STATE(840)] = 57707, - [SMALL_STATE(841)] = 57796, - [SMALL_STATE(842)] = 57885, - [SMALL_STATE(843)] = 57974, - [SMALL_STATE(844)] = 58027, - [SMALL_STATE(845)] = 58080, - [SMALL_STATE(846)] = 58133, - [SMALL_STATE(847)] = 58186, - [SMALL_STATE(848)] = 58239, - [SMALL_STATE(849)] = 58292, - [SMALL_STATE(850)] = 58345, - [SMALL_STATE(851)] = 58434, - [SMALL_STATE(852)] = 58523, - [SMALL_STATE(853)] = 58612, - [SMALL_STATE(854)] = 58701, - [SMALL_STATE(855)] = 58787, - [SMALL_STATE(856)] = 58873, - [SMALL_STATE(857)] = 58959, - [SMALL_STATE(858)] = 59045, - [SMALL_STATE(859)] = 59131, - [SMALL_STATE(860)] = 59217, - [SMALL_STATE(861)] = 59300, - [SMALL_STATE(862)] = 59383, - [SMALL_STATE(863)] = 59461, - [SMALL_STATE(864)] = 59539, - [SMALL_STATE(865)] = 59617, - [SMALL_STATE(866)] = 59695, - [SMALL_STATE(867)] = 59773, - [SMALL_STATE(868)] = 59851, - [SMALL_STATE(869)] = 59929, - [SMALL_STATE(870)] = 60007, - [SMALL_STATE(871)] = 60093, - [SMALL_STATE(872)] = 60168, - [SMALL_STATE(873)] = 60243, - [SMALL_STATE(874)] = 60318, - [SMALL_STATE(875)] = 60393, - [SMALL_STATE(876)] = 60468, - [SMALL_STATE(877)] = 60543, - [SMALL_STATE(878)] = 60618, - [SMALL_STATE(879)] = 60693, - [SMALL_STATE(880)] = 60768, - [SMALL_STATE(881)] = 60843, - [SMALL_STATE(882)] = 60918, - [SMALL_STATE(883)] = 60993, - [SMALL_STATE(884)] = 61068, - [SMALL_STATE(885)] = 61143, - [SMALL_STATE(886)] = 61218, - [SMALL_STATE(887)] = 61293, - [SMALL_STATE(888)] = 61368, - [SMALL_STATE(889)] = 61443, - [SMALL_STATE(890)] = 61522, - [SMALL_STATE(891)] = 61601, - [SMALL_STATE(892)] = 61676, - [SMALL_STATE(893)] = 61751, - [SMALL_STATE(894)] = 61826, - [SMALL_STATE(895)] = 61901, - [SMALL_STATE(896)] = 61976, - [SMALL_STATE(897)] = 62055, - [SMALL_STATE(898)] = 62130, - [SMALL_STATE(899)] = 62205, - [SMALL_STATE(900)] = 62284, - [SMALL_STATE(901)] = 62359, - [SMALL_STATE(902)] = 62434, - [SMALL_STATE(903)] = 62509, - [SMALL_STATE(904)] = 62584, - [SMALL_STATE(905)] = 62659, - [SMALL_STATE(906)] = 62734, - [SMALL_STATE(907)] = 62809, - [SMALL_STATE(908)] = 62884, - [SMALL_STATE(909)] = 62959, - [SMALL_STATE(910)] = 63034, - [SMALL_STATE(911)] = 63113, - [SMALL_STATE(912)] = 63188, - [SMALL_STATE(913)] = 63267, - [SMALL_STATE(914)] = 63346, - [SMALL_STATE(915)] = 63425, - [SMALL_STATE(916)] = 63504, - [SMALL_STATE(917)] = 63579, - [SMALL_STATE(918)] = 63654, - [SMALL_STATE(919)] = 63729, - [SMALL_STATE(920)] = 63804, - [SMALL_STATE(921)] = 63879, - [SMALL_STATE(922)] = 63954, - [SMALL_STATE(923)] = 64029, - [SMALL_STATE(924)] = 64104, - [SMALL_STATE(925)] = 64179, - [SMALL_STATE(926)] = 64258, - [SMALL_STATE(927)] = 64337, - [SMALL_STATE(928)] = 64422, - [SMALL_STATE(929)] = 64507, - [SMALL_STATE(930)] = 64582, - [SMALL_STATE(931)] = 64661, - [SMALL_STATE(932)] = 64736, - [SMALL_STATE(933)] = 64811, - [SMALL_STATE(934)] = 64886, - [SMALL_STATE(935)] = 64961, - [SMALL_STATE(936)] = 65036, - [SMALL_STATE(937)] = 65111, - [SMALL_STATE(938)] = 65186, - [SMALL_STATE(939)] = 65265, - [SMALL_STATE(940)] = 65340, - [SMALL_STATE(941)] = 65415, - [SMALL_STATE(942)] = 65490, - [SMALL_STATE(943)] = 65565, - [SMALL_STATE(944)] = 65640, - [SMALL_STATE(945)] = 65715, - [SMALL_STATE(946)] = 65790, - [SMALL_STATE(947)] = 65865, - [SMALL_STATE(948)] = 65944, - [SMALL_STATE(949)] = 66019, - [SMALL_STATE(950)] = 66094, - [SMALL_STATE(951)] = 66173, - [SMALL_STATE(952)] = 66248, - [SMALL_STATE(953)] = 66327, - [SMALL_STATE(954)] = 66402, - [SMALL_STATE(955)] = 66477, - [SMALL_STATE(956)] = 66552, - [SMALL_STATE(957)] = 66627, - [SMALL_STATE(958)] = 66702, - [SMALL_STATE(959)] = 66781, - [SMALL_STATE(960)] = 66860, - [SMALL_STATE(961)] = 66939, - [SMALL_STATE(962)] = 67014, - [SMALL_STATE(963)] = 67093, - [SMALL_STATE(964)] = 67168, - [SMALL_STATE(965)] = 67253, - [SMALL_STATE(966)] = 67328, - [SMALL_STATE(967)] = 67380, - [SMALL_STATE(968)] = 67464, - [SMALL_STATE(969)] = 67546, - [SMALL_STATE(970)] = 67598, - [SMALL_STATE(971)] = 67650, - [SMALL_STATE(972)] = 67734, - [SMALL_STATE(973)] = 67818, - [SMALL_STATE(974)] = 67875, - [SMALL_STATE(975)] = 67940, - [SMALL_STATE(976)] = 67997, - [SMALL_STATE(977)] = 68054, - [SMALL_STATE(978)] = 68105, - [SMALL_STATE(979)] = 68156, - [SMALL_STATE(980)] = 68207, - [SMALL_STATE(981)] = 68258, - [SMALL_STATE(982)] = 68309, - [SMALL_STATE(983)] = 68360, - [SMALL_STATE(984)] = 68411, - [SMALL_STATE(985)] = 68462, - [SMALL_STATE(986)] = 68513, - [SMALL_STATE(987)] = 68570, - [SMALL_STATE(988)] = 68633, - [SMALL_STATE(989)] = 68704, - [SMALL_STATE(990)] = 68765, - [SMALL_STATE(991)] = 68834, - [SMALL_STATE(992)] = 68901, - [SMALL_STATE(993)] = 68982, - [SMALL_STATE(994)] = 69038, - [SMALL_STATE(995)] = 69088, - [SMALL_STATE(996)] = 69138, - [SMALL_STATE(997)] = 69190, - [SMALL_STATE(998)] = 69242, - [SMALL_STATE(999)] = 69298, - [SMALL_STATE(1000)] = 69354, - [SMALL_STATE(1001)] = 69402, - [SMALL_STATE(1002)] = 69448, - [SMALL_STATE(1003)] = 69504, - [SMALL_STATE(1004)] = 69566, - [SMALL_STATE(1005)] = 69636, - [SMALL_STATE(1006)] = 69692, - [SMALL_STATE(1007)] = 69752, - [SMALL_STATE(1008)] = 69820, - [SMALL_STATE(1009)] = 69886, - [SMALL_STATE(1010)] = 69950, - [SMALL_STATE(1011)] = 70006, - [SMALL_STATE(1012)] = 70062, - [SMALL_STATE(1013)] = 70110, - [SMALL_STATE(1014)] = 70166, - [SMALL_STATE(1015)] = 70222, - [SMALL_STATE(1016)] = 70268, - [SMALL_STATE(1017)] = 70314, - [SMALL_STATE(1018)] = 70378, - [SMALL_STATE(1019)] = 70440, - [SMALL_STATE(1020)] = 70510, - [SMALL_STATE(1021)] = 70560, - [SMALL_STATE(1022)] = 70620, - [SMALL_STATE(1023)] = 70688, - [SMALL_STATE(1024)] = 70754, - [SMALL_STATE(1025)] = 70818, - [SMALL_STATE(1026)] = 70868, - [SMALL_STATE(1027)] = 70916, - [SMALL_STATE(1028)] = 70962, - [SMALL_STATE(1029)] = 71008, - [SMALL_STATE(1030)] = 71054, - [SMALL_STATE(1031)] = 71100, - [SMALL_STATE(1032)] = 71146, - [SMALL_STATE(1033)] = 71192, - [SMALL_STATE(1034)] = 71272, - [SMALL_STATE(1035)] = 71322, - [SMALL_STATE(1036)] = 71372, - [SMALL_STATE(1037)] = 71422, - [SMALL_STATE(1038)] = 71502, - [SMALL_STATE(1039)] = 71558, - [SMALL_STATE(1040)] = 71620, - [SMALL_STATE(1041)] = 71690, - [SMALL_STATE(1042)] = 71746, - [SMALL_STATE(1043)] = 71806, - [SMALL_STATE(1044)] = 71874, - [SMALL_STATE(1045)] = 71924, - [SMALL_STATE(1046)] = 71990, - [SMALL_STATE(1047)] = 72040, - [SMALL_STATE(1048)] = 72120, - [SMALL_STATE(1049)] = 72176, - [SMALL_STATE(1050)] = 72221, - [SMALL_STATE(1051)] = 72266, - [SMALL_STATE(1052)] = 72313, - [SMALL_STATE(1053)] = 72368, - [SMALL_STATE(1054)] = 72423, - [SMALL_STATE(1055)] = 72468, - [SMALL_STATE(1056)] = 72527, - [SMALL_STATE(1057)] = 72578, - [SMALL_STATE(1058)] = 72629, - [SMALL_STATE(1059)] = 72680, - [SMALL_STATE(1060)] = 72725, - [SMALL_STATE(1061)] = 72780, - [SMALL_STATE(1062)] = 72841, - [SMALL_STATE(1063)] = 72910, - [SMALL_STATE(1064)] = 72965, - [SMALL_STATE(1065)] = 73024, - [SMALL_STATE(1066)] = 73069, - [SMALL_STATE(1067)] = 73116, - [SMALL_STATE(1068)] = 73163, - [SMALL_STATE(1069)] = 73210, - [SMALL_STATE(1070)] = 73277, - [SMALL_STATE(1071)] = 73342, - [SMALL_STATE(1072)] = 73411, - [SMALL_STATE(1073)] = 73474, - [SMALL_STATE(1074)] = 73519, - [SMALL_STATE(1075)] = 73564, - [SMALL_STATE(1076)] = 73609, - [SMALL_STATE(1077)] = 73654, - [SMALL_STATE(1078)] = 73699, - [SMALL_STATE(1079)] = 73744, - [SMALL_STATE(1080)] = 73789, - [SMALL_STATE(1081)] = 73834, - [SMALL_STATE(1082)] = 73879, - [SMALL_STATE(1083)] = 73928, - [SMALL_STATE(1084)] = 73973, - [SMALL_STATE(1085)] = 74018, - [SMALL_STATE(1086)] = 74067, - [SMALL_STATE(1087)] = 74118, - [SMALL_STATE(1088)] = 74169, - [SMALL_STATE(1089)] = 74236, - [SMALL_STATE(1090)] = 74281, - [SMALL_STATE(1091)] = 74346, - [SMALL_STATE(1092)] = 74391, - [SMALL_STATE(1093)] = 74436, - [SMALL_STATE(1094)] = 74481, - [SMALL_STATE(1095)] = 74526, - [SMALL_STATE(1096)] = 74571, - [SMALL_STATE(1097)] = 74626, - [SMALL_STATE(1098)] = 74681, - [SMALL_STATE(1099)] = 74726, - [SMALL_STATE(1100)] = 74771, - [SMALL_STATE(1101)] = 74826, - [SMALL_STATE(1102)] = 74881, - [SMALL_STATE(1103)] = 74950, - [SMALL_STATE(1104)] = 75005, - [SMALL_STATE(1105)] = 75064, - [SMALL_STATE(1106)] = 75131, - [SMALL_STATE(1107)] = 75196, - [SMALL_STATE(1108)] = 75259, - [SMALL_STATE(1109)] = 75304, - [SMALL_STATE(1110)] = 75349, - [SMALL_STATE(1111)] = 75398, - [SMALL_STATE(1112)] = 75445, - [SMALL_STATE(1113)] = 75492, - [SMALL_STATE(1114)] = 75539, - [SMALL_STATE(1115)] = 75584, - [SMALL_STATE(1116)] = 75629, - [SMALL_STATE(1117)] = 75678, - [SMALL_STATE(1118)] = 75727, - [SMALL_STATE(1119)] = 75772, - [SMALL_STATE(1120)] = 75817, - [SMALL_STATE(1121)] = 75862, - [SMALL_STATE(1122)] = 75907, - [SMALL_STATE(1123)] = 75956, - [SMALL_STATE(1124)] = 76005, - [SMALL_STATE(1125)] = 76054, - [SMALL_STATE(1126)] = 76117, - [SMALL_STATE(1127)] = 76162, - [SMALL_STATE(1128)] = 76217, - [SMALL_STATE(1129)] = 76270, - [SMALL_STATE(1130)] = 76319, - [SMALL_STATE(1131)] = 76368, - [SMALL_STATE(1132)] = 76417, - [SMALL_STATE(1133)] = 76462, - [SMALL_STATE(1134)] = 76523, - [SMALL_STATE(1135)] = 76568, - [SMALL_STATE(1136)] = 76613, - [SMALL_STATE(1137)] = 76664, - [SMALL_STATE(1138)] = 76715, - [SMALL_STATE(1139)] = 76770, - [SMALL_STATE(1140)] = 76825, - [SMALL_STATE(1141)] = 76874, - [SMALL_STATE(1142)] = 76925, - [SMALL_STATE(1143)] = 76976, - [SMALL_STATE(1144)] = 77021, - [SMALL_STATE(1145)] = 77068, - [SMALL_STATE(1146)] = 77113, - [SMALL_STATE(1147)] = 77160, - [SMALL_STATE(1148)] = 77205, - [SMALL_STATE(1149)] = 77266, - [SMALL_STATE(1150)] = 77314, - [SMALL_STATE(1151)] = 77358, - [SMALL_STATE(1152)] = 77402, - [SMALL_STATE(1153)] = 77446, - [SMALL_STATE(1154)] = 77492, - [SMALL_STATE(1155)] = 77538, - [SMALL_STATE(1156)] = 77584, - [SMALL_STATE(1157)] = 77632, - [SMALL_STATE(1158)] = 77680, - [SMALL_STATE(1159)] = 77726, - [SMALL_STATE(1160)] = 77772, - [SMALL_STATE(1161)] = 77818, - [SMALL_STATE(1162)] = 77864, - [SMALL_STATE(1163)] = 77910, - [SMALL_STATE(1164)] = 77954, - [SMALL_STATE(1165)] = 77998, - [SMALL_STATE(1166)] = 78042, - [SMALL_STATE(1167)] = 78086, - [SMALL_STATE(1168)] = 78130, - [SMALL_STATE(1169)] = 78178, - [SMALL_STATE(1170)] = 78226, - [SMALL_STATE(1171)] = 78274, - [SMALL_STATE(1172)] = 78318, - [SMALL_STATE(1173)] = 78362, - [SMALL_STATE(1174)] = 78406, - [SMALL_STATE(1175)] = 78450, - [SMALL_STATE(1176)] = 78494, - [SMALL_STATE(1177)] = 78538, - [SMALL_STATE(1178)] = 78582, - [SMALL_STATE(1179)] = 78626, - [SMALL_STATE(1180)] = 78670, - [SMALL_STATE(1181)] = 78714, - [SMALL_STATE(1182)] = 78758, - [SMALL_STATE(1183)] = 78802, - [SMALL_STATE(1184)] = 78846, - [SMALL_STATE(1185)] = 78890, - [SMALL_STATE(1186)] = 78934, - [SMALL_STATE(1187)] = 78978, - [SMALL_STATE(1188)] = 79022, - [SMALL_STATE(1189)] = 79066, - [SMALL_STATE(1190)] = 79110, - [SMALL_STATE(1191)] = 79154, - [SMALL_STATE(1192)] = 79198, - [SMALL_STATE(1193)] = 79242, - [SMALL_STATE(1194)] = 79286, - [SMALL_STATE(1195)] = 79330, - [SMALL_STATE(1196)] = 79374, - [SMALL_STATE(1197)] = 79418, - [SMALL_STATE(1198)] = 79462, - [SMALL_STATE(1199)] = 79506, - [SMALL_STATE(1200)] = 79552, - [SMALL_STATE(1201)] = 79596, - [SMALL_STATE(1202)] = 79644, - [SMALL_STATE(1203)] = 79688, - [SMALL_STATE(1204)] = 79732, - [SMALL_STATE(1205)] = 79776, - [SMALL_STATE(1206)] = 79820, - [SMALL_STATE(1207)] = 79864, - [SMALL_STATE(1208)] = 79908, - [SMALL_STATE(1209)] = 79952, - [SMALL_STATE(1210)] = 79996, - [SMALL_STATE(1211)] = 80040, - [SMALL_STATE(1212)] = 80084, - [SMALL_STATE(1213)] = 80128, - [SMALL_STATE(1214)] = 80172, - [SMALL_STATE(1215)] = 80216, - [SMALL_STATE(1216)] = 80260, - [SMALL_STATE(1217)] = 80304, - [SMALL_STATE(1218)] = 80348, - [SMALL_STATE(1219)] = 80392, - [SMALL_STATE(1220)] = 80436, - [SMALL_STATE(1221)] = 80480, - [SMALL_STATE(1222)] = 80524, - [SMALL_STATE(1223)] = 80568, - [SMALL_STATE(1224)] = 80612, - [SMALL_STATE(1225)] = 80656, - [SMALL_STATE(1226)] = 80700, - [SMALL_STATE(1227)] = 80744, - [SMALL_STATE(1228)] = 80788, - [SMALL_STATE(1229)] = 80832, - [SMALL_STATE(1230)] = 80876, - [SMALL_STATE(1231)] = 80920, - [SMALL_STATE(1232)] = 80964, - [SMALL_STATE(1233)] = 81010, - [SMALL_STATE(1234)] = 81054, - [SMALL_STATE(1235)] = 81100, - [SMALL_STATE(1236)] = 81146, - [SMALL_STATE(1237)] = 81190, - [SMALL_STATE(1238)] = 81234, - [SMALL_STATE(1239)] = 81284, - [SMALL_STATE(1240)] = 81328, - [SMALL_STATE(1241)] = 81372, - [SMALL_STATE(1242)] = 81416, - [SMALL_STATE(1243)] = 81460, - [SMALL_STATE(1244)] = 81504, - [SMALL_STATE(1245)] = 81548, - [SMALL_STATE(1246)] = 81592, - [SMALL_STATE(1247)] = 81642, - [SMALL_STATE(1248)] = 81686, - [SMALL_STATE(1249)] = 81734, - [SMALL_STATE(1250)] = 81778, - [SMALL_STATE(1251)] = 81822, - [SMALL_STATE(1252)] = 81876, - [SMALL_STATE(1253)] = 81930, - [SMALL_STATE(1254)] = 81974, - [SMALL_STATE(1255)] = 82018, - [SMALL_STATE(1256)] = 82062, - [SMALL_STATE(1257)] = 82116, - [SMALL_STATE(1258)] = 82176, - [SMALL_STATE(1259)] = 82244, - [SMALL_STATE(1260)] = 82298, - [SMALL_STATE(1261)] = 82356, - [SMALL_STATE(1262)] = 82422, - [SMALL_STATE(1263)] = 82486, - [SMALL_STATE(1264)] = 82548, - [SMALL_STATE(1265)] = 82596, - [SMALL_STATE(1266)] = 82644, - [SMALL_STATE(1267)] = 82692, - [SMALL_STATE(1268)] = 82740, - [SMALL_STATE(1269)] = 82788, - [SMALL_STATE(1270)] = 82836, - [SMALL_STATE(1271)] = 82880, - [SMALL_STATE(1272)] = 82924, - [SMALL_STATE(1273)] = 82968, - [SMALL_STATE(1274)] = 83012, - [SMALL_STATE(1275)] = 83056, - [SMALL_STATE(1276)] = 83100, - [SMALL_STATE(1277)] = 83144, - [SMALL_STATE(1278)] = 83192, - [SMALL_STATE(1279)] = 83240, - [SMALL_STATE(1280)] = 83288, - [SMALL_STATE(1281)] = 83332, - [SMALL_STATE(1282)] = 83380, - [SMALL_STATE(1283)] = 83424, - [SMALL_STATE(1284)] = 83470, - [SMALL_STATE(1285)] = 83516, - [SMALL_STATE(1286)] = 83562, - [SMALL_STATE(1287)] = 83606, - [SMALL_STATE(1288)] = 83650, - [SMALL_STATE(1289)] = 83694, - [SMALL_STATE(1290)] = 83738, - [SMALL_STATE(1291)] = 83782, - [SMALL_STATE(1292)] = 83826, - [SMALL_STATE(1293)] = 83874, - [SMALL_STATE(1294)] = 83918, - [SMALL_STATE(1295)] = 83962, - [SMALL_STATE(1296)] = 84006, - [SMALL_STATE(1297)] = 84050, - [SMALL_STATE(1298)] = 84100, - [SMALL_STATE(1299)] = 84150, - [SMALL_STATE(1300)] = 84194, - [SMALL_STATE(1301)] = 84238, - [SMALL_STATE(1302)] = 84282, - [SMALL_STATE(1303)] = 84325, - [SMALL_STATE(1304)] = 84370, - [SMALL_STATE(1305)] = 84417, - [SMALL_STATE(1306)] = 84464, - [SMALL_STATE(1307)] = 84509, - [SMALL_STATE(1308)] = 84554, - [SMALL_STATE(1309)] = 84599, - [SMALL_STATE(1310)] = 84642, - [SMALL_STATE(1311)] = 84685, - [SMALL_STATE(1312)] = 84728, - [SMALL_STATE(1313)] = 84771, - [SMALL_STATE(1314)] = 84814, - [SMALL_STATE(1315)] = 84857, - [SMALL_STATE(1316)] = 84900, - [SMALL_STATE(1317)] = 84943, - [SMALL_STATE(1318)] = 84986, - [SMALL_STATE(1319)] = 85029, - [SMALL_STATE(1320)] = 85072, - [SMALL_STATE(1321)] = 85115, - [SMALL_STATE(1322)] = 85158, - [SMALL_STATE(1323)] = 85205, - [SMALL_STATE(1324)] = 85248, - [SMALL_STATE(1325)] = 85295, - [SMALL_STATE(1326)] = 85338, - [SMALL_STATE(1327)] = 85383, - [SMALL_STATE(1328)] = 85426, - [SMALL_STATE(1329)] = 85469, - [SMALL_STATE(1330)] = 85512, - [SMALL_STATE(1331)] = 85555, - [SMALL_STATE(1332)] = 85598, - [SMALL_STATE(1333)] = 85641, - [SMALL_STATE(1334)] = 85684, - [SMALL_STATE(1335)] = 85727, - [SMALL_STATE(1336)] = 85770, - [SMALL_STATE(1337)] = 85813, - [SMALL_STATE(1338)] = 85856, - [SMALL_STATE(1339)] = 85899, - [SMALL_STATE(1340)] = 85942, - [SMALL_STATE(1341)] = 85987, - [SMALL_STATE(1342)] = 86032, - [SMALL_STATE(1343)] = 86075, - [SMALL_STATE(1344)] = 86118, - [SMALL_STATE(1345)] = 86161, - [SMALL_STATE(1346)] = 86204, - [SMALL_STATE(1347)] = 86247, - [SMALL_STATE(1348)] = 86290, - [SMALL_STATE(1349)] = 86333, - [SMALL_STATE(1350)] = 86376, - [SMALL_STATE(1351)] = 86419, - [SMALL_STATE(1352)] = 86462, - [SMALL_STATE(1353)] = 86505, - [SMALL_STATE(1354)] = 86548, - [SMALL_STATE(1355)] = 86591, - [SMALL_STATE(1356)] = 86634, - [SMALL_STATE(1357)] = 86677, - [SMALL_STATE(1358)] = 86720, - [SMALL_STATE(1359)] = 86763, - [SMALL_STATE(1360)] = 86806, - [SMALL_STATE(1361)] = 86853, - [SMALL_STATE(1362)] = 86896, - [SMALL_STATE(1363)] = 86939, - [SMALL_STATE(1364)] = 86982, - [SMALL_STATE(1365)] = 87025, - [SMALL_STATE(1366)] = 87068, - [SMALL_STATE(1367)] = 87111, - [SMALL_STATE(1368)] = 87154, - [SMALL_STATE(1369)] = 87201, - [SMALL_STATE(1370)] = 87244, - [SMALL_STATE(1371)] = 87289, - [SMALL_STATE(1372)] = 87334, - [SMALL_STATE(1373)] = 87379, - [SMALL_STATE(1374)] = 87422, - [SMALL_STATE(1375)] = 87469, - [SMALL_STATE(1376)] = 87514, - [SMALL_STATE(1377)] = 87557, - [SMALL_STATE(1378)] = 87600, - [SMALL_STATE(1379)] = 87643, - [SMALL_STATE(1380)] = 87686, - [SMALL_STATE(1381)] = 87729, - [SMALL_STATE(1382)] = 87780, - [SMALL_STATE(1383)] = 87823, - [SMALL_STATE(1384)] = 87866, - [SMALL_STATE(1385)] = 87909, - [SMALL_STATE(1386)] = 87952, - [SMALL_STATE(1387)] = 87995, - [SMALL_STATE(1388)] = 88038, - [SMALL_STATE(1389)] = 88081, - [SMALL_STATE(1390)] = 88124, - [SMALL_STATE(1391)] = 88167, - [SMALL_STATE(1392)] = 88212, - [SMALL_STATE(1393)] = 88255, - [SMALL_STATE(1394)] = 88300, - [SMALL_STATE(1395)] = 88343, - [SMALL_STATE(1396)] = 88386, - [SMALL_STATE(1397)] = 88431, - [SMALL_STATE(1398)] = 88474, - [SMALL_STATE(1399)] = 88521, - [SMALL_STATE(1400)] = 88568, - [SMALL_STATE(1401)] = 88613, - [SMALL_STATE(1402)] = 88656, - [SMALL_STATE(1403)] = 88703, - [SMALL_STATE(1404)] = 88746, - [SMALL_STATE(1405)] = 88791, - [SMALL_STATE(1406)] = 88834, - [SMALL_STATE(1407)] = 88877, - [SMALL_STATE(1408)] = 88920, - [SMALL_STATE(1409)] = 88963, - [SMALL_STATE(1410)] = 89006, - [SMALL_STATE(1411)] = 89049, - [SMALL_STATE(1412)] = 89092, - [SMALL_STATE(1413)] = 89135, - [SMALL_STATE(1414)] = 89178, - [SMALL_STATE(1415)] = 89221, - [SMALL_STATE(1416)] = 89264, - [SMALL_STATE(1417)] = 89309, - [SMALL_STATE(1418)] = 89352, - [SMALL_STATE(1419)] = 89395, - [SMALL_STATE(1420)] = 89446, - [SMALL_STATE(1421)] = 89489, - [SMALL_STATE(1422)] = 89532, - [SMALL_STATE(1423)] = 89575, - [SMALL_STATE(1424)] = 89620, - [SMALL_STATE(1425)] = 89663, - [SMALL_STATE(1426)] = 89710, - [SMALL_STATE(1427)] = 89757, - [SMALL_STATE(1428)] = 89800, - [SMALL_STATE(1429)] = 89842, - [SMALL_STATE(1430)] = 89884, - [SMALL_STATE(1431)] = 89926, - [SMALL_STATE(1432)] = 89968, - [SMALL_STATE(1433)] = 90010, - [SMALL_STATE(1434)] = 90058, - [SMALL_STATE(1435)] = 90100, - [SMALL_STATE(1436)] = 90146, - [SMALL_STATE(1437)] = 90188, - [SMALL_STATE(1438)] = 90230, - [SMALL_STATE(1439)] = 90280, - [SMALL_STATE(1440)] = 90324, - [SMALL_STATE(1441)] = 90366, - [SMALL_STATE(1442)] = 90410, - [SMALL_STATE(1443)] = 90452, - [SMALL_STATE(1444)] = 90494, - [SMALL_STATE(1445)] = 90536, - [SMALL_STATE(1446)] = 90578, - [SMALL_STATE(1447)] = 90620, - [SMALL_STATE(1448)] = 90662, - [SMALL_STATE(1449)] = 90706, - [SMALL_STATE(1450)] = 90750, - [SMALL_STATE(1451)] = 90794, - [SMALL_STATE(1452)] = 90836, - [SMALL_STATE(1453)] = 90880, - [SMALL_STATE(1454)] = 90922, - [SMALL_STATE(1455)] = 90964, - [SMALL_STATE(1456)] = 91008, - [SMALL_STATE(1457)] = 91050, - [SMALL_STATE(1458)] = 91092, - [SMALL_STATE(1459)] = 91134, - [SMALL_STATE(1460)] = 91176, - [SMALL_STATE(1461)] = 91218, - [SMALL_STATE(1462)] = 91262, - [SMALL_STATE(1463)] = 91304, - [SMALL_STATE(1464)] = 91348, - [SMALL_STATE(1465)] = 91390, - [SMALL_STATE(1466)] = 91432, - [SMALL_STATE(1467)] = 91474, - [SMALL_STATE(1468)] = 91516, - [SMALL_STATE(1469)] = 91558, - [SMALL_STATE(1470)] = 91604, - [SMALL_STATE(1471)] = 91650, - [SMALL_STATE(1472)] = 91692, - [SMALL_STATE(1473)] = 91734, - [SMALL_STATE(1474)] = 91776, - [SMALL_STATE(1475)] = 91818, - [SMALL_STATE(1476)] = 91861, - [SMALL_STATE(1477)] = 91902, - [SMALL_STATE(1478)] = 91943, - [SMALL_STATE(1479)] = 91984, - [SMALL_STATE(1480)] = 92027, - [SMALL_STATE(1481)] = 92070, - [SMALL_STATE(1482)] = 92111, - [SMALL_STATE(1483)] = 92152, - [SMALL_STATE(1484)] = 92193, - [SMALL_STATE(1485)] = 92236, - [SMALL_STATE(1486)] = 92277, - [SMALL_STATE(1487)] = 92318, - [SMALL_STATE(1488)] = 92359, - [SMALL_STATE(1489)] = 92402, - [SMALL_STATE(1490)] = 92445, - [SMALL_STATE(1491)] = 92488, - [SMALL_STATE(1492)] = 92531, - [SMALL_STATE(1493)] = 92572, - [SMALL_STATE(1494)] = 92615, - [SMALL_STATE(1495)] = 92689, - [SMALL_STATE(1496)] = 92763, - [SMALL_STATE(1497)] = 92831, - [SMALL_STATE(1498)] = 92899, - [SMALL_STATE(1499)] = 92967, - [SMALL_STATE(1500)] = 93035, - [SMALL_STATE(1501)] = 93103, - [SMALL_STATE(1502)] = 93171, - [SMALL_STATE(1503)] = 93239, - [SMALL_STATE(1504)] = 93307, - [SMALL_STATE(1505)] = 93375, - [SMALL_STATE(1506)] = 93443, - [SMALL_STATE(1507)] = 93511, - [SMALL_STATE(1508)] = 93579, - [SMALL_STATE(1509)] = 93647, - [SMALL_STATE(1510)] = 93715, - [SMALL_STATE(1511)] = 93783, - [SMALL_STATE(1512)] = 93851, - [SMALL_STATE(1513)] = 93919, - [SMALL_STATE(1514)] = 93987, - [SMALL_STATE(1515)] = 94055, - [SMALL_STATE(1516)] = 94123, - [SMALL_STATE(1517)] = 94191, - [SMALL_STATE(1518)] = 94259, - [SMALL_STATE(1519)] = 94327, - [SMALL_STATE(1520)] = 94395, - [SMALL_STATE(1521)] = 94463, - [SMALL_STATE(1522)] = 94531, - [SMALL_STATE(1523)] = 94599, - [SMALL_STATE(1524)] = 94667, - [SMALL_STATE(1525)] = 94735, - [SMALL_STATE(1526)] = 94803, - [SMALL_STATE(1527)] = 94871, - [SMALL_STATE(1528)] = 94939, - [SMALL_STATE(1529)] = 95007, - [SMALL_STATE(1530)] = 95075, - [SMALL_STATE(1531)] = 95143, - [SMALL_STATE(1532)] = 95211, - [SMALL_STATE(1533)] = 95276, - [SMALL_STATE(1534)] = 95341, - [SMALL_STATE(1535)] = 95406, - [SMALL_STATE(1536)] = 95471, - [SMALL_STATE(1537)] = 95536, - [SMALL_STATE(1538)] = 95602, - [SMALL_STATE(1539)] = 95668, - [SMALL_STATE(1540)] = 95734, - [SMALL_STATE(1541)] = 95800, - [SMALL_STATE(1542)] = 95866, - [SMALL_STATE(1543)] = 95932, - [SMALL_STATE(1544)] = 95998, - [SMALL_STATE(1545)] = 96064, - [SMALL_STATE(1546)] = 96130, - [SMALL_STATE(1547)] = 96196, - [SMALL_STATE(1548)] = 96262, - [SMALL_STATE(1549)] = 96328, - [SMALL_STATE(1550)] = 96394, - [SMALL_STATE(1551)] = 96460, - [SMALL_STATE(1552)] = 96526, - [SMALL_STATE(1553)] = 96592, - [SMALL_STATE(1554)] = 96658, - [SMALL_STATE(1555)] = 96724, - [SMALL_STATE(1556)] = 96790, - [SMALL_STATE(1557)] = 96856, - [SMALL_STATE(1558)] = 96919, - [SMALL_STATE(1559)] = 96977, - [SMALL_STATE(1560)] = 97035, - [SMALL_STATE(1561)] = 97093, - [SMALL_STATE(1562)] = 97151, - [SMALL_STATE(1563)] = 97209, - [SMALL_STATE(1564)] = 97267, - [SMALL_STATE(1565)] = 97313, - [SMALL_STATE(1566)] = 97371, - [SMALL_STATE(1567)] = 97429, - [SMALL_STATE(1568)] = 97475, - [SMALL_STATE(1569)] = 97520, - [SMALL_STATE(1570)] = 97565, - [SMALL_STATE(1571)] = 97609, - [SMALL_STATE(1572)] = 97653, - [SMALL_STATE(1573)] = 97697, - [SMALL_STATE(1574)] = 97741, - [SMALL_STATE(1575)] = 97784, - [SMALL_STATE(1576)] = 97827, - [SMALL_STATE(1577)] = 97870, - [SMALL_STATE(1578)] = 97913, - [SMALL_STATE(1579)] = 97954, - [SMALL_STATE(1580)] = 97995, - [SMALL_STATE(1581)] = 98037, - [SMALL_STATE(1582)] = 98067, - [SMALL_STATE(1583)] = 98099, - [SMALL_STATE(1584)] = 98131, - [SMALL_STATE(1585)] = 98163, - [SMALL_STATE(1586)] = 98195, - [SMALL_STATE(1587)] = 98227, - [SMALL_STATE(1588)] = 98259, - [SMALL_STATE(1589)] = 98289, - [SMALL_STATE(1590)] = 98331, - [SMALL_STATE(1591)] = 98361, - [SMALL_STATE(1592)] = 98391, - [SMALL_STATE(1593)] = 98421, - [SMALL_STATE(1594)] = 98451, - [SMALL_STATE(1595)] = 98481, - [SMALL_STATE(1596)] = 98511, - [SMALL_STATE(1597)] = 98541, - [SMALL_STATE(1598)] = 98571, - [SMALL_STATE(1599)] = 98600, - [SMALL_STATE(1600)] = 98629, - [SMALL_STATE(1601)] = 98658, - [SMALL_STATE(1602)] = 98687, - [SMALL_STATE(1603)] = 98716, - [SMALL_STATE(1604)] = 98745, - [SMALL_STATE(1605)] = 98774, - [SMALL_STATE(1606)] = 98803, - [SMALL_STATE(1607)] = 98832, - [SMALL_STATE(1608)] = 98861, - [SMALL_STATE(1609)] = 98890, - [SMALL_STATE(1610)] = 98919, - [SMALL_STATE(1611)] = 98948, - [SMALL_STATE(1612)] = 98977, - [SMALL_STATE(1613)] = 99006, - [SMALL_STATE(1614)] = 99035, - [SMALL_STATE(1615)] = 99060, - [SMALL_STATE(1616)] = 99089, - [SMALL_STATE(1617)] = 99136, - [SMALL_STATE(1618)] = 99161, - [SMALL_STATE(1619)] = 99190, - [SMALL_STATE(1620)] = 99219, - [SMALL_STATE(1621)] = 99248, - [SMALL_STATE(1622)] = 99277, - [SMALL_STATE(1623)] = 99324, - [SMALL_STATE(1624)] = 99371, - [SMALL_STATE(1625)] = 99418, - [SMALL_STATE(1626)] = 99465, - [SMALL_STATE(1627)] = 99512, - [SMALL_STATE(1628)] = 99559, - [SMALL_STATE(1629)] = 99584, - [SMALL_STATE(1630)] = 99631, - [SMALL_STATE(1631)] = 99660, - [SMALL_STATE(1632)] = 99707, - [SMALL_STATE(1633)] = 99754, - [SMALL_STATE(1634)] = 99783, - [SMALL_STATE(1635)] = 99808, - [SMALL_STATE(1636)] = 99837, - [SMALL_STATE(1637)] = 99883, - [SMALL_STATE(1638)] = 99929, - [SMALL_STATE(1639)] = 99953, - [SMALL_STATE(1640)] = 99999, - [SMALL_STATE(1641)] = 100023, - [SMALL_STATE(1642)] = 100053, - [SMALL_STATE(1643)] = 100099, - [SMALL_STATE(1644)] = 100127, - [SMALL_STATE(1645)] = 100173, - [SMALL_STATE(1646)] = 100219, - [SMALL_STATE(1647)] = 100243, - [SMALL_STATE(1648)] = 100289, - [SMALL_STATE(1649)] = 100335, - [SMALL_STATE(1650)] = 100381, - [SMALL_STATE(1651)] = 100405, - [SMALL_STATE(1652)] = 100437, - [SMALL_STATE(1653)] = 100469, - [SMALL_STATE(1654)] = 100497, - [SMALL_STATE(1655)] = 100543, - [SMALL_STATE(1656)] = 100589, - [SMALL_STATE(1657)] = 100632, - [SMALL_STATE(1658)] = 100672, - [SMALL_STATE(1659)] = 100712, - [SMALL_STATE(1660)] = 100752, - [SMALL_STATE(1661)] = 100778, - [SMALL_STATE(1662)] = 100818, - [SMALL_STATE(1663)] = 100855, - [SMALL_STATE(1664)] = 100894, - [SMALL_STATE(1665)] = 100931, - [SMALL_STATE(1666)] = 100972, - [SMALL_STATE(1667)] = 100999, - [SMALL_STATE(1668)] = 101040, - [SMALL_STATE(1669)] = 101059, - [SMALL_STATE(1670)] = 101082, - [SMALL_STATE(1671)] = 101101, - [SMALL_STATE(1672)] = 101142, - [SMALL_STATE(1673)] = 101163, - [SMALL_STATE(1674)] = 101204, - [SMALL_STATE(1675)] = 101245, - [SMALL_STATE(1676)] = 101286, - [SMALL_STATE(1677)] = 101311, - [SMALL_STATE(1678)] = 101338, - [SMALL_STATE(1679)] = 101379, - [SMALL_STATE(1680)] = 101398, - [SMALL_STATE(1681)] = 101425, - [SMALL_STATE(1682)] = 101466, - [SMALL_STATE(1683)] = 101504, - [SMALL_STATE(1684)] = 101534, - [SMALL_STATE(1685)] = 101564, - [SMALL_STATE(1686)] = 101602, - [SMALL_STATE(1687)] = 101640, - [SMALL_STATE(1688)] = 101670, - [SMALL_STATE(1689)] = 101700, - [SMALL_STATE(1690)] = 101732, - [SMALL_STATE(1691)] = 101762, - [SMALL_STATE(1692)] = 101792, - [SMALL_STATE(1693)] = 101830, - [SMALL_STATE(1694)] = 101868, - [SMALL_STATE(1695)] = 101906, - [SMALL_STATE(1696)] = 101926, - [SMALL_STATE(1697)] = 101956, - [SMALL_STATE(1698)] = 101986, - [SMALL_STATE(1699)] = 102024, - [SMALL_STATE(1700)] = 102062, - [SMALL_STATE(1701)] = 102100, - [SMALL_STATE(1702)] = 102130, - [SMALL_STATE(1703)] = 102160, - [SMALL_STATE(1704)] = 102198, - [SMALL_STATE(1705)] = 102236, - [SMALL_STATE(1706)] = 102256, - [SMALL_STATE(1707)] = 102276, - [SMALL_STATE(1708)] = 102306, - [SMALL_STATE(1709)] = 102344, - [SMALL_STATE(1710)] = 102374, - [SMALL_STATE(1711)] = 102412, - [SMALL_STATE(1712)] = 102442, - [SMALL_STATE(1713)] = 102472, - [SMALL_STATE(1714)] = 102510, - [SMALL_STATE(1715)] = 102548, - [SMALL_STATE(1716)] = 102578, - [SMALL_STATE(1717)] = 102608, - [SMALL_STATE(1718)] = 102646, - [SMALL_STATE(1719)] = 102684, - [SMALL_STATE(1720)] = 102714, - [SMALL_STATE(1721)] = 102744, - [SMALL_STATE(1722)] = 102782, - [SMALL_STATE(1723)] = 102808, - [SMALL_STATE(1724)] = 102846, - [SMALL_STATE(1725)] = 102872, - [SMALL_STATE(1726)] = 102910, - [SMALL_STATE(1727)] = 102934, - [SMALL_STATE(1728)] = 102972, - [SMALL_STATE(1729)] = 103010, - [SMALL_STATE(1730)] = 103032, - [SMALL_STATE(1731)] = 103070, - [SMALL_STATE(1732)] = 103108, - [SMALL_STATE(1733)] = 103146, - [SMALL_STATE(1734)] = 103172, - [SMALL_STATE(1735)] = 103196, - [SMALL_STATE(1736)] = 103226, - [SMALL_STATE(1737)] = 103243, - [SMALL_STATE(1738)] = 103272, - [SMALL_STATE(1739)] = 103289, - [SMALL_STATE(1740)] = 103312, - [SMALL_STATE(1741)] = 103337, - [SMALL_STATE(1742)] = 103362, - [SMALL_STATE(1743)] = 103383, - [SMALL_STATE(1744)] = 103400, - [SMALL_STATE(1745)] = 103419, - [SMALL_STATE(1746)] = 103440, - [SMALL_STATE(1747)] = 103465, - [SMALL_STATE(1748)] = 103482, - [SMALL_STATE(1749)] = 103499, - [SMALL_STATE(1750)] = 103516, - [SMALL_STATE(1751)] = 103535, - [SMALL_STATE(1752)] = 103560, - [SMALL_STATE(1753)] = 103583, - [SMALL_STATE(1754)] = 103608, - [SMALL_STATE(1755)] = 103633, - [SMALL_STATE(1756)] = 103658, - [SMALL_STATE(1757)] = 103687, - [SMALL_STATE(1758)] = 103712, - [SMALL_STATE(1759)] = 103732, - [SMALL_STATE(1760)] = 103750, - [SMALL_STATE(1761)] = 103766, - [SMALL_STATE(1762)] = 103784, - [SMALL_STATE(1763)] = 103804, - [SMALL_STATE(1764)] = 103828, - [SMALL_STATE(1765)] = 103852, - [SMALL_STATE(1766)] = 103876, - [SMALL_STATE(1767)] = 103900, - [SMALL_STATE(1768)] = 103924, - [SMALL_STATE(1769)] = 103940, - [SMALL_STATE(1770)] = 103964, - [SMALL_STATE(1771)] = 103994, - [SMALL_STATE(1772)] = 104010, - [SMALL_STATE(1773)] = 104034, - [SMALL_STATE(1774)] = 104050, - [SMALL_STATE(1775)] = 104072, - [SMALL_STATE(1776)] = 104096, - [SMALL_STATE(1777)] = 104120, - [SMALL_STATE(1778)] = 104142, - [SMALL_STATE(1779)] = 104164, - [SMALL_STATE(1780)] = 104184, - [SMALL_STATE(1781)] = 104204, - [SMALL_STATE(1782)] = 104228, - [SMALL_STATE(1783)] = 104250, - [SMALL_STATE(1784)] = 104266, - [SMALL_STATE(1785)] = 104284, - [SMALL_STATE(1786)] = 104304, - [SMALL_STATE(1787)] = 104322, - [SMALL_STATE(1788)] = 104340, - [SMALL_STATE(1789)] = 104364, - [SMALL_STATE(1790)] = 104384, - [SMALL_STATE(1791)] = 104408, - [SMALL_STATE(1792)] = 104424, - [SMALL_STATE(1793)] = 104448, - [SMALL_STATE(1794)] = 104470, - [SMALL_STATE(1795)] = 104491, - [SMALL_STATE(1796)] = 104520, - [SMALL_STATE(1797)] = 104541, - [SMALL_STATE(1798)] = 104564, - [SMALL_STATE(1799)] = 104589, - [SMALL_STATE(1800)] = 104616, - [SMALL_STATE(1801)] = 104639, - [SMALL_STATE(1802)] = 104668, - [SMALL_STATE(1803)] = 104683, - [SMALL_STATE(1804)] = 104706, - [SMALL_STATE(1805)] = 104729, - [SMALL_STATE(1806)] = 104756, - [SMALL_STATE(1807)] = 104777, - [SMALL_STATE(1808)] = 104802, - [SMALL_STATE(1809)] = 104823, - [SMALL_STATE(1810)] = 104844, - [SMALL_STATE(1811)] = 104861, - [SMALL_STATE(1812)] = 104890, - [SMALL_STATE(1813)] = 104917, - [SMALL_STATE(1814)] = 104938, - [SMALL_STATE(1815)] = 104967, - [SMALL_STATE(1816)] = 104988, - [SMALL_STATE(1817)] = 105017, - [SMALL_STATE(1818)] = 105046, - [SMALL_STATE(1819)] = 105063, - [SMALL_STATE(1820)] = 105092, - [SMALL_STATE(1821)] = 105111, - [SMALL_STATE(1822)] = 105136, - [SMALL_STATE(1823)] = 105157, - [SMALL_STATE(1824)] = 105182, - [SMALL_STATE(1825)] = 105209, - [SMALL_STATE(1826)] = 105232, - [SMALL_STATE(1827)] = 105259, - [SMALL_STATE(1828)] = 105286, - [SMALL_STATE(1829)] = 105313, - [SMALL_STATE(1830)] = 105338, - [SMALL_STATE(1831)] = 105367, - [SMALL_STATE(1832)] = 105388, - [SMALL_STATE(1833)] = 105409, - [SMALL_STATE(1834)] = 105438, - [SMALL_STATE(1835)] = 105465, - [SMALL_STATE(1836)] = 105488, - [SMALL_STATE(1837)] = 105513, - [SMALL_STATE(1838)] = 105534, - [SMALL_STATE(1839)] = 105555, - [SMALL_STATE(1840)] = 105576, - [SMALL_STATE(1841)] = 105597, - [SMALL_STATE(1842)] = 105614, - [SMALL_STATE(1843)] = 105633, - [SMALL_STATE(1844)] = 105656, - [SMALL_STATE(1845)] = 105685, - [SMALL_STATE(1846)] = 105707, - [SMALL_STATE(1847)] = 105729, - [SMALL_STATE(1848)] = 105755, - [SMALL_STATE(1849)] = 105781, - [SMALL_STATE(1850)] = 105807, - [SMALL_STATE(1851)] = 105833, - [SMALL_STATE(1852)] = 105859, - [SMALL_STATE(1853)] = 105885, - [SMALL_STATE(1854)] = 105903, - [SMALL_STATE(1855)] = 105925, - [SMALL_STATE(1856)] = 105947, - [SMALL_STATE(1857)] = 105971, - [SMALL_STATE(1858)] = 105997, - [SMALL_STATE(1859)] = 106015, - [SMALL_STATE(1860)] = 106033, - [SMALL_STATE(1861)] = 106055, - [SMALL_STATE(1862)] = 106079, - [SMALL_STATE(1863)] = 106101, - [SMALL_STATE(1864)] = 106127, - [SMALL_STATE(1865)] = 106153, - [SMALL_STATE(1866)] = 106179, - [SMALL_STATE(1867)] = 106197, - [SMALL_STATE(1868)] = 106221, - [SMALL_STATE(1869)] = 106239, - [SMALL_STATE(1870)] = 106265, - [SMALL_STATE(1871)] = 106291, - [SMALL_STATE(1872)] = 106317, - [SMALL_STATE(1873)] = 106343, - [SMALL_STATE(1874)] = 106363, - [SMALL_STATE(1875)] = 106379, - [SMALL_STATE(1876)] = 106397, - [SMALL_STATE(1877)] = 106417, - [SMALL_STATE(1878)] = 106435, - [SMALL_STATE(1879)] = 106459, - [SMALL_STATE(1880)] = 106485, - [SMALL_STATE(1881)] = 106507, - [SMALL_STATE(1882)] = 106527, - [SMALL_STATE(1883)] = 106553, - [SMALL_STATE(1884)] = 106571, - [SMALL_STATE(1885)] = 106589, - [SMALL_STATE(1886)] = 106607, - [SMALL_STATE(1887)] = 106629, - [SMALL_STATE(1888)] = 106651, - [SMALL_STATE(1889)] = 106677, - [SMALL_STATE(1890)] = 106703, - [SMALL_STATE(1891)] = 106725, - [SMALL_STATE(1892)] = 106741, - [SMALL_STATE(1893)] = 106759, - [SMALL_STATE(1894)] = 106781, - [SMALL_STATE(1895)] = 106799, - [SMALL_STATE(1896)] = 106814, - [SMALL_STATE(1897)] = 106835, - [SMALL_STATE(1898)] = 106852, - [SMALL_STATE(1899)] = 106873, - [SMALL_STATE(1900)] = 106894, - [SMALL_STATE(1901)] = 106915, - [SMALL_STATE(1902)] = 106932, - [SMALL_STATE(1903)] = 106945, - [SMALL_STATE(1904)] = 106960, - [SMALL_STATE(1905)] = 106977, - [SMALL_STATE(1906)] = 106992, - [SMALL_STATE(1907)] = 107013, - [SMALL_STATE(1908)] = 107028, - [SMALL_STATE(1909)] = 107045, - [SMALL_STATE(1910)] = 107058, - [SMALL_STATE(1911)] = 107071, - [SMALL_STATE(1912)] = 107094, - [SMALL_STATE(1913)] = 107109, - [SMALL_STATE(1914)] = 107132, - [SMALL_STATE(1915)] = 107149, - [SMALL_STATE(1916)] = 107170, - [SMALL_STATE(1917)] = 107187, - [SMALL_STATE(1918)] = 107200, - [SMALL_STATE(1919)] = 107213, - [SMALL_STATE(1920)] = 107226, - [SMALL_STATE(1921)] = 107245, - [SMALL_STATE(1922)] = 107262, - [SMALL_STATE(1923)] = 107275, - [SMALL_STATE(1924)] = 107288, - [SMALL_STATE(1925)] = 107309, - [SMALL_STATE(1926)] = 107326, - [SMALL_STATE(1927)] = 107347, - [SMALL_STATE(1928)] = 107368, - [SMALL_STATE(1929)] = 107389, - [SMALL_STATE(1930)] = 107406, - [SMALL_STATE(1931)] = 107419, - [SMALL_STATE(1932)] = 107440, - [SMALL_STATE(1933)] = 107457, - [SMALL_STATE(1934)] = 107474, - [SMALL_STATE(1935)] = 107491, - [SMALL_STATE(1936)] = 107504, - [SMALL_STATE(1937)] = 107525, - [SMALL_STATE(1938)] = 107540, - [SMALL_STATE(1939)] = 107553, - [SMALL_STATE(1940)] = 107574, - [SMALL_STATE(1941)] = 107591, - [SMALL_STATE(1942)] = 107612, - [SMALL_STATE(1943)] = 107629, - [SMALL_STATE(1944)] = 107652, - [SMALL_STATE(1945)] = 107673, - [SMALL_STATE(1946)] = 107690, - [SMALL_STATE(1947)] = 107705, - [SMALL_STATE(1948)] = 107718, - [SMALL_STATE(1949)] = 107739, - [SMALL_STATE(1950)] = 107760, - [SMALL_STATE(1951)] = 107783, - [SMALL_STATE(1952)] = 107800, - [SMALL_STATE(1953)] = 107813, - [SMALL_STATE(1954)] = 107834, - [SMALL_STATE(1955)] = 107851, - [SMALL_STATE(1956)] = 107868, - [SMALL_STATE(1957)] = 107881, - [SMALL_STATE(1958)] = 107898, - [SMALL_STATE(1959)] = 107911, - [SMALL_STATE(1960)] = 107930, - [SMALL_STATE(1961)] = 107947, - [SMALL_STATE(1962)] = 107964, - [SMALL_STATE(1963)] = 107979, - [SMALL_STATE(1964)] = 107996, - [SMALL_STATE(1965)] = 108017, - [SMALL_STATE(1966)] = 108034, - [SMALL_STATE(1967)] = 108051, - [SMALL_STATE(1968)] = 108064, - [SMALL_STATE(1969)] = 108077, - [SMALL_STATE(1970)] = 108094, - [SMALL_STATE(1971)] = 108107, - [SMALL_STATE(1972)] = 108128, - [SMALL_STATE(1973)] = 108145, - [SMALL_STATE(1974)] = 108162, - [SMALL_STATE(1975)] = 108183, - [SMALL_STATE(1976)] = 108206, - [SMALL_STATE(1977)] = 108223, - [SMALL_STATE(1978)] = 108246, - [SMALL_STATE(1979)] = 108263, - [SMALL_STATE(1980)] = 108280, - [SMALL_STATE(1981)] = 108297, - [SMALL_STATE(1982)] = 108318, - [SMALL_STATE(1983)] = 108339, - [SMALL_STATE(1984)] = 108352, - [SMALL_STATE(1985)] = 108365, - [SMALL_STATE(1986)] = 108386, - [SMALL_STATE(1987)] = 108407, - [SMALL_STATE(1988)] = 108428, - [SMALL_STATE(1989)] = 108441, - [SMALL_STATE(1990)] = 108454, - [SMALL_STATE(1991)] = 108467, - [SMALL_STATE(1992)] = 108488, - [SMALL_STATE(1993)] = 108509, - [SMALL_STATE(1994)] = 108526, - [SMALL_STATE(1995)] = 108543, - [SMALL_STATE(1996)] = 108560, - [SMALL_STATE(1997)] = 108581, - [SMALL_STATE(1998)] = 108602, - [SMALL_STATE(1999)] = 108625, - [SMALL_STATE(2000)] = 108646, - [SMALL_STATE(2001)] = 108667, - [SMALL_STATE(2002)] = 108684, - [SMALL_STATE(2003)] = 108701, - [SMALL_STATE(2004)] = 108714, - [SMALL_STATE(2005)] = 108726, - [SMALL_STATE(2006)] = 108746, - [SMALL_STATE(2007)] = 108766, - [SMALL_STATE(2008)] = 108778, - [SMALL_STATE(2009)] = 108792, - [SMALL_STATE(2010)] = 108808, - [SMALL_STATE(2011)] = 108820, - [SMALL_STATE(2012)] = 108832, - [SMALL_STATE(2013)] = 108844, - [SMALL_STATE(2014)] = 108864, - [SMALL_STATE(2015)] = 108876, - [SMALL_STATE(2016)] = 108888, - [SMALL_STATE(2017)] = 108904, - [SMALL_STATE(2018)] = 108920, - [SMALL_STATE(2019)] = 108940, - [SMALL_STATE(2020)] = 108952, - [SMALL_STATE(2021)] = 108964, - [SMALL_STATE(2022)] = 108982, - [SMALL_STATE(2023)] = 108994, - [SMALL_STATE(2024)] = 109010, - [SMALL_STATE(2025)] = 109030, - [SMALL_STATE(2026)] = 109042, - [SMALL_STATE(2027)] = 109062, - [SMALL_STATE(2028)] = 109074, - [SMALL_STATE(2029)] = 109094, - [SMALL_STATE(2030)] = 109106, - [SMALL_STATE(2031)] = 109118, - [SMALL_STATE(2032)] = 109130, - [SMALL_STATE(2033)] = 109148, - [SMALL_STATE(2034)] = 109168, - [SMALL_STATE(2035)] = 109188, - [SMALL_STATE(2036)] = 109200, - [SMALL_STATE(2037)] = 109218, - [SMALL_STATE(2038)] = 109236, - [SMALL_STATE(2039)] = 109248, - [SMALL_STATE(2040)] = 109268, - [SMALL_STATE(2041)] = 109280, - [SMALL_STATE(2042)] = 109292, - [SMALL_STATE(2043)] = 109304, - [SMALL_STATE(2044)] = 109316, - [SMALL_STATE(2045)] = 109334, - [SMALL_STATE(2046)] = 109346, - [SMALL_STATE(2047)] = 109366, - [SMALL_STATE(2048)] = 109378, - [SMALL_STATE(2049)] = 109390, - [SMALL_STATE(2050)] = 109402, - [SMALL_STATE(2051)] = 109414, - [SMALL_STATE(2052)] = 109434, - [SMALL_STATE(2053)] = 109450, - [SMALL_STATE(2054)] = 109470, - [SMALL_STATE(2055)] = 109490, - [SMALL_STATE(2056)] = 109502, - [SMALL_STATE(2057)] = 109522, - [SMALL_STATE(2058)] = 109542, - [SMALL_STATE(2059)] = 109558, - [SMALL_STATE(2060)] = 109572, - [SMALL_STATE(2061)] = 109588, - [SMALL_STATE(2062)] = 109600, - [SMALL_STATE(2063)] = 109612, - [SMALL_STATE(2064)] = 109628, - [SMALL_STATE(2065)] = 109640, - [SMALL_STATE(2066)] = 109660, - [SMALL_STATE(2067)] = 109674, - [SMALL_STATE(2068)] = 109694, - [SMALL_STATE(2069)] = 109714, - [SMALL_STATE(2070)] = 109728, - [SMALL_STATE(2071)] = 109748, - [SMALL_STATE(2072)] = 109768, - [SMALL_STATE(2073)] = 109784, - [SMALL_STATE(2074)] = 109796, - [SMALL_STATE(2075)] = 109808, - [SMALL_STATE(2076)] = 109828, - [SMALL_STATE(2077)] = 109840, - [SMALL_STATE(2078)] = 109852, - [SMALL_STATE(2079)] = 109864, - [SMALL_STATE(2080)] = 109882, - [SMALL_STATE(2081)] = 109902, - [SMALL_STATE(2082)] = 109914, - [SMALL_STATE(2083)] = 109932, - [SMALL_STATE(2084)] = 109944, - [SMALL_STATE(2085)] = 109956, - [SMALL_STATE(2086)] = 109970, - [SMALL_STATE(2087)] = 109982, - [SMALL_STATE(2088)] = 109998, - [SMALL_STATE(2089)] = 110010, - [SMALL_STATE(2090)] = 110030, - [SMALL_STATE(2091)] = 110042, - [SMALL_STATE(2092)] = 110062, - [SMALL_STATE(2093)] = 110074, - [SMALL_STATE(2094)] = 110090, - [SMALL_STATE(2095)] = 110110, - [SMALL_STATE(2096)] = 110122, - [SMALL_STATE(2097)] = 110142, - [SMALL_STATE(2098)] = 110154, - [SMALL_STATE(2099)] = 110166, - [SMALL_STATE(2100)] = 110182, - [SMALL_STATE(2101)] = 110200, - [SMALL_STATE(2102)] = 110218, - [SMALL_STATE(2103)] = 110230, - [SMALL_STATE(2104)] = 110250, - [SMALL_STATE(2105)] = 110268, - [SMALL_STATE(2106)] = 110284, - [SMALL_STATE(2107)] = 110298, - [SMALL_STATE(2108)] = 110310, - [SMALL_STATE(2109)] = 110328, - [SMALL_STATE(2110)] = 110346, - [SMALL_STATE(2111)] = 110366, - [SMALL_STATE(2112)] = 110382, - [SMALL_STATE(2113)] = 110394, - [SMALL_STATE(2114)] = 110406, - [SMALL_STATE(2115)] = 110424, - [SMALL_STATE(2116)] = 110436, - [SMALL_STATE(2117)] = 110448, - [SMALL_STATE(2118)] = 110468, - [SMALL_STATE(2119)] = 110480, - [SMALL_STATE(2120)] = 110492, - [SMALL_STATE(2121)] = 110504, - [SMALL_STATE(2122)] = 110520, - [SMALL_STATE(2123)] = 110532, - [SMALL_STATE(2124)] = 110552, - [SMALL_STATE(2125)] = 110563, - [SMALL_STATE(2126)] = 110574, - [SMALL_STATE(2127)] = 110585, - [SMALL_STATE(2128)] = 110596, - [SMALL_STATE(2129)] = 110607, - [SMALL_STATE(2130)] = 110618, - [SMALL_STATE(2131)] = 110629, - [SMALL_STATE(2132)] = 110646, - [SMALL_STATE(2133)] = 110657, - [SMALL_STATE(2134)] = 110668, - [SMALL_STATE(2135)] = 110679, - [SMALL_STATE(2136)] = 110690, - [SMALL_STATE(2137)] = 110701, - [SMALL_STATE(2138)] = 110712, - [SMALL_STATE(2139)] = 110723, - [SMALL_STATE(2140)] = 110734, - [SMALL_STATE(2141)] = 110745, - [SMALL_STATE(2142)] = 110756, - [SMALL_STATE(2143)] = 110767, - [SMALL_STATE(2144)] = 110778, - [SMALL_STATE(2145)] = 110789, - [SMALL_STATE(2146)] = 110800, - [SMALL_STATE(2147)] = 110811, - [SMALL_STATE(2148)] = 110822, - [SMALL_STATE(2149)] = 110833, - [SMALL_STATE(2150)] = 110844, - [SMALL_STATE(2151)] = 110855, - [SMALL_STATE(2152)] = 110866, - [SMALL_STATE(2153)] = 110877, - [SMALL_STATE(2154)] = 110894, - [SMALL_STATE(2155)] = 110911, - [SMALL_STATE(2156)] = 110926, - [SMALL_STATE(2157)] = 110941, - [SMALL_STATE(2158)] = 110956, - [SMALL_STATE(2159)] = 110973, - [SMALL_STATE(2160)] = 110988, - [SMALL_STATE(2161)] = 111005, - [SMALL_STATE(2162)] = 111018, - [SMALL_STATE(2163)] = 111029, - [SMALL_STATE(2164)] = 111046, - [SMALL_STATE(2165)] = 111061, - [SMALL_STATE(2166)] = 111072, - [SMALL_STATE(2167)] = 111083, - [SMALL_STATE(2168)] = 111094, - [SMALL_STATE(2169)] = 111105, - [SMALL_STATE(2170)] = 111116, - [SMALL_STATE(2171)] = 111127, - [SMALL_STATE(2172)] = 111138, - [SMALL_STATE(2173)] = 111149, - [SMALL_STATE(2174)] = 111164, - [SMALL_STATE(2175)] = 111175, - [SMALL_STATE(2176)] = 111190, - [SMALL_STATE(2177)] = 111201, - [SMALL_STATE(2178)] = 111212, - [SMALL_STATE(2179)] = 111223, - [SMALL_STATE(2180)] = 111234, - [SMALL_STATE(2181)] = 111245, - [SMALL_STATE(2182)] = 111256, - [SMALL_STATE(2183)] = 111267, - [SMALL_STATE(2184)] = 111278, - [SMALL_STATE(2185)] = 111291, - [SMALL_STATE(2186)] = 111302, - [SMALL_STATE(2187)] = 111313, - [SMALL_STATE(2188)] = 111324, - [SMALL_STATE(2189)] = 111335, - [SMALL_STATE(2190)] = 111346, - [SMALL_STATE(2191)] = 111363, - [SMALL_STATE(2192)] = 111380, - [SMALL_STATE(2193)] = 111391, - [SMALL_STATE(2194)] = 111402, - [SMALL_STATE(2195)] = 111419, - [SMALL_STATE(2196)] = 111436, - [SMALL_STATE(2197)] = 111447, - [SMALL_STATE(2198)] = 111462, - [SMALL_STATE(2199)] = 111479, - [SMALL_STATE(2200)] = 111494, - [SMALL_STATE(2201)] = 111509, - [SMALL_STATE(2202)] = 111526, - [SMALL_STATE(2203)] = 111543, - [SMALL_STATE(2204)] = 111560, - [SMALL_STATE(2205)] = 111577, - [SMALL_STATE(2206)] = 111594, - [SMALL_STATE(2207)] = 111605, - [SMALL_STATE(2208)] = 111622, - [SMALL_STATE(2209)] = 111633, - [SMALL_STATE(2210)] = 111648, - [SMALL_STATE(2211)] = 111659, - [SMALL_STATE(2212)] = 111670, - [SMALL_STATE(2213)] = 111681, - [SMALL_STATE(2214)] = 111692, - [SMALL_STATE(2215)] = 111709, - [SMALL_STATE(2216)] = 111726, - [SMALL_STATE(2217)] = 111741, - [SMALL_STATE(2218)] = 111756, - [SMALL_STATE(2219)] = 111771, - [SMALL_STATE(2220)] = 111782, - [SMALL_STATE(2221)] = 111793, - [SMALL_STATE(2222)] = 111804, - [SMALL_STATE(2223)] = 111815, - [SMALL_STATE(2224)] = 111826, - [SMALL_STATE(2225)] = 111843, - [SMALL_STATE(2226)] = 111854, - [SMALL_STATE(2227)] = 111865, - [SMALL_STATE(2228)] = 111880, - [SMALL_STATE(2229)] = 111891, - [SMALL_STATE(2230)] = 111904, - [SMALL_STATE(2231)] = 111919, - [SMALL_STATE(2232)] = 111936, - [SMALL_STATE(2233)] = 111953, - [SMALL_STATE(2234)] = 111964, - [SMALL_STATE(2235)] = 111981, - [SMALL_STATE(2236)] = 111992, - [SMALL_STATE(2237)] = 112003, - [SMALL_STATE(2238)] = 112020, - [SMALL_STATE(2239)] = 112035, - [SMALL_STATE(2240)] = 112050, - [SMALL_STATE(2241)] = 112061, - [SMALL_STATE(2242)] = 112078, - [SMALL_STATE(2243)] = 112089, - [SMALL_STATE(2244)] = 112100, - [SMALL_STATE(2245)] = 112117, - [SMALL_STATE(2246)] = 112132, - [SMALL_STATE(2247)] = 112149, - [SMALL_STATE(2248)] = 112166, - [SMALL_STATE(2249)] = 112183, - [SMALL_STATE(2250)] = 112200, - [SMALL_STATE(2251)] = 112217, - [SMALL_STATE(2252)] = 112234, - [SMALL_STATE(2253)] = 112249, - [SMALL_STATE(2254)] = 112263, - [SMALL_STATE(2255)] = 112277, - [SMALL_STATE(2256)] = 112291, - [SMALL_STATE(2257)] = 112305, - [SMALL_STATE(2258)] = 112319, - [SMALL_STATE(2259)] = 112333, - [SMALL_STATE(2260)] = 112347, - [SMALL_STATE(2261)] = 112361, - [SMALL_STATE(2262)] = 112375, - [SMALL_STATE(2263)] = 112389, - [SMALL_STATE(2264)] = 112403, - [SMALL_STATE(2265)] = 112417, - [SMALL_STATE(2266)] = 112431, - [SMALL_STATE(2267)] = 112445, - [SMALL_STATE(2268)] = 112459, - [SMALL_STATE(2269)] = 112473, - [SMALL_STATE(2270)] = 112487, - [SMALL_STATE(2271)] = 112501, - [SMALL_STATE(2272)] = 112515, - [SMALL_STATE(2273)] = 112527, - [SMALL_STATE(2274)] = 112541, - [SMALL_STATE(2275)] = 112553, - [SMALL_STATE(2276)] = 112567, - [SMALL_STATE(2277)] = 112581, - [SMALL_STATE(2278)] = 112595, - [SMALL_STATE(2279)] = 112609, - [SMALL_STATE(2280)] = 112623, - [SMALL_STATE(2281)] = 112637, - [SMALL_STATE(2282)] = 112651, - [SMALL_STATE(2283)] = 112665, - [SMALL_STATE(2284)] = 112679, - [SMALL_STATE(2285)] = 112693, - [SMALL_STATE(2286)] = 112707, - [SMALL_STATE(2287)] = 112721, - [SMALL_STATE(2288)] = 112735, - [SMALL_STATE(2289)] = 112749, - [SMALL_STATE(2290)] = 112763, - [SMALL_STATE(2291)] = 112777, - [SMALL_STATE(2292)] = 112791, - [SMALL_STATE(2293)] = 112805, - [SMALL_STATE(2294)] = 112819, - [SMALL_STATE(2295)] = 112833, - [SMALL_STATE(2296)] = 112843, - [SMALL_STATE(2297)] = 112857, - [SMALL_STATE(2298)] = 112867, - [SMALL_STATE(2299)] = 112881, - [SMALL_STATE(2300)] = 112895, - [SMALL_STATE(2301)] = 112909, - [SMALL_STATE(2302)] = 112923, - [SMALL_STATE(2303)] = 112933, - [SMALL_STATE(2304)] = 112947, - [SMALL_STATE(2305)] = 112961, - [SMALL_STATE(2306)] = 112975, - [SMALL_STATE(2307)] = 112989, - [SMALL_STATE(2308)] = 113003, - [SMALL_STATE(2309)] = 113015, - [SMALL_STATE(2310)] = 113029, - [SMALL_STATE(2311)] = 113043, - [SMALL_STATE(2312)] = 113057, - [SMALL_STATE(2313)] = 113071, - [SMALL_STATE(2314)] = 113085, - [SMALL_STATE(2315)] = 113099, - [SMALL_STATE(2316)] = 113113, - [SMALL_STATE(2317)] = 113127, - [SMALL_STATE(2318)] = 113141, - [SMALL_STATE(2319)] = 113155, - [SMALL_STATE(2320)] = 113169, - [SMALL_STATE(2321)] = 113183, - [SMALL_STATE(2322)] = 113197, - [SMALL_STATE(2323)] = 113211, - [SMALL_STATE(2324)] = 113225, - [SMALL_STATE(2325)] = 113239, - [SMALL_STATE(2326)] = 113251, - [SMALL_STATE(2327)] = 113265, - [SMALL_STATE(2328)] = 113277, - [SMALL_STATE(2329)] = 113291, - [SMALL_STATE(2330)] = 113305, - [SMALL_STATE(2331)] = 113319, - [SMALL_STATE(2332)] = 113333, - [SMALL_STATE(2333)] = 113347, - [SMALL_STATE(2334)] = 113361, - [SMALL_STATE(2335)] = 113375, - [SMALL_STATE(2336)] = 113389, - [SMALL_STATE(2337)] = 113401, - [SMALL_STATE(2338)] = 113413, - [SMALL_STATE(2339)] = 113427, - [SMALL_STATE(2340)] = 113439, - [SMALL_STATE(2341)] = 113453, - [SMALL_STATE(2342)] = 113467, - [SMALL_STATE(2343)] = 113479, - [SMALL_STATE(2344)] = 113491, - [SMALL_STATE(2345)] = 113503, - [SMALL_STATE(2346)] = 113517, - [SMALL_STATE(2347)] = 113531, - [SMALL_STATE(2348)] = 113545, - [SMALL_STATE(2349)] = 113559, - [SMALL_STATE(2350)] = 113573, - [SMALL_STATE(2351)] = 113587, - [SMALL_STATE(2352)] = 113601, - [SMALL_STATE(2353)] = 113615, - [SMALL_STATE(2354)] = 113629, - [SMALL_STATE(2355)] = 113643, - [SMALL_STATE(2356)] = 113657, - [SMALL_STATE(2357)] = 113671, - [SMALL_STATE(2358)] = 113685, - [SMALL_STATE(2359)] = 113699, - [SMALL_STATE(2360)] = 113713, - [SMALL_STATE(2361)] = 113727, - [SMALL_STATE(2362)] = 113741, - [SMALL_STATE(2363)] = 113755, - [SMALL_STATE(2364)] = 113769, - [SMALL_STATE(2365)] = 113783, - [SMALL_STATE(2366)] = 113797, - [SMALL_STATE(2367)] = 113811, - [SMALL_STATE(2368)] = 113821, - [SMALL_STATE(2369)] = 113835, - [SMALL_STATE(2370)] = 113847, - [SMALL_STATE(2371)] = 113859, - [SMALL_STATE(2372)] = 113869, - [SMALL_STATE(2373)] = 113883, - [SMALL_STATE(2374)] = 113897, - [SMALL_STATE(2375)] = 113911, - [SMALL_STATE(2376)] = 113925, - [SMALL_STATE(2377)] = 113939, - [SMALL_STATE(2378)] = 113953, - [SMALL_STATE(2379)] = 113967, - [SMALL_STATE(2380)] = 113981, - [SMALL_STATE(2381)] = 113995, - [SMALL_STATE(2382)] = 114009, - [SMALL_STATE(2383)] = 114023, - [SMALL_STATE(2384)] = 114037, - [SMALL_STATE(2385)] = 114051, - [SMALL_STATE(2386)] = 114065, - [SMALL_STATE(2387)] = 114079, - [SMALL_STATE(2388)] = 114093, - [SMALL_STATE(2389)] = 114107, - [SMALL_STATE(2390)] = 114121, - [SMALL_STATE(2391)] = 114135, - [SMALL_STATE(2392)] = 114149, - [SMALL_STATE(2393)] = 114161, - [SMALL_STATE(2394)] = 114175, - [SMALL_STATE(2395)] = 114189, - [SMALL_STATE(2396)] = 114203, - [SMALL_STATE(2397)] = 114217, - [SMALL_STATE(2398)] = 114231, - [SMALL_STATE(2399)] = 114243, - [SMALL_STATE(2400)] = 114255, - [SMALL_STATE(2401)] = 114269, - [SMALL_STATE(2402)] = 114283, - [SMALL_STATE(2403)] = 114295, - [SMALL_STATE(2404)] = 114309, - [SMALL_STATE(2405)] = 114323, - [SMALL_STATE(2406)] = 114337, - [SMALL_STATE(2407)] = 114351, - [SMALL_STATE(2408)] = 114365, - [SMALL_STATE(2409)] = 114379, - [SMALL_STATE(2410)] = 114393, - [SMALL_STATE(2411)] = 114407, - [SMALL_STATE(2412)] = 114421, - [SMALL_STATE(2413)] = 114435, - [SMALL_STATE(2414)] = 114449, - [SMALL_STATE(2415)] = 114463, - [SMALL_STATE(2416)] = 114477, - [SMALL_STATE(2417)] = 114491, - [SMALL_STATE(2418)] = 114505, - [SMALL_STATE(2419)] = 114519, - [SMALL_STATE(2420)] = 114531, - [SMALL_STATE(2421)] = 114545, - [SMALL_STATE(2422)] = 114559, - [SMALL_STATE(2423)] = 114571, - [SMALL_STATE(2424)] = 114585, - [SMALL_STATE(2425)] = 114599, - [SMALL_STATE(2426)] = 114613, - [SMALL_STATE(2427)] = 114623, - [SMALL_STATE(2428)] = 114635, - [SMALL_STATE(2429)] = 114649, - [SMALL_STATE(2430)] = 114663, - [SMALL_STATE(2431)] = 114677, - [SMALL_STATE(2432)] = 114691, - [SMALL_STATE(2433)] = 114701, - [SMALL_STATE(2434)] = 114715, - [SMALL_STATE(2435)] = 114729, - [SMALL_STATE(2436)] = 114743, - [SMALL_STATE(2437)] = 114753, - [SMALL_STATE(2438)] = 114767, - [SMALL_STATE(2439)] = 114781, - [SMALL_STATE(2440)] = 114795, - [SMALL_STATE(2441)] = 114809, - [SMALL_STATE(2442)] = 114823, - [SMALL_STATE(2443)] = 114837, - [SMALL_STATE(2444)] = 114851, - [SMALL_STATE(2445)] = 114865, - [SMALL_STATE(2446)] = 114879, - [SMALL_STATE(2447)] = 114893, - [SMALL_STATE(2448)] = 114907, - [SMALL_STATE(2449)] = 114921, - [SMALL_STATE(2450)] = 114935, - [SMALL_STATE(2451)] = 114949, - [SMALL_STATE(2452)] = 114963, - [SMALL_STATE(2453)] = 114977, - [SMALL_STATE(2454)] = 114991, - [SMALL_STATE(2455)] = 115005, - [SMALL_STATE(2456)] = 115017, - [SMALL_STATE(2457)] = 115031, - [SMALL_STATE(2458)] = 115045, - [SMALL_STATE(2459)] = 115059, - [SMALL_STATE(2460)] = 115073, - [SMALL_STATE(2461)] = 115087, - [SMALL_STATE(2462)] = 115097, - [SMALL_STATE(2463)] = 115111, - [SMALL_STATE(2464)] = 115125, - [SMALL_STATE(2465)] = 115135, - [SMALL_STATE(2466)] = 115147, - [SMALL_STATE(2467)] = 115161, - [SMALL_STATE(2468)] = 115175, - [SMALL_STATE(2469)] = 115189, - [SMALL_STATE(2470)] = 115203, - [SMALL_STATE(2471)] = 115217, - [SMALL_STATE(2472)] = 115231, - [SMALL_STATE(2473)] = 115241, - [SMALL_STATE(2474)] = 115255, - [SMALL_STATE(2475)] = 115269, - [SMALL_STATE(2476)] = 115283, - [SMALL_STATE(2477)] = 115297, - [SMALL_STATE(2478)] = 115311, - [SMALL_STATE(2479)] = 115325, - [SMALL_STATE(2480)] = 115339, - [SMALL_STATE(2481)] = 115353, - [SMALL_STATE(2482)] = 115367, - [SMALL_STATE(2483)] = 115381, - [SMALL_STATE(2484)] = 115395, - [SMALL_STATE(2485)] = 115409, - [SMALL_STATE(2486)] = 115423, - [SMALL_STATE(2487)] = 115437, - [SMALL_STATE(2488)] = 115449, - [SMALL_STATE(2489)] = 115463, - [SMALL_STATE(2490)] = 115477, - [SMALL_STATE(2491)] = 115491, - [SMALL_STATE(2492)] = 115505, - [SMALL_STATE(2493)] = 115519, - [SMALL_STATE(2494)] = 115529, - [SMALL_STATE(2495)] = 115543, - [SMALL_STATE(2496)] = 115553, - [SMALL_STATE(2497)] = 115563, - [SMALL_STATE(2498)] = 115577, - [SMALL_STATE(2499)] = 115591, - [SMALL_STATE(2500)] = 115605, - [SMALL_STATE(2501)] = 115619, - [SMALL_STATE(2502)] = 115633, - [SMALL_STATE(2503)] = 115647, - [SMALL_STATE(2504)] = 115661, - [SMALL_STATE(2505)] = 115673, - [SMALL_STATE(2506)] = 115687, - [SMALL_STATE(2507)] = 115701, - [SMALL_STATE(2508)] = 115715, - [SMALL_STATE(2509)] = 115729, - [SMALL_STATE(2510)] = 115743, - [SMALL_STATE(2511)] = 115757, - [SMALL_STATE(2512)] = 115771, - [SMALL_STATE(2513)] = 115785, - [SMALL_STATE(2514)] = 115794, - [SMALL_STATE(2515)] = 115803, - [SMALL_STATE(2516)] = 115814, - [SMALL_STATE(2517)] = 115823, - [SMALL_STATE(2518)] = 115832, - [SMALL_STATE(2519)] = 115843, - [SMALL_STATE(2520)] = 115852, - [SMALL_STATE(2521)] = 115861, - [SMALL_STATE(2522)] = 115870, - [SMALL_STATE(2523)] = 115879, - [SMALL_STATE(2524)] = 115888, - [SMALL_STATE(2525)] = 115899, - [SMALL_STATE(2526)] = 115908, - [SMALL_STATE(2527)] = 115917, - [SMALL_STATE(2528)] = 115928, - [SMALL_STATE(2529)] = 115937, - [SMALL_STATE(2530)] = 115946, - [SMALL_STATE(2531)] = 115955, - [SMALL_STATE(2532)] = 115964, - [SMALL_STATE(2533)] = 115973, - [SMALL_STATE(2534)] = 115984, - [SMALL_STATE(2535)] = 115993, - [SMALL_STATE(2536)] = 116002, - [SMALL_STATE(2537)] = 116013, - [SMALL_STATE(2538)] = 116022, - [SMALL_STATE(2539)] = 116031, - [SMALL_STATE(2540)] = 116040, - [SMALL_STATE(2541)] = 116049, - [SMALL_STATE(2542)] = 116058, - [SMALL_STATE(2543)] = 116067, - [SMALL_STATE(2544)] = 116078, - [SMALL_STATE(2545)] = 116087, - [SMALL_STATE(2546)] = 116096, - [SMALL_STATE(2547)] = 116107, - [SMALL_STATE(2548)] = 116116, - [SMALL_STATE(2549)] = 116125, - [SMALL_STATE(2550)] = 116134, - [SMALL_STATE(2551)] = 116143, - [SMALL_STATE(2552)] = 116152, - [SMALL_STATE(2553)] = 116161, - [SMALL_STATE(2554)] = 116172, - [SMALL_STATE(2555)] = 116181, - [SMALL_STATE(2556)] = 116190, - [SMALL_STATE(2557)] = 116201, - [SMALL_STATE(2558)] = 116210, - [SMALL_STATE(2559)] = 116219, - [SMALL_STATE(2560)] = 116230, - [SMALL_STATE(2561)] = 116239, - [SMALL_STATE(2562)] = 116248, - [SMALL_STATE(2563)] = 116257, - [SMALL_STATE(2564)] = 116266, - [SMALL_STATE(2565)] = 116275, - [SMALL_STATE(2566)] = 116284, - [SMALL_STATE(2567)] = 116293, - [SMALL_STATE(2568)] = 116302, - [SMALL_STATE(2569)] = 116311, - [SMALL_STATE(2570)] = 116320, - [SMALL_STATE(2571)] = 116329, - [SMALL_STATE(2572)] = 116338, - [SMALL_STATE(2573)] = 116349, - [SMALL_STATE(2574)] = 116358, - [SMALL_STATE(2575)] = 116367, - [SMALL_STATE(2576)] = 116378, - [SMALL_STATE(2577)] = 116387, - [SMALL_STATE(2578)] = 116396, - [SMALL_STATE(2579)] = 116405, - [SMALL_STATE(2580)] = 116414, - [SMALL_STATE(2581)] = 116423, - [SMALL_STATE(2582)] = 116432, - [SMALL_STATE(2583)] = 116441, - [SMALL_STATE(2584)] = 116450, - [SMALL_STATE(2585)] = 116459, - [SMALL_STATE(2586)] = 116470, - [SMALL_STATE(2587)] = 116481, - [SMALL_STATE(2588)] = 116492, - [SMALL_STATE(2589)] = 116503, - [SMALL_STATE(2590)] = 116514, - [SMALL_STATE(2591)] = 116525, - [SMALL_STATE(2592)] = 116534, - [SMALL_STATE(2593)] = 116545, - [SMALL_STATE(2594)] = 116554, - [SMALL_STATE(2595)] = 116565, - [SMALL_STATE(2596)] = 116574, - [SMALL_STATE(2597)] = 116583, - [SMALL_STATE(2598)] = 116592, - [SMALL_STATE(2599)] = 116601, - [SMALL_STATE(2600)] = 116610, - [SMALL_STATE(2601)] = 116621, - [SMALL_STATE(2602)] = 116630, - [SMALL_STATE(2603)] = 116641, - [SMALL_STATE(2604)] = 116650, - [SMALL_STATE(2605)] = 116659, - [SMALL_STATE(2606)] = 116668, - [SMALL_STATE(2607)] = 116677, - [SMALL_STATE(2608)] = 116688, - [SMALL_STATE(2609)] = 116697, - [SMALL_STATE(2610)] = 116708, - [SMALL_STATE(2611)] = 116717, - [SMALL_STATE(2612)] = 116726, - [SMALL_STATE(2613)] = 116735, - [SMALL_STATE(2614)] = 116744, - [SMALL_STATE(2615)] = 116752, - [SMALL_STATE(2616)] = 116760, - [SMALL_STATE(2617)] = 116768, - [SMALL_STATE(2618)] = 116776, - [SMALL_STATE(2619)] = 116784, - [SMALL_STATE(2620)] = 116792, - [SMALL_STATE(2621)] = 116800, - [SMALL_STATE(2622)] = 116808, - [SMALL_STATE(2623)] = 116816, - [SMALL_STATE(2624)] = 116824, - [SMALL_STATE(2625)] = 116832, - [SMALL_STATE(2626)] = 116840, - [SMALL_STATE(2627)] = 116848, - [SMALL_STATE(2628)] = 116856, - [SMALL_STATE(2629)] = 116864, - [SMALL_STATE(2630)] = 116872, - [SMALL_STATE(2631)] = 116880, - [SMALL_STATE(2632)] = 116888, - [SMALL_STATE(2633)] = 116896, - [SMALL_STATE(2634)] = 116904, - [SMALL_STATE(2635)] = 116912, - [SMALL_STATE(2636)] = 116920, - [SMALL_STATE(2637)] = 116928, - [SMALL_STATE(2638)] = 116936, - [SMALL_STATE(2639)] = 116944, - [SMALL_STATE(2640)] = 116952, - [SMALL_STATE(2641)] = 116960, - [SMALL_STATE(2642)] = 116968, - [SMALL_STATE(2643)] = 116976, - [SMALL_STATE(2644)] = 116984, - [SMALL_STATE(2645)] = 116992, - [SMALL_STATE(2646)] = 117000, - [SMALL_STATE(2647)] = 117008, - [SMALL_STATE(2648)] = 117016, - [SMALL_STATE(2649)] = 117024, - [SMALL_STATE(2650)] = 117032, - [SMALL_STATE(2651)] = 117040, - [SMALL_STATE(2652)] = 117048, - [SMALL_STATE(2653)] = 117056, - [SMALL_STATE(2654)] = 117064, - [SMALL_STATE(2655)] = 117072, - [SMALL_STATE(2656)] = 117080, - [SMALL_STATE(2657)] = 117088, - [SMALL_STATE(2658)] = 117096, - [SMALL_STATE(2659)] = 117104, - [SMALL_STATE(2660)] = 117112, - [SMALL_STATE(2661)] = 117120, - [SMALL_STATE(2662)] = 117128, - [SMALL_STATE(2663)] = 117136, - [SMALL_STATE(2664)] = 117144, - [SMALL_STATE(2665)] = 117152, - [SMALL_STATE(2666)] = 117160, - [SMALL_STATE(2667)] = 117168, - [SMALL_STATE(2668)] = 117176, - [SMALL_STATE(2669)] = 117184, - [SMALL_STATE(2670)] = 117192, - [SMALL_STATE(2671)] = 117200, - [SMALL_STATE(2672)] = 117208, - [SMALL_STATE(2673)] = 117216, - [SMALL_STATE(2674)] = 117224, - [SMALL_STATE(2675)] = 117232, - [SMALL_STATE(2676)] = 117240, - [SMALL_STATE(2677)] = 117248, - [SMALL_STATE(2678)] = 117256, - [SMALL_STATE(2679)] = 117264, - [SMALL_STATE(2680)] = 117272, - [SMALL_STATE(2681)] = 117280, - [SMALL_STATE(2682)] = 117288, - [SMALL_STATE(2683)] = 117296, - [SMALL_STATE(2684)] = 117304, - [SMALL_STATE(2685)] = 117312, - [SMALL_STATE(2686)] = 117320, - [SMALL_STATE(2687)] = 117328, - [SMALL_STATE(2688)] = 117336, - [SMALL_STATE(2689)] = 117344, - [SMALL_STATE(2690)] = 117352, - [SMALL_STATE(2691)] = 117360, - [SMALL_STATE(2692)] = 117368, - [SMALL_STATE(2693)] = 117376, - [SMALL_STATE(2694)] = 117384, - [SMALL_STATE(2695)] = 117392, - [SMALL_STATE(2696)] = 117400, - [SMALL_STATE(2697)] = 117408, - [SMALL_STATE(2698)] = 117416, - [SMALL_STATE(2699)] = 117424, - [SMALL_STATE(2700)] = 117432, - [SMALL_STATE(2701)] = 117440, - [SMALL_STATE(2702)] = 117448, - [SMALL_STATE(2703)] = 117456, - [SMALL_STATE(2704)] = 117464, - [SMALL_STATE(2705)] = 117472, - [SMALL_STATE(2706)] = 117480, - [SMALL_STATE(2707)] = 117488, - [SMALL_STATE(2708)] = 117496, - [SMALL_STATE(2709)] = 117504, - [SMALL_STATE(2710)] = 117512, - [SMALL_STATE(2711)] = 117520, - [SMALL_STATE(2712)] = 117528, - [SMALL_STATE(2713)] = 117536, - [SMALL_STATE(2714)] = 117544, - [SMALL_STATE(2715)] = 117552, - [SMALL_STATE(2716)] = 117560, - [SMALL_STATE(2717)] = 117568, - [SMALL_STATE(2718)] = 117576, - [SMALL_STATE(2719)] = 117584, - [SMALL_STATE(2720)] = 117592, - [SMALL_STATE(2721)] = 117600, - [SMALL_STATE(2722)] = 117608, - [SMALL_STATE(2723)] = 117616, - [SMALL_STATE(2724)] = 117624, - [SMALL_STATE(2725)] = 117632, - [SMALL_STATE(2726)] = 117640, - [SMALL_STATE(2727)] = 117648, - [SMALL_STATE(2728)] = 117656, - [SMALL_STATE(2729)] = 117664, - [SMALL_STATE(2730)] = 117672, - [SMALL_STATE(2731)] = 117680, - [SMALL_STATE(2732)] = 117688, - [SMALL_STATE(2733)] = 117696, - [SMALL_STATE(2734)] = 117704, - [SMALL_STATE(2735)] = 117712, - [SMALL_STATE(2736)] = 117720, - [SMALL_STATE(2737)] = 117728, - [SMALL_STATE(2738)] = 117736, - [SMALL_STATE(2739)] = 117744, - [SMALL_STATE(2740)] = 117752, - [SMALL_STATE(2741)] = 117760, - [SMALL_STATE(2742)] = 117768, - [SMALL_STATE(2743)] = 117776, - [SMALL_STATE(2744)] = 117784, - [SMALL_STATE(2745)] = 117792, - [SMALL_STATE(2746)] = 117800, - [SMALL_STATE(2747)] = 117808, - [SMALL_STATE(2748)] = 117816, - [SMALL_STATE(2749)] = 117824, - [SMALL_STATE(2750)] = 117832, - [SMALL_STATE(2751)] = 117840, - [SMALL_STATE(2752)] = 117848, - [SMALL_STATE(2753)] = 117856, - [SMALL_STATE(2754)] = 117864, - [SMALL_STATE(2755)] = 117872, - [SMALL_STATE(2756)] = 117880, - [SMALL_STATE(2757)] = 117888, - [SMALL_STATE(2758)] = 117896, - [SMALL_STATE(2759)] = 117904, - [SMALL_STATE(2760)] = 117912, - [SMALL_STATE(2761)] = 117920, - [SMALL_STATE(2762)] = 117928, - [SMALL_STATE(2763)] = 117936, - [SMALL_STATE(2764)] = 117944, - [SMALL_STATE(2765)] = 117952, - [SMALL_STATE(2766)] = 117960, - [SMALL_STATE(2767)] = 117968, - [SMALL_STATE(2768)] = 117976, - [SMALL_STATE(2769)] = 117984, - [SMALL_STATE(2770)] = 117992, - [SMALL_STATE(2771)] = 118000, - [SMALL_STATE(2772)] = 118008, - [SMALL_STATE(2773)] = 118016, - [SMALL_STATE(2774)] = 118024, - [SMALL_STATE(2775)] = 118032, - [SMALL_STATE(2776)] = 118040, - [SMALL_STATE(2777)] = 118048, - [SMALL_STATE(2778)] = 118056, - [SMALL_STATE(2779)] = 118064, - [SMALL_STATE(2780)] = 118072, - [SMALL_STATE(2781)] = 118080, - [SMALL_STATE(2782)] = 118088, - [SMALL_STATE(2783)] = 118096, - [SMALL_STATE(2784)] = 118104, - [SMALL_STATE(2785)] = 118112, - [SMALL_STATE(2786)] = 118120, - [SMALL_STATE(2787)] = 118128, - [SMALL_STATE(2788)] = 118136, - [SMALL_STATE(2789)] = 118144, - [SMALL_STATE(2790)] = 118152, - [SMALL_STATE(2791)] = 118160, - [SMALL_STATE(2792)] = 118168, - [SMALL_STATE(2793)] = 118176, - [SMALL_STATE(2794)] = 118184, - [SMALL_STATE(2795)] = 118192, - [SMALL_STATE(2796)] = 118200, - [SMALL_STATE(2797)] = 118208, - [SMALL_STATE(2798)] = 118216, - [SMALL_STATE(2799)] = 118224, - [SMALL_STATE(2800)] = 118232, - [SMALL_STATE(2801)] = 118240, - [SMALL_STATE(2802)] = 118248, - [SMALL_STATE(2803)] = 118256, - [SMALL_STATE(2804)] = 118264, - [SMALL_STATE(2805)] = 118272, - [SMALL_STATE(2806)] = 118280, - [SMALL_STATE(2807)] = 118288, - [SMALL_STATE(2808)] = 118296, + [SMALL_STATE(181)] = 0, + [SMALL_STATE(182)] = 120, + [SMALL_STATE(183)] = 244, + [SMALL_STATE(184)] = 368, + [SMALL_STATE(185)] = 488, + [SMALL_STATE(186)] = 614, + [SMALL_STATE(187)] = 742, + [SMALL_STATE(188)] = 868, + [SMALL_STATE(189)] = 992, + [SMALL_STATE(190)] = 1116, + [SMALL_STATE(191)] = 1242, + [SMALL_STATE(192)] = 1366, + [SMALL_STATE(193)] = 1492, + [SMALL_STATE(194)] = 1616, + [SMALL_STATE(195)] = 1740, + [SMALL_STATE(196)] = 1864, + [SMALL_STATE(197)] = 1990, + [SMALL_STATE(198)] = 2114, + [SMALL_STATE(199)] = 2238, + [SMALL_STATE(200)] = 2358, + [SMALL_STATE(201)] = 2482, + [SMALL_STATE(202)] = 2608, + [SMALL_STATE(203)] = 2732, + [SMALL_STATE(204)] = 2856, + [SMALL_STATE(205)] = 2982, + [SMALL_STATE(206)] = 3106, + [SMALL_STATE(207)] = 3230, + [SMALL_STATE(208)] = 3356, + [SMALL_STATE(209)] = 3480, + [SMALL_STATE(210)] = 3604, + [SMALL_STATE(211)] = 3730, + [SMALL_STATE(212)] = 3854, + [SMALL_STATE(213)] = 3978, + [SMALL_STATE(214)] = 4106, + [SMALL_STATE(215)] = 4213, + [SMALL_STATE(216)] = 4320, + [SMALL_STATE(217)] = 4436, + [SMALL_STATE(218)] = 4552, + [SMALL_STATE(219)] = 4668, + [SMALL_STATE(220)] = 4784, + [SMALL_STATE(221)] = 4900, + [SMALL_STATE(222)] = 5016, + [SMALL_STATE(223)] = 5132, + [SMALL_STATE(224)] = 5248, + [SMALL_STATE(225)] = 5364, + [SMALL_STATE(226)] = 5480, + [SMALL_STATE(227)] = 5593, + [SMALL_STATE(228)] = 5706, + [SMALL_STATE(229)] = 5819, + [SMALL_STATE(230)] = 5932, + [SMALL_STATE(231)] = 6045, + [SMALL_STATE(232)] = 6160, + [SMALL_STATE(233)] = 6273, + [SMALL_STATE(234)] = 6390, + [SMALL_STATE(235)] = 6495, + [SMALL_STATE(236)] = 6610, + [SMALL_STATE(237)] = 6715, + [SMALL_STATE(238)] = 6828, + [SMALL_STATE(239)] = 6941, + [SMALL_STATE(240)] = 7056, + [SMALL_STATE(241)] = 7169, + [SMALL_STATE(242)] = 7282, + [SMALL_STATE(243)] = 7395, + [SMALL_STATE(244)] = 7508, + [SMALL_STATE(245)] = 7621, + [SMALL_STATE(246)] = 7734, + [SMALL_STATE(247)] = 7849, + [SMALL_STATE(248)] = 7964, + [SMALL_STATE(249)] = 8077, + [SMALL_STATE(250)] = 8192, + [SMALL_STATE(251)] = 8305, + [SMALL_STATE(252)] = 8418, + [SMALL_STATE(253)] = 8533, + [SMALL_STATE(254)] = 8646, + [SMALL_STATE(255)] = 8761, + [SMALL_STATE(256)] = 8876, + [SMALL_STATE(257)] = 8987, + [SMALL_STATE(258)] = 9100, + [SMALL_STATE(259)] = 9213, + [SMALL_STATE(260)] = 9326, + [SMALL_STATE(261)] = 9439, + [SMALL_STATE(262)] = 9552, + [SMALL_STATE(263)] = 9665, + [SMALL_STATE(264)] = 9778, + [SMALL_STATE(265)] = 9894, + [SMALL_STATE(266)] = 10010, + [SMALL_STATE(267)] = 10122, + [SMALL_STATE(268)] = 10234, + [SMALL_STATE(269)] = 10348, + [SMALL_STATE(270)] = 10460, + [SMALL_STATE(271)] = 10572, + [SMALL_STATE(272)] = 10684, + [SMALL_STATE(273)] = 10796, + [SMALL_STATE(274)] = 10908, + [SMALL_STATE(275)] = 11022, + [SMALL_STATE(276)] = 11134, + [SMALL_STATE(277)] = 11250, + [SMALL_STATE(278)] = 11362, + [SMALL_STATE(279)] = 11474, + [SMALL_STATE(280)] = 11586, + [SMALL_STATE(281)] = 11698, + [SMALL_STATE(282)] = 11812, + [SMALL_STATE(283)] = 11924, + [SMALL_STATE(284)] = 12040, + [SMALL_STATE(285)] = 12152, + [SMALL_STATE(286)] = 12264, + [SMALL_STATE(287)] = 12376, + [SMALL_STATE(288)] = 12488, + [SMALL_STATE(289)] = 12602, + [SMALL_STATE(290)] = 12714, + [SMALL_STATE(291)] = 12830, + [SMALL_STATE(292)] = 12942, + [SMALL_STATE(293)] = 13054, + [SMALL_STATE(294)] = 13166, + [SMALL_STATE(295)] = 13280, + [SMALL_STATE(296)] = 13392, + [SMALL_STATE(297)] = 13508, + [SMALL_STATE(298)] = 13620, + [SMALL_STATE(299)] = 13732, + [SMALL_STATE(300)] = 13844, + [SMALL_STATE(301)] = 13956, + [SMALL_STATE(302)] = 14070, + [SMALL_STATE(303)] = 14182, + [SMALL_STATE(304)] = 14296, + [SMALL_STATE(305)] = 14408, + [SMALL_STATE(306)] = 14520, + [SMALL_STATE(307)] = 14632, + [SMALL_STATE(308)] = 14744, + [SMALL_STATE(309)] = 14858, + [SMALL_STATE(310)] = 14970, + [SMALL_STATE(311)] = 15082, + [SMALL_STATE(312)] = 15194, + [SMALL_STATE(313)] = 15306, + [SMALL_STATE(314)] = 15418, + [SMALL_STATE(315)] = 15530, + [SMALL_STATE(316)] = 15642, + [SMALL_STATE(317)] = 15754, + [SMALL_STATE(318)] = 15866, + [SMALL_STATE(319)] = 15975, + [SMALL_STATE(320)] = 16084, + [SMALL_STATE(321)] = 16181, + [SMALL_STATE(322)] = 16290, + [SMALL_STATE(323)] = 16399, + [SMALL_STATE(324)] = 16508, + [SMALL_STATE(325)] = 16617, + [SMALL_STATE(326)] = 16726, + [SMALL_STATE(327)] = 16835, + [SMALL_STATE(328)] = 16944, + [SMALL_STATE(329)] = 17053, + [SMALL_STATE(330)] = 17162, + [SMALL_STATE(331)] = 17271, + [SMALL_STATE(332)] = 17380, + [SMALL_STATE(333)] = 17489, + [SMALL_STATE(334)] = 17594, + [SMALL_STATE(335)] = 17703, + [SMALL_STATE(336)] = 17808, + [SMALL_STATE(337)] = 17917, + [SMALL_STATE(338)] = 18026, + [SMALL_STATE(339)] = 18135, + [SMALL_STATE(340)] = 18244, + [SMALL_STATE(341)] = 18352, + [SMALL_STATE(342)] = 18460, + [SMALL_STATE(343)] = 18568, + [SMALL_STATE(344)] = 18674, + [SMALL_STATE(345)] = 18782, + [SMALL_STATE(346)] = 18888, + [SMALL_STATE(347)] = 18996, + [SMALL_STATE(348)] = 19104, + [SMALL_STATE(349)] = 19212, + [SMALL_STATE(350)] = 19320, + [SMALL_STATE(351)] = 19428, + [SMALL_STATE(352)] = 19536, + [SMALL_STATE(353)] = 19644, + [SMALL_STATE(354)] = 19752, + [SMALL_STATE(355)] = 19860, + [SMALL_STATE(356)] = 19968, + [SMALL_STATE(357)] = 20076, + [SMALL_STATE(358)] = 20184, + [SMALL_STATE(359)] = 20292, + [SMALL_STATE(360)] = 20400, + [SMALL_STATE(361)] = 20506, + [SMALL_STATE(362)] = 20614, + [SMALL_STATE(363)] = 20722, + [SMALL_STATE(364)] = 20829, + [SMALL_STATE(365)] = 20936, + [SMALL_STATE(366)] = 21041, + [SMALL_STATE(367)] = 21148, + [SMALL_STATE(368)] = 21255, + [SMALL_STATE(369)] = 21362, + [SMALL_STATE(370)] = 21469, + [SMALL_STATE(371)] = 21574, + [SMALL_STATE(372)] = 21679, + [SMALL_STATE(373)] = 21774, + [SMALL_STATE(374)] = 21879, + [SMALL_STATE(375)] = 21984, + [SMALL_STATE(376)] = 22091, + [SMALL_STATE(377)] = 22198, + [SMALL_STATE(378)] = 22305, + [SMALL_STATE(379)] = 22400, + [SMALL_STATE(380)] = 22505, + [SMALL_STATE(381)] = 22612, + [SMALL_STATE(382)] = 22719, + [SMALL_STATE(383)] = 22826, + [SMALL_STATE(384)] = 22933, + [SMALL_STATE(385)] = 23040, + [SMALL_STATE(386)] = 23147, + [SMALL_STATE(387)] = 23254, + [SMALL_STATE(388)] = 23361, + [SMALL_STATE(389)] = 23468, + [SMALL_STATE(390)] = 23575, + [SMALL_STATE(391)] = 23682, + [SMALL_STATE(392)] = 23789, + [SMALL_STATE(393)] = 23896, + [SMALL_STATE(394)] = 24003, + [SMALL_STATE(395)] = 24110, + [SMALL_STATE(396)] = 24217, + [SMALL_STATE(397)] = 24324, + [SMALL_STATE(398)] = 24431, + [SMALL_STATE(399)] = 24538, + [SMALL_STATE(400)] = 24645, + [SMALL_STATE(401)] = 24752, + [SMALL_STATE(402)] = 24856, + [SMALL_STATE(403)] = 24958, + [SMALL_STATE(404)] = 25054, + [SMALL_STATE(405)] = 25156, + [SMALL_STATE(406)] = 25258, + [SMALL_STATE(407)] = 25360, + [SMALL_STATE(408)] = 25462, + [SMALL_STATE(409)] = 25566, + [SMALL_STATE(410)] = 25670, + [SMALL_STATE(411)] = 25746, + [SMALL_STATE(412)] = 25848, + [SMALL_STATE(413)] = 25952, + [SMALL_STATE(414)] = 26028, + [SMALL_STATE(415)] = 26130, + [SMALL_STATE(416)] = 26206, + [SMALL_STATE(417)] = 26308, + [SMALL_STATE(418)] = 26384, + [SMALL_STATE(419)] = 26460, + [SMALL_STATE(420)] = 26562, + [SMALL_STATE(421)] = 26664, + [SMALL_STATE(422)] = 26766, + [SMALL_STATE(423)] = 26868, + [SMALL_STATE(424)] = 26972, + [SMALL_STATE(425)] = 27076, + [SMALL_STATE(426)] = 27170, + [SMALL_STATE(427)] = 27246, + [SMALL_STATE(428)] = 27348, + [SMALL_STATE(429)] = 27424, + [SMALL_STATE(430)] = 27526, + [SMALL_STATE(431)] = 27628, + [SMALL_STATE(432)] = 27730, + [SMALL_STATE(433)] = 27832, + [SMALL_STATE(434)] = 27934, + [SMALL_STATE(435)] = 28036, + [SMALL_STATE(436)] = 28140, + [SMALL_STATE(437)] = 28242, + [SMALL_STATE(438)] = 28344, + [SMALL_STATE(439)] = 28448, + [SMALL_STATE(440)] = 28552, + [SMALL_STATE(441)] = 28628, + [SMALL_STATE(442)] = 28730, + [SMALL_STATE(443)] = 28824, + [SMALL_STATE(444)] = 28918, + [SMALL_STATE(445)] = 29022, + [SMALL_STATE(446)] = 29124, + [SMALL_STATE(447)] = 29228, + [SMALL_STATE(448)] = 29330, + [SMALL_STATE(449)] = 29434, + [SMALL_STATE(450)] = 29536, + [SMALL_STATE(451)] = 29640, + [SMALL_STATE(452)] = 29744, + [SMALL_STATE(453)] = 29848, + [SMALL_STATE(454)] = 29952, + [SMALL_STATE(455)] = 30056, + [SMALL_STATE(456)] = 30150, + [SMALL_STATE(457)] = 30254, + [SMALL_STATE(458)] = 30358, + [SMALL_STATE(459)] = 30460, + [SMALL_STATE(460)] = 30562, + [SMALL_STATE(461)] = 30664, + [SMALL_STATE(462)] = 30765, + [SMALL_STATE(463)] = 30842, + [SMALL_STATE(464)] = 30943, + [SMALL_STATE(465)] = 31044, + [SMALL_STATE(466)] = 31145, + [SMALL_STATE(467)] = 31246, + [SMALL_STATE(468)] = 31321, + [SMALL_STATE(469)] = 31422, + [SMALL_STATE(470)] = 31523, + [SMALL_STATE(471)] = 31624, + [SMALL_STATE(472)] = 31725, + [SMALL_STATE(473)] = 31826, + [SMALL_STATE(474)] = 31927, + [SMALL_STATE(475)] = 32028, + [SMALL_STATE(476)] = 32129, + [SMALL_STATE(477)] = 32230, + [SMALL_STATE(478)] = 32305, + [SMALL_STATE(479)] = 32406, + [SMALL_STATE(480)] = 32481, + [SMALL_STATE(481)] = 32579, + [SMALL_STATE(482)] = 32677, + [SMALL_STATE(483)] = 32743, + [SMALL_STATE(484)] = 32841, + [SMALL_STATE(485)] = 32939, + [SMALL_STATE(486)] = 33037, + [SMALL_STATE(487)] = 33135, + [SMALL_STATE(488)] = 33233, + [SMALL_STATE(489)] = 33331, + [SMALL_STATE(490)] = 33429, + [SMALL_STATE(491)] = 33527, + [SMALL_STATE(492)] = 33625, + [SMALL_STATE(493)] = 33723, + [SMALL_STATE(494)] = 33821, + [SMALL_STATE(495)] = 33919, + [SMALL_STATE(496)] = 34017, + [SMALL_STATE(497)] = 34115, + [SMALL_STATE(498)] = 34213, + [SMALL_STATE(499)] = 34311, + [SMALL_STATE(500)] = 34409, + [SMALL_STATE(501)] = 34507, + [SMALL_STATE(502)] = 34605, + [SMALL_STATE(503)] = 34703, + [SMALL_STATE(504)] = 34801, + [SMALL_STATE(505)] = 34899, + [SMALL_STATE(506)] = 34997, + [SMALL_STATE(507)] = 35095, + [SMALL_STATE(508)] = 35193, + [SMALL_STATE(509)] = 35291, + [SMALL_STATE(510)] = 35389, + [SMALL_STATE(511)] = 35487, + [SMALL_STATE(512)] = 35585, + [SMALL_STATE(513)] = 35683, + [SMALL_STATE(514)] = 35781, + [SMALL_STATE(515)] = 35879, + [SMALL_STATE(516)] = 35977, + [SMALL_STATE(517)] = 36075, + [SMALL_STATE(518)] = 36173, + [SMALL_STATE(519)] = 36271, + [SMALL_STATE(520)] = 36369, + [SMALL_STATE(521)] = 36467, + [SMALL_STATE(522)] = 36565, + [SMALL_STATE(523)] = 36663, + [SMALL_STATE(524)] = 36761, + [SMALL_STATE(525)] = 36859, + [SMALL_STATE(526)] = 36957, + [SMALL_STATE(527)] = 37055, + [SMALL_STATE(528)] = 37153, + [SMALL_STATE(529)] = 37251, + [SMALL_STATE(530)] = 37349, + [SMALL_STATE(531)] = 37447, + [SMALL_STATE(532)] = 37545, + [SMALL_STATE(533)] = 37643, + [SMALL_STATE(534)] = 37741, + [SMALL_STATE(535)] = 37839, + [SMALL_STATE(536)] = 37937, + [SMALL_STATE(537)] = 38035, + [SMALL_STATE(538)] = 38135, + [SMALL_STATE(539)] = 38233, + [SMALL_STATE(540)] = 38331, + [SMALL_STATE(541)] = 38429, + [SMALL_STATE(542)] = 38527, + [SMALL_STATE(543)] = 38625, + [SMALL_STATE(544)] = 38723, + [SMALL_STATE(545)] = 38821, + [SMALL_STATE(546)] = 38919, + [SMALL_STATE(547)] = 39017, + [SMALL_STATE(548)] = 39115, + [SMALL_STATE(549)] = 39213, + [SMALL_STATE(550)] = 39313, + [SMALL_STATE(551)] = 39411, + [SMALL_STATE(552)] = 39509, + [SMALL_STATE(553)] = 39607, + [SMALL_STATE(554)] = 39705, + [SMALL_STATE(555)] = 39803, + [SMALL_STATE(556)] = 39901, + [SMALL_STATE(557)] = 39999, + [SMALL_STATE(558)] = 40099, + [SMALL_STATE(559)] = 40197, + [SMALL_STATE(560)] = 40297, + [SMALL_STATE(561)] = 40395, + [SMALL_STATE(562)] = 40493, + [SMALL_STATE(563)] = 40591, + [SMALL_STATE(564)] = 40689, + [SMALL_STATE(565)] = 40787, + [SMALL_STATE(566)] = 40885, + [SMALL_STATE(567)] = 40985, + [SMALL_STATE(568)] = 41083, + [SMALL_STATE(569)] = 41181, + [SMALL_STATE(570)] = 41279, + [SMALL_STATE(571)] = 41377, + [SMALL_STATE(572)] = 41475, + [SMALL_STATE(573)] = 41573, + [SMALL_STATE(574)] = 41671, + [SMALL_STATE(575)] = 41769, + [SMALL_STATE(576)] = 41867, + [SMALL_STATE(577)] = 41967, + [SMALL_STATE(578)] = 42065, + [SMALL_STATE(579)] = 42163, + [SMALL_STATE(580)] = 42261, + [SMALL_STATE(581)] = 42359, + [SMALL_STATE(582)] = 42457, + [SMALL_STATE(583)] = 42555, + [SMALL_STATE(584)] = 42655, + [SMALL_STATE(585)] = 42753, + [SMALL_STATE(586)] = 42851, + [SMALL_STATE(587)] = 42949, + [SMALL_STATE(588)] = 43015, + [SMALL_STATE(589)] = 43113, + [SMALL_STATE(590)] = 43211, + [SMALL_STATE(591)] = 43309, + [SMALL_STATE(592)] = 43407, + [SMALL_STATE(593)] = 43505, + [SMALL_STATE(594)] = 43603, + [SMALL_STATE(595)] = 43701, + [SMALL_STATE(596)] = 43799, + [SMALL_STATE(597)] = 43897, + [SMALL_STATE(598)] = 43995, + [SMALL_STATE(599)] = 44093, + [SMALL_STATE(600)] = 44191, + [SMALL_STATE(601)] = 44289, + [SMALL_STATE(602)] = 44387, + [SMALL_STATE(603)] = 44485, + [SMALL_STATE(604)] = 44583, + [SMALL_STATE(605)] = 44656, + [SMALL_STATE(606)] = 44724, + [SMALL_STATE(607)] = 44792, + [SMALL_STATE(608)] = 44860, + [SMALL_STATE(609)] = 44926, + [SMALL_STATE(610)] = 44994, + [SMALL_STATE(611)] = 45062, + [SMALL_STATE(612)] = 45130, + [SMALL_STATE(613)] = 45196, + [SMALL_STATE(614)] = 45264, + [SMALL_STATE(615)] = 45332, + [SMALL_STATE(616)] = 45398, + [SMALL_STATE(617)] = 45466, + [SMALL_STATE(618)] = 45534, + [SMALL_STATE(619)] = 45591, + [SMALL_STATE(620)] = 45656, + [SMALL_STATE(621)] = 45713, + [SMALL_STATE(622)] = 45770, + [SMALL_STATE(623)] = 45827, + [SMALL_STATE(624)] = 45884, + [SMALL_STATE(625)] = 45947, + [SMALL_STATE(626)] = 46010, + [SMALL_STATE(627)] = 46073, + [SMALL_STATE(628)] = 46136, + [SMALL_STATE(629)] = 46199, + [SMALL_STATE(630)] = 46256, + [SMALL_STATE(631)] = 46313, + [SMALL_STATE(632)] = 46370, + [SMALL_STATE(633)] = 46427, + [SMALL_STATE(634)] = 46490, + [SMALL_STATE(635)] = 46547, + [SMALL_STATE(636)] = 46604, + [SMALL_STATE(637)] = 46661, + [SMALL_STATE(638)] = 46724, + [SMALL_STATE(639)] = 46787, + [SMALL_STATE(640)] = 46844, + [SMALL_STATE(641)] = 46901, + [SMALL_STATE(642)] = 46958, + [SMALL_STATE(643)] = 47015, + [SMALL_STATE(644)] = 47072, + [SMALL_STATE(645)] = 47129, + [SMALL_STATE(646)] = 47190, + [SMALL_STATE(647)] = 47247, + [SMALL_STATE(648)] = 47304, + [SMALL_STATE(649)] = 47361, + [SMALL_STATE(650)] = 47418, + [SMALL_STATE(651)] = 47479, + [SMALL_STATE(652)] = 47540, + [SMALL_STATE(653)] = 47597, + [SMALL_STATE(654)] = 47654, + [SMALL_STATE(655)] = 47711, + [SMALL_STATE(656)] = 47768, + [SMALL_STATE(657)] = 47825, + [SMALL_STATE(658)] = 47882, + [SMALL_STATE(659)] = 47939, + [SMALL_STATE(660)] = 47996, + [SMALL_STATE(661)] = 48053, + [SMALL_STATE(662)] = 48110, + [SMALL_STATE(663)] = 48167, + [SMALL_STATE(664)] = 48230, + [SMALL_STATE(665)] = 48287, + [SMALL_STATE(666)] = 48350, + [SMALL_STATE(667)] = 48407, + [SMALL_STATE(668)] = 48464, + [SMALL_STATE(669)] = 48521, + [SMALL_STATE(670)] = 48577, + [SMALL_STATE(671)] = 48633, + [SMALL_STATE(672)] = 48689, + [SMALL_STATE(673)] = 48745, + [SMALL_STATE(674)] = 48837, + [SMALL_STATE(675)] = 48893, + [SMALL_STATE(676)] = 48949, + [SMALL_STATE(677)] = 49041, + [SMALL_STATE(678)] = 49097, + [SMALL_STATE(679)] = 49153, + [SMALL_STATE(680)] = 49209, + [SMALL_STATE(681)] = 49265, + [SMALL_STATE(682)] = 49324, + [SMALL_STATE(683)] = 49379, + [SMALL_STATE(684)] = 49438, + [SMALL_STATE(685)] = 49497, + [SMALL_STATE(686)] = 49556, + [SMALL_STATE(687)] = 49611, + [SMALL_STATE(688)] = 49670, + [SMALL_STATE(689)] = 49729, + [SMALL_STATE(690)] = 49784, + [SMALL_STATE(691)] = 49843, + [SMALL_STATE(692)] = 49898, + [SMALL_STATE(693)] = 49957, + [SMALL_STATE(694)] = 50016, + [SMALL_STATE(695)] = 50075, + [SMALL_STATE(696)] = 50134, + [SMALL_STATE(697)] = 50193, + [SMALL_STATE(698)] = 50252, + [SMALL_STATE(699)] = 50311, + [SMALL_STATE(700)] = 50370, + [SMALL_STATE(701)] = 50425, + [SMALL_STATE(702)] = 50484, + [SMALL_STATE(703)] = 50543, + [SMALL_STATE(704)] = 50602, + [SMALL_STATE(705)] = 50657, + [SMALL_STATE(706)] = 50716, + [SMALL_STATE(707)] = 50775, + [SMALL_STATE(708)] = 50829, + [SMALL_STATE(709)] = 50921, + [SMALL_STATE(710)] = 50975, + [SMALL_STATE(711)] = 51029, + [SMALL_STATE(712)] = 51083, + [SMALL_STATE(713)] = 51175, + [SMALL_STATE(714)] = 51228, + [SMALL_STATE(715)] = 51281, + [SMALL_STATE(716)] = 51334, + [SMALL_STATE(717)] = 51387, + [SMALL_STATE(718)] = 51440, + [SMALL_STATE(719)] = 51493, + [SMALL_STATE(720)] = 51546, + [SMALL_STATE(721)] = 51599, + [SMALL_STATE(722)] = 51652, + [SMALL_STATE(723)] = 51705, + [SMALL_STATE(724)] = 51758, + [SMALL_STATE(725)] = 51811, + [SMALL_STATE(726)] = 51864, + [SMALL_STATE(727)] = 51917, + [SMALL_STATE(728)] = 51970, + [SMALL_STATE(729)] = 52023, + [SMALL_STATE(730)] = 52076, + [SMALL_STATE(731)] = 52129, + [SMALL_STATE(732)] = 52182, + [SMALL_STATE(733)] = 52271, + [SMALL_STATE(734)] = 52360, + [SMALL_STATE(735)] = 52413, + [SMALL_STATE(736)] = 52466, + [SMALL_STATE(737)] = 52519, + [SMALL_STATE(738)] = 52572, + [SMALL_STATE(739)] = 52661, + [SMALL_STATE(740)] = 52714, + [SMALL_STATE(741)] = 52767, + [SMALL_STATE(742)] = 52820, + [SMALL_STATE(743)] = 52873, + [SMALL_STATE(744)] = 52926, + [SMALL_STATE(745)] = 52979, + [SMALL_STATE(746)] = 53032, + [SMALL_STATE(747)] = 53085, + [SMALL_STATE(748)] = 53138, + [SMALL_STATE(749)] = 53191, + [SMALL_STATE(750)] = 53244, + [SMALL_STATE(751)] = 53297, + [SMALL_STATE(752)] = 53350, + [SMALL_STATE(753)] = 53439, + [SMALL_STATE(754)] = 53492, + [SMALL_STATE(755)] = 53545, + [SMALL_STATE(756)] = 53598, + [SMALL_STATE(757)] = 53651, + [SMALL_STATE(758)] = 53704, + [SMALL_STATE(759)] = 53757, + [SMALL_STATE(760)] = 53810, + [SMALL_STATE(761)] = 53863, + [SMALL_STATE(762)] = 53916, + [SMALL_STATE(763)] = 53969, + [SMALL_STATE(764)] = 54022, + [SMALL_STATE(765)] = 54075, + [SMALL_STATE(766)] = 54128, + [SMALL_STATE(767)] = 54181, + [SMALL_STATE(768)] = 54234, + [SMALL_STATE(769)] = 54287, + [SMALL_STATE(770)] = 54340, + [SMALL_STATE(771)] = 54429, + [SMALL_STATE(772)] = 54482, + [SMALL_STATE(773)] = 54571, + [SMALL_STATE(774)] = 54624, + [SMALL_STATE(775)] = 54713, + [SMALL_STATE(776)] = 54802, + [SMALL_STATE(777)] = 54855, + [SMALL_STATE(778)] = 54944, + [SMALL_STATE(779)] = 54997, + [SMALL_STATE(780)] = 55086, + [SMALL_STATE(781)] = 55139, + [SMALL_STATE(782)] = 55192, + [SMALL_STATE(783)] = 55245, + [SMALL_STATE(784)] = 55298, + [SMALL_STATE(785)] = 55351, + [SMALL_STATE(786)] = 55404, + [SMALL_STATE(787)] = 55457, + [SMALL_STATE(788)] = 55510, + [SMALL_STATE(789)] = 55563, + [SMALL_STATE(790)] = 55616, + [SMALL_STATE(791)] = 55669, + [SMALL_STATE(792)] = 55722, + [SMALL_STATE(793)] = 55775, + [SMALL_STATE(794)] = 55864, + [SMALL_STATE(795)] = 55917, + [SMALL_STATE(796)] = 55970, + [SMALL_STATE(797)] = 56023, + [SMALL_STATE(798)] = 56076, + [SMALL_STATE(799)] = 56129, + [SMALL_STATE(800)] = 56182, + [SMALL_STATE(801)] = 56235, + [SMALL_STATE(802)] = 56288, + [SMALL_STATE(803)] = 56341, + [SMALL_STATE(804)] = 56394, + [SMALL_STATE(805)] = 56447, + [SMALL_STATE(806)] = 56500, + [SMALL_STATE(807)] = 56553, + [SMALL_STATE(808)] = 56606, + [SMALL_STATE(809)] = 56659, + [SMALL_STATE(810)] = 56712, + [SMALL_STATE(811)] = 56765, + [SMALL_STATE(812)] = 56818, + [SMALL_STATE(813)] = 56871, + [SMALL_STATE(814)] = 56924, + [SMALL_STATE(815)] = 56977, + [SMALL_STATE(816)] = 57030, + [SMALL_STATE(817)] = 57083, + [SMALL_STATE(818)] = 57136, + [SMALL_STATE(819)] = 57189, + [SMALL_STATE(820)] = 57242, + [SMALL_STATE(821)] = 57295, + [SMALL_STATE(822)] = 57348, + [SMALL_STATE(823)] = 57401, + [SMALL_STATE(824)] = 57454, + [SMALL_STATE(825)] = 57507, + [SMALL_STATE(826)] = 57560, + [SMALL_STATE(827)] = 57649, + [SMALL_STATE(828)] = 57738, + [SMALL_STATE(829)] = 57791, + [SMALL_STATE(830)] = 57844, + [SMALL_STATE(831)] = 57897, + [SMALL_STATE(832)] = 57950, + [SMALL_STATE(833)] = 58003, + [SMALL_STATE(834)] = 58056, + [SMALL_STATE(835)] = 58145, + [SMALL_STATE(836)] = 58234, + [SMALL_STATE(837)] = 58323, + [SMALL_STATE(838)] = 58409, + [SMALL_STATE(839)] = 58495, + [SMALL_STATE(840)] = 58581, + [SMALL_STATE(841)] = 58667, + [SMALL_STATE(842)] = 58753, + [SMALL_STATE(843)] = 58839, + [SMALL_STATE(844)] = 58922, + [SMALL_STATE(845)] = 59005, + [SMALL_STATE(846)] = 59091, + [SMALL_STATE(847)] = 59169, + [SMALL_STATE(848)] = 59247, + [SMALL_STATE(849)] = 59325, + [SMALL_STATE(850)] = 59403, + [SMALL_STATE(851)] = 59481, + [SMALL_STATE(852)] = 59559, + [SMALL_STATE(853)] = 59637, + [SMALL_STATE(854)] = 59715, + [SMALL_STATE(855)] = 59790, + [SMALL_STATE(856)] = 59865, + [SMALL_STATE(857)] = 59940, + [SMALL_STATE(858)] = 60025, + [SMALL_STATE(859)] = 60100, + [SMALL_STATE(860)] = 60175, + [SMALL_STATE(861)] = 60254, + [SMALL_STATE(862)] = 60329, + [SMALL_STATE(863)] = 60404, + [SMALL_STATE(864)] = 60479, + [SMALL_STATE(865)] = 60554, + [SMALL_STATE(866)] = 60629, + [SMALL_STATE(867)] = 60704, + [SMALL_STATE(868)] = 60779, + [SMALL_STATE(869)] = 60858, + [SMALL_STATE(870)] = 60933, + [SMALL_STATE(871)] = 61008, + [SMALL_STATE(872)] = 61083, + [SMALL_STATE(873)] = 61158, + [SMALL_STATE(874)] = 61233, + [SMALL_STATE(875)] = 61312, + [SMALL_STATE(876)] = 61391, + [SMALL_STATE(877)] = 61466, + [SMALL_STATE(878)] = 61545, + [SMALL_STATE(879)] = 61620, + [SMALL_STATE(880)] = 61695, + [SMALL_STATE(881)] = 61770, + [SMALL_STATE(882)] = 61845, + [SMALL_STATE(883)] = 61920, + [SMALL_STATE(884)] = 61995, + [SMALL_STATE(885)] = 62070, + [SMALL_STATE(886)] = 62149, + [SMALL_STATE(887)] = 62224, + [SMALL_STATE(888)] = 62303, + [SMALL_STATE(889)] = 62378, + [SMALL_STATE(890)] = 62457, + [SMALL_STATE(891)] = 62532, + [SMALL_STATE(892)] = 62607, + [SMALL_STATE(893)] = 62682, + [SMALL_STATE(894)] = 62767, + [SMALL_STATE(895)] = 62842, + [SMALL_STATE(896)] = 62921, + [SMALL_STATE(897)] = 62996, + [SMALL_STATE(898)] = 63071, + [SMALL_STATE(899)] = 63146, + [SMALL_STATE(900)] = 63221, + [SMALL_STATE(901)] = 63296, + [SMALL_STATE(902)] = 63381, + [SMALL_STATE(903)] = 63456, + [SMALL_STATE(904)] = 63535, + [SMALL_STATE(905)] = 63614, + [SMALL_STATE(906)] = 63689, + [SMALL_STATE(907)] = 63764, + [SMALL_STATE(908)] = 63839, + [SMALL_STATE(909)] = 63918, + [SMALL_STATE(910)] = 63997, + [SMALL_STATE(911)] = 64072, + [SMALL_STATE(912)] = 64147, + [SMALL_STATE(913)] = 64222, + [SMALL_STATE(914)] = 64297, + [SMALL_STATE(915)] = 64372, + [SMALL_STATE(916)] = 64447, + [SMALL_STATE(917)] = 64526, + [SMALL_STATE(918)] = 64601, + [SMALL_STATE(919)] = 64676, + [SMALL_STATE(920)] = 64751, + [SMALL_STATE(921)] = 64826, + [SMALL_STATE(922)] = 64901, + [SMALL_STATE(923)] = 64976, + [SMALL_STATE(924)] = 65055, + [SMALL_STATE(925)] = 65134, + [SMALL_STATE(926)] = 65209, + [SMALL_STATE(927)] = 65284, + [SMALL_STATE(928)] = 65359, + [SMALL_STATE(929)] = 65434, + [SMALL_STATE(930)] = 65509, + [SMALL_STATE(931)] = 65584, + [SMALL_STATE(932)] = 65659, + [SMALL_STATE(933)] = 65734, + [SMALL_STATE(934)] = 65809, + [SMALL_STATE(935)] = 65884, + [SMALL_STATE(936)] = 65959, + [SMALL_STATE(937)] = 66034, + [SMALL_STATE(938)] = 66109, + [SMALL_STATE(939)] = 66184, + [SMALL_STATE(940)] = 66263, + [SMALL_STATE(941)] = 66338, + [SMALL_STATE(942)] = 66417, + [SMALL_STATE(943)] = 66496, + [SMALL_STATE(944)] = 66575, + [SMALL_STATE(945)] = 66650, + [SMALL_STATE(946)] = 66725, + [SMALL_STATE(947)] = 66800, + [SMALL_STATE(948)] = 66875, + [SMALL_STATE(949)] = 66950, + [SMALL_STATE(950)] = 67032, + [SMALL_STATE(951)] = 67116, + [SMALL_STATE(952)] = 67168, + [SMALL_STATE(953)] = 67252, + [SMALL_STATE(954)] = 67336, + [SMALL_STATE(955)] = 67388, + [SMALL_STATE(956)] = 67440, + [SMALL_STATE(957)] = 67497, + [SMALL_STATE(958)] = 67554, + [SMALL_STATE(959)] = 67605, + [SMALL_STATE(960)] = 67662, + [SMALL_STATE(961)] = 67713, + [SMALL_STATE(962)] = 67764, + [SMALL_STATE(963)] = 67825, + [SMALL_STATE(964)] = 67906, + [SMALL_STATE(965)] = 67957, + [SMALL_STATE(966)] = 68020, + [SMALL_STATE(967)] = 68089, + [SMALL_STATE(968)] = 68156, + [SMALL_STATE(969)] = 68207, + [SMALL_STATE(970)] = 68258, + [SMALL_STATE(971)] = 68309, + [SMALL_STATE(972)] = 68360, + [SMALL_STATE(973)] = 68425, + [SMALL_STATE(974)] = 68496, + [SMALL_STATE(975)] = 68553, + [SMALL_STATE(976)] = 68604, + [SMALL_STATE(977)] = 68650, + [SMALL_STATE(978)] = 68706, + [SMALL_STATE(979)] = 68756, + [SMALL_STATE(980)] = 68816, + [SMALL_STATE(981)] = 68864, + [SMALL_STATE(982)] = 68914, + [SMALL_STATE(983)] = 68978, + [SMALL_STATE(984)] = 69042, + [SMALL_STATE(985)] = 69092, + [SMALL_STATE(986)] = 69142, + [SMALL_STATE(987)] = 69188, + [SMALL_STATE(988)] = 69234, + [SMALL_STATE(989)] = 69280, + [SMALL_STATE(990)] = 69360, + [SMALL_STATE(991)] = 69420, + [SMALL_STATE(992)] = 69476, + [SMALL_STATE(993)] = 69526, + [SMALL_STATE(994)] = 69596, + [SMALL_STATE(995)] = 69676, + [SMALL_STATE(996)] = 69726, + [SMALL_STATE(997)] = 69772, + [SMALL_STATE(998)] = 69828, + [SMALL_STATE(999)] = 69878, + [SMALL_STATE(1000)] = 69934, + [SMALL_STATE(1001)] = 69980, + [SMALL_STATE(1002)] = 70042, + [SMALL_STATE(1003)] = 70094, + [SMALL_STATE(1004)] = 70162, + [SMALL_STATE(1005)] = 70224, + [SMALL_STATE(1006)] = 70280, + [SMALL_STATE(1007)] = 70330, + [SMALL_STATE(1008)] = 70410, + [SMALL_STATE(1009)] = 70466, + [SMALL_STATE(1010)] = 70536, + [SMALL_STATE(1011)] = 70602, + [SMALL_STATE(1012)] = 70666, + [SMALL_STATE(1013)] = 70714, + [SMALL_STATE(1014)] = 70764, + [SMALL_STATE(1015)] = 70820, + [SMALL_STATE(1016)] = 70876, + [SMALL_STATE(1017)] = 70932, + [SMALL_STATE(1018)] = 70978, + [SMALL_STATE(1019)] = 71026, + [SMALL_STATE(1020)] = 71072, + [SMALL_STATE(1021)] = 71128, + [SMALL_STATE(1022)] = 71184, + [SMALL_STATE(1023)] = 71240, + [SMALL_STATE(1024)] = 71300, + [SMALL_STATE(1025)] = 71368, + [SMALL_STATE(1026)] = 71434, + [SMALL_STATE(1027)] = 71502, + [SMALL_STATE(1028)] = 71564, + [SMALL_STATE(1029)] = 71630, + [SMALL_STATE(1030)] = 71676, + [SMALL_STATE(1031)] = 71746, + [SMALL_STATE(1032)] = 71798, + [SMALL_STATE(1033)] = 71847, + [SMALL_STATE(1034)] = 71892, + [SMALL_STATE(1035)] = 71937, + [SMALL_STATE(1036)] = 71982, + [SMALL_STATE(1037)] = 72027, + [SMALL_STATE(1038)] = 72072, + [SMALL_STATE(1039)] = 72121, + [SMALL_STATE(1040)] = 72170, + [SMALL_STATE(1041)] = 72215, + [SMALL_STATE(1042)] = 72260, + [SMALL_STATE(1043)] = 72311, + [SMALL_STATE(1044)] = 72362, + [SMALL_STATE(1045)] = 72407, + [SMALL_STATE(1046)] = 72460, + [SMALL_STATE(1047)] = 72505, + [SMALL_STATE(1048)] = 72550, + [SMALL_STATE(1049)] = 72595, + [SMALL_STATE(1050)] = 72646, + [SMALL_STATE(1051)] = 72697, + [SMALL_STATE(1052)] = 72752, + [SMALL_STATE(1053)] = 72797, + [SMALL_STATE(1054)] = 72844, + [SMALL_STATE(1055)] = 72891, + [SMALL_STATE(1056)] = 72938, + [SMALL_STATE(1057)] = 72993, + [SMALL_STATE(1058)] = 73038, + [SMALL_STATE(1059)] = 73087, + [SMALL_STATE(1060)] = 73136, + [SMALL_STATE(1061)] = 73181, + [SMALL_STATE(1062)] = 73226, + [SMALL_STATE(1063)] = 73271, + [SMALL_STATE(1064)] = 73316, + [SMALL_STATE(1065)] = 73367, + [SMALL_STATE(1066)] = 73418, + [SMALL_STATE(1067)] = 73463, + [SMALL_STATE(1068)] = 73508, + [SMALL_STATE(1069)] = 73553, + [SMALL_STATE(1070)] = 73598, + [SMALL_STATE(1071)] = 73653, + [SMALL_STATE(1072)] = 73708, + [SMALL_STATE(1073)] = 73753, + [SMALL_STATE(1074)] = 73808, + [SMALL_STATE(1075)] = 73869, + [SMALL_STATE(1076)] = 73938, + [SMALL_STATE(1077)] = 73993, + [SMALL_STATE(1078)] = 74052, + [SMALL_STATE(1079)] = 74119, + [SMALL_STATE(1080)] = 74184, + [SMALL_STATE(1081)] = 74247, + [SMALL_STATE(1082)] = 74296, + [SMALL_STATE(1083)] = 74343, + [SMALL_STATE(1084)] = 74390, + [SMALL_STATE(1085)] = 74437, + [SMALL_STATE(1086)] = 74492, + [SMALL_STATE(1087)] = 74541, + [SMALL_STATE(1088)] = 74602, + [SMALL_STATE(1089)] = 74651, + [SMALL_STATE(1090)] = 74720, + [SMALL_STATE(1091)] = 74775, + [SMALL_STATE(1092)] = 74834, + [SMALL_STATE(1093)] = 74901, + [SMALL_STATE(1094)] = 74966, + [SMALL_STATE(1095)] = 75029, + [SMALL_STATE(1096)] = 75074, + [SMALL_STATE(1097)] = 75119, + [SMALL_STATE(1098)] = 75164, + [SMALL_STATE(1099)] = 75209, + [SMALL_STATE(1100)] = 75254, + [SMALL_STATE(1101)] = 75299, + [SMALL_STATE(1102)] = 75344, + [SMALL_STATE(1103)] = 75389, + [SMALL_STATE(1104)] = 75434, + [SMALL_STATE(1105)] = 75479, + [SMALL_STATE(1106)] = 75524, + [SMALL_STATE(1107)] = 75569, + [SMALL_STATE(1108)] = 75614, + [SMALL_STATE(1109)] = 75663, + [SMALL_STATE(1110)] = 75712, + [SMALL_STATE(1111)] = 75761, + [SMALL_STATE(1112)] = 75810, + [SMALL_STATE(1113)] = 75857, + [SMALL_STATE(1114)] = 75904, + [SMALL_STATE(1115)] = 75951, + [SMALL_STATE(1116)] = 76006, + [SMALL_STATE(1117)] = 76061, + [SMALL_STATE(1118)] = 76106, + [SMALL_STATE(1119)] = 76157, + [SMALL_STATE(1120)] = 76208, + [SMALL_STATE(1121)] = 76259, + [SMALL_STATE(1122)] = 76304, + [SMALL_STATE(1123)] = 76349, + [SMALL_STATE(1124)] = 76404, + [SMALL_STATE(1125)] = 76465, + [SMALL_STATE(1126)] = 76534, + [SMALL_STATE(1127)] = 76589, + [SMALL_STATE(1128)] = 76648, + [SMALL_STATE(1129)] = 76715, + [SMALL_STATE(1130)] = 76780, + [SMALL_STATE(1131)] = 76843, + [SMALL_STATE(1132)] = 76888, + [SMALL_STATE(1133)] = 76954, + [SMALL_STATE(1134)] = 76998, + [SMALL_STATE(1135)] = 77042, + [SMALL_STATE(1136)] = 77086, + [SMALL_STATE(1137)] = 77130, + [SMALL_STATE(1138)] = 77174, + [SMALL_STATE(1139)] = 77218, + [SMALL_STATE(1140)] = 77266, + [SMALL_STATE(1141)] = 77310, + [SMALL_STATE(1142)] = 77360, + [SMALL_STATE(1143)] = 77404, + [SMALL_STATE(1144)] = 77454, + [SMALL_STATE(1145)] = 77498, + [SMALL_STATE(1146)] = 77542, + [SMALL_STATE(1147)] = 77586, + [SMALL_STATE(1148)] = 77630, + [SMALL_STATE(1149)] = 77674, + [SMALL_STATE(1150)] = 77718, + [SMALL_STATE(1151)] = 77762, + [SMALL_STATE(1152)] = 77806, + [SMALL_STATE(1153)] = 77850, + [SMALL_STATE(1154)] = 77894, + [SMALL_STATE(1155)] = 77938, + [SMALL_STATE(1156)] = 77982, + [SMALL_STATE(1157)] = 78026, + [SMALL_STATE(1158)] = 78070, + [SMALL_STATE(1159)] = 78118, + [SMALL_STATE(1160)] = 78166, + [SMALL_STATE(1161)] = 78210, + [SMALL_STATE(1162)] = 78254, + [SMALL_STATE(1163)] = 78298, + [SMALL_STATE(1164)] = 78342, + [SMALL_STATE(1165)] = 78386, + [SMALL_STATE(1166)] = 78430, + [SMALL_STATE(1167)] = 78474, + [SMALL_STATE(1168)] = 78518, + [SMALL_STATE(1169)] = 78562, + [SMALL_STATE(1170)] = 78606, + [SMALL_STATE(1171)] = 78650, + [SMALL_STATE(1172)] = 78694, + [SMALL_STATE(1173)] = 78738, + [SMALL_STATE(1174)] = 78782, + [SMALL_STATE(1175)] = 78826, + [SMALL_STATE(1176)] = 78870, + [SMALL_STATE(1177)] = 78914, + [SMALL_STATE(1178)] = 78958, + [SMALL_STATE(1179)] = 79002, + [SMALL_STATE(1180)] = 79046, + [SMALL_STATE(1181)] = 79090, + [SMALL_STATE(1182)] = 79136, + [SMALL_STATE(1183)] = 79182, + [SMALL_STATE(1184)] = 79228, + [SMALL_STATE(1185)] = 79274, + [SMALL_STATE(1186)] = 79320, + [SMALL_STATE(1187)] = 79368, + [SMALL_STATE(1188)] = 79416, + [SMALL_STATE(1189)] = 79460, + [SMALL_STATE(1190)] = 79504, + [SMALL_STATE(1191)] = 79548, + [SMALL_STATE(1192)] = 79592, + [SMALL_STATE(1193)] = 79636, + [SMALL_STATE(1194)] = 79680, + [SMALL_STATE(1195)] = 79726, + [SMALL_STATE(1196)] = 79770, + [SMALL_STATE(1197)] = 79818, + [SMALL_STATE(1198)] = 79862, + [SMALL_STATE(1199)] = 79908, + [SMALL_STATE(1200)] = 79954, + [SMALL_STATE(1201)] = 80000, + [SMALL_STATE(1202)] = 80054, + [SMALL_STATE(1203)] = 80108, + [SMALL_STATE(1204)] = 80152, + [SMALL_STATE(1205)] = 80200, + [SMALL_STATE(1206)] = 80246, + [SMALL_STATE(1207)] = 80290, + [SMALL_STATE(1208)] = 80334, + [SMALL_STATE(1209)] = 80378, + [SMALL_STATE(1210)] = 80422, + [SMALL_STATE(1211)] = 80476, + [SMALL_STATE(1212)] = 80536, + [SMALL_STATE(1213)] = 80604, + [SMALL_STATE(1214)] = 80658, + [SMALL_STATE(1215)] = 80716, + [SMALL_STATE(1216)] = 80760, + [SMALL_STATE(1217)] = 80804, + [SMALL_STATE(1218)] = 80866, + [SMALL_STATE(1219)] = 80910, + [SMALL_STATE(1220)] = 80954, + [SMALL_STATE(1221)] = 81002, + [SMALL_STATE(1222)] = 81050, + [SMALL_STATE(1223)] = 81094, + [SMALL_STATE(1224)] = 81142, + [SMALL_STATE(1225)] = 81190, + [SMALL_STATE(1226)] = 81238, + [SMALL_STATE(1227)] = 81286, + [SMALL_STATE(1228)] = 81332, + [SMALL_STATE(1229)] = 81378, + [SMALL_STATE(1230)] = 81426, + [SMALL_STATE(1231)] = 81474, + [SMALL_STATE(1232)] = 81518, + [SMALL_STATE(1233)] = 81564, + [SMALL_STATE(1234)] = 81608, + [SMALL_STATE(1235)] = 81656, + [SMALL_STATE(1236)] = 81704, + [SMALL_STATE(1237)] = 81752, + [SMALL_STATE(1238)] = 81796, + [SMALL_STATE(1239)] = 81840, + [SMALL_STATE(1240)] = 81884, + [SMALL_STATE(1241)] = 81930, + [SMALL_STATE(1242)] = 81974, + [SMALL_STATE(1243)] = 82018, + [SMALL_STATE(1244)] = 82062, + [SMALL_STATE(1245)] = 82106, + [SMALL_STATE(1246)] = 82150, + [SMALL_STATE(1247)] = 82194, + [SMALL_STATE(1248)] = 82238, + [SMALL_STATE(1249)] = 82282, + [SMALL_STATE(1250)] = 82326, + [SMALL_STATE(1251)] = 82370, + [SMALL_STATE(1252)] = 82414, + [SMALL_STATE(1253)] = 82458, + [SMALL_STATE(1254)] = 82506, + [SMALL_STATE(1255)] = 82550, + [SMALL_STATE(1256)] = 82594, + [SMALL_STATE(1257)] = 82638, + [SMALL_STATE(1258)] = 82682, + [SMALL_STATE(1259)] = 82726, + [SMALL_STATE(1260)] = 82770, + [SMALL_STATE(1261)] = 82814, + [SMALL_STATE(1262)] = 82858, + [SMALL_STATE(1263)] = 82902, + [SMALL_STATE(1264)] = 82952, + [SMALL_STATE(1265)] = 83002, + [SMALL_STATE(1266)] = 83046, + [SMALL_STATE(1267)] = 83090, + [SMALL_STATE(1268)] = 83134, + [SMALL_STATE(1269)] = 83178, + [SMALL_STATE(1270)] = 83222, + [SMALL_STATE(1271)] = 83266, + [SMALL_STATE(1272)] = 83310, + [SMALL_STATE(1273)] = 83354, + [SMALL_STATE(1274)] = 83398, + [SMALL_STATE(1275)] = 83442, + [SMALL_STATE(1276)] = 83486, + [SMALL_STATE(1277)] = 83530, + [SMALL_STATE(1278)] = 83574, + [SMALL_STATE(1279)] = 83618, + [SMALL_STATE(1280)] = 83662, + [SMALL_STATE(1281)] = 83706, + [SMALL_STATE(1282)] = 83750, + [SMALL_STATE(1283)] = 83796, + [SMALL_STATE(1284)] = 83840, + [SMALL_STATE(1285)] = 83904, + [SMALL_STATE(1286)] = 83947, + [SMALL_STATE(1287)] = 83990, + [SMALL_STATE(1288)] = 84033, + [SMALL_STATE(1289)] = 84076, + [SMALL_STATE(1290)] = 84119, + [SMALL_STATE(1291)] = 84162, + [SMALL_STATE(1292)] = 84205, + [SMALL_STATE(1293)] = 84248, + [SMALL_STATE(1294)] = 84291, + [SMALL_STATE(1295)] = 84334, + [SMALL_STATE(1296)] = 84377, + [SMALL_STATE(1297)] = 84420, + [SMALL_STATE(1298)] = 84463, + [SMALL_STATE(1299)] = 84506, + [SMALL_STATE(1300)] = 84549, + [SMALL_STATE(1301)] = 84592, + [SMALL_STATE(1302)] = 84635, + [SMALL_STATE(1303)] = 84678, + [SMALL_STATE(1304)] = 84721, + [SMALL_STATE(1305)] = 84764, + [SMALL_STATE(1306)] = 84807, + [SMALL_STATE(1307)] = 84850, + [SMALL_STATE(1308)] = 84893, + [SMALL_STATE(1309)] = 84936, + [SMALL_STATE(1310)] = 84979, + [SMALL_STATE(1311)] = 85022, + [SMALL_STATE(1312)] = 85065, + [SMALL_STATE(1313)] = 85108, + [SMALL_STATE(1314)] = 85151, + [SMALL_STATE(1315)] = 85194, + [SMALL_STATE(1316)] = 85237, + [SMALL_STATE(1317)] = 85280, + [SMALL_STATE(1318)] = 85323, + [SMALL_STATE(1319)] = 85366, + [SMALL_STATE(1320)] = 85409, + [SMALL_STATE(1321)] = 85452, + [SMALL_STATE(1322)] = 85495, + [SMALL_STATE(1323)] = 85542, + [SMALL_STATE(1324)] = 85589, + [SMALL_STATE(1325)] = 85636, + [SMALL_STATE(1326)] = 85683, + [SMALL_STATE(1327)] = 85730, + [SMALL_STATE(1328)] = 85781, + [SMALL_STATE(1329)] = 85824, + [SMALL_STATE(1330)] = 85869, + [SMALL_STATE(1331)] = 85914, + [SMALL_STATE(1332)] = 85957, + [SMALL_STATE(1333)] = 86000, + [SMALL_STATE(1334)] = 86043, + [SMALL_STATE(1335)] = 86086, + [SMALL_STATE(1336)] = 86129, + [SMALL_STATE(1337)] = 86172, + [SMALL_STATE(1338)] = 86215, + [SMALL_STATE(1339)] = 86258, + [SMALL_STATE(1340)] = 86301, + [SMALL_STATE(1341)] = 86346, + [SMALL_STATE(1342)] = 86391, + [SMALL_STATE(1343)] = 86438, + [SMALL_STATE(1344)] = 86483, + [SMALL_STATE(1345)] = 86526, + [SMALL_STATE(1346)] = 86571, + [SMALL_STATE(1347)] = 86616, + [SMALL_STATE(1348)] = 86661, + [SMALL_STATE(1349)] = 86706, + [SMALL_STATE(1350)] = 86753, + [SMALL_STATE(1351)] = 86798, + [SMALL_STATE(1352)] = 86841, + [SMALL_STATE(1353)] = 86886, + [SMALL_STATE(1354)] = 86933, + [SMALL_STATE(1355)] = 86976, + [SMALL_STATE(1356)] = 87019, + [SMALL_STATE(1357)] = 87062, + [SMALL_STATE(1358)] = 87105, + [SMALL_STATE(1359)] = 87148, + [SMALL_STATE(1360)] = 87191, + [SMALL_STATE(1361)] = 87234, + [SMALL_STATE(1362)] = 87281, + [SMALL_STATE(1363)] = 87326, + [SMALL_STATE(1364)] = 87369, + [SMALL_STATE(1365)] = 87412, + [SMALL_STATE(1366)] = 87455, + [SMALL_STATE(1367)] = 87500, + [SMALL_STATE(1368)] = 87543, + [SMALL_STATE(1369)] = 87588, + [SMALL_STATE(1370)] = 87631, + [SMALL_STATE(1371)] = 87674, + [SMALL_STATE(1372)] = 87717, + [SMALL_STATE(1373)] = 87760, + [SMALL_STATE(1374)] = 87803, + [SMALL_STATE(1375)] = 87846, + [SMALL_STATE(1376)] = 87889, + [SMALL_STATE(1377)] = 87932, + [SMALL_STATE(1378)] = 87975, + [SMALL_STATE(1379)] = 88022, + [SMALL_STATE(1380)] = 88065, + [SMALL_STATE(1381)] = 88108, + [SMALL_STATE(1382)] = 88151, + [SMALL_STATE(1383)] = 88194, + [SMALL_STATE(1384)] = 88237, + [SMALL_STATE(1385)] = 88280, + [SMALL_STATE(1386)] = 88323, + [SMALL_STATE(1387)] = 88366, + [SMALL_STATE(1388)] = 88413, + [SMALL_STATE(1389)] = 88460, + [SMALL_STATE(1390)] = 88503, + [SMALL_STATE(1391)] = 88546, + [SMALL_STATE(1392)] = 88591, + [SMALL_STATE(1393)] = 88634, + [SMALL_STATE(1394)] = 88677, + [SMALL_STATE(1395)] = 88720, + [SMALL_STATE(1396)] = 88765, + [SMALL_STATE(1397)] = 88808, + [SMALL_STATE(1398)] = 88853, + [SMALL_STATE(1399)] = 88896, + [SMALL_STATE(1400)] = 88939, + [SMALL_STATE(1401)] = 88984, + [SMALL_STATE(1402)] = 89027, + [SMALL_STATE(1403)] = 89070, + [SMALL_STATE(1404)] = 89113, + [SMALL_STATE(1405)] = 89156, + [SMALL_STATE(1406)] = 89199, + [SMALL_STATE(1407)] = 89242, + [SMALL_STATE(1408)] = 89285, + [SMALL_STATE(1409)] = 89328, + [SMALL_STATE(1410)] = 89379, + [SMALL_STATE(1411)] = 89422, + [SMALL_STATE(1412)] = 89464, + [SMALL_STATE(1413)] = 89506, + [SMALL_STATE(1414)] = 89550, + [SMALL_STATE(1415)] = 89592, + [SMALL_STATE(1416)] = 89638, + [SMALL_STATE(1417)] = 89680, + [SMALL_STATE(1418)] = 89722, + [SMALL_STATE(1419)] = 89764, + [SMALL_STATE(1420)] = 89806, + [SMALL_STATE(1421)] = 89848, + [SMALL_STATE(1422)] = 89892, + [SMALL_STATE(1423)] = 89934, + [SMALL_STATE(1424)] = 89978, + [SMALL_STATE(1425)] = 90020, + [SMALL_STATE(1426)] = 90064, + [SMALL_STATE(1427)] = 90106, + [SMALL_STATE(1428)] = 90150, + [SMALL_STATE(1429)] = 90192, + [SMALL_STATE(1430)] = 90234, + [SMALL_STATE(1431)] = 90280, + [SMALL_STATE(1432)] = 90322, + [SMALL_STATE(1433)] = 90364, + [SMALL_STATE(1434)] = 90406, + [SMALL_STATE(1435)] = 90448, + [SMALL_STATE(1436)] = 90490, + [SMALL_STATE(1437)] = 90532, + [SMALL_STATE(1438)] = 90574, + [SMALL_STATE(1439)] = 90616, + [SMALL_STATE(1440)] = 90658, + [SMALL_STATE(1441)] = 90700, + [SMALL_STATE(1442)] = 90742, + [SMALL_STATE(1443)] = 90786, + [SMALL_STATE(1444)] = 90830, + [SMALL_STATE(1445)] = 90872, + [SMALL_STATE(1446)] = 90920, + [SMALL_STATE(1447)] = 90970, + [SMALL_STATE(1448)] = 91012, + [SMALL_STATE(1449)] = 91054, + [SMALL_STATE(1450)] = 91100, + [SMALL_STATE(1451)] = 91142, + [SMALL_STATE(1452)] = 91186, + [SMALL_STATE(1453)] = 91230, + [SMALL_STATE(1454)] = 91272, + [SMALL_STATE(1455)] = 91314, + [SMALL_STATE(1456)] = 91356, + [SMALL_STATE(1457)] = 91398, + [SMALL_STATE(1458)] = 91440, + [SMALL_STATE(1459)] = 91481, + [SMALL_STATE(1460)] = 91522, + [SMALL_STATE(1461)] = 91563, + [SMALL_STATE(1462)] = 91604, + [SMALL_STATE(1463)] = 91647, + [SMALL_STATE(1464)] = 91690, + [SMALL_STATE(1465)] = 91733, + [SMALL_STATE(1466)] = 91776, + [SMALL_STATE(1467)] = 91819, + [SMALL_STATE(1468)] = 91862, + [SMALL_STATE(1469)] = 91903, + [SMALL_STATE(1470)] = 91944, + [SMALL_STATE(1471)] = 91985, + [SMALL_STATE(1472)] = 92028, + [SMALL_STATE(1473)] = 92069, + [SMALL_STATE(1474)] = 92110, + [SMALL_STATE(1475)] = 92151, + [SMALL_STATE(1476)] = 92194, + [SMALL_STATE(1477)] = 92237, + [SMALL_STATE(1478)] = 92311, + [SMALL_STATE(1479)] = 92385, + [SMALL_STATE(1480)] = 92453, + [SMALL_STATE(1481)] = 92521, + [SMALL_STATE(1482)] = 92589, + [SMALL_STATE(1483)] = 92657, + [SMALL_STATE(1484)] = 92725, + [SMALL_STATE(1485)] = 92793, + [SMALL_STATE(1486)] = 92861, + [SMALL_STATE(1487)] = 92929, + [SMALL_STATE(1488)] = 92997, + [SMALL_STATE(1489)] = 93065, + [SMALL_STATE(1490)] = 93133, + [SMALL_STATE(1491)] = 93201, + [SMALL_STATE(1492)] = 93269, + [SMALL_STATE(1493)] = 93337, + [SMALL_STATE(1494)] = 93405, + [SMALL_STATE(1495)] = 93473, + [SMALL_STATE(1496)] = 93541, + [SMALL_STATE(1497)] = 93609, + [SMALL_STATE(1498)] = 93677, + [SMALL_STATE(1499)] = 93745, + [SMALL_STATE(1500)] = 93813, + [SMALL_STATE(1501)] = 93881, + [SMALL_STATE(1502)] = 93949, + [SMALL_STATE(1503)] = 94017, + [SMALL_STATE(1504)] = 94085, + [SMALL_STATE(1505)] = 94153, + [SMALL_STATE(1506)] = 94221, + [SMALL_STATE(1507)] = 94289, + [SMALL_STATE(1508)] = 94357, + [SMALL_STATE(1509)] = 94425, + [SMALL_STATE(1510)] = 94493, + [SMALL_STATE(1511)] = 94561, + [SMALL_STATE(1512)] = 94629, + [SMALL_STATE(1513)] = 94697, + [SMALL_STATE(1514)] = 94765, + [SMALL_STATE(1515)] = 94833, + [SMALL_STATE(1516)] = 94898, + [SMALL_STATE(1517)] = 94963, + [SMALL_STATE(1518)] = 95028, + [SMALL_STATE(1519)] = 95093, + [SMALL_STATE(1520)] = 95158, + [SMALL_STATE(1521)] = 95224, + [SMALL_STATE(1522)] = 95290, + [SMALL_STATE(1523)] = 95356, + [SMALL_STATE(1524)] = 95422, + [SMALL_STATE(1525)] = 95488, + [SMALL_STATE(1526)] = 95554, + [SMALL_STATE(1527)] = 95620, + [SMALL_STATE(1528)] = 95686, + [SMALL_STATE(1529)] = 95752, + [SMALL_STATE(1530)] = 95818, + [SMALL_STATE(1531)] = 95884, + [SMALL_STATE(1532)] = 95950, + [SMALL_STATE(1533)] = 96016, + [SMALL_STATE(1534)] = 96082, + [SMALL_STATE(1535)] = 96148, + [SMALL_STATE(1536)] = 96214, + [SMALL_STATE(1537)] = 96280, + [SMALL_STATE(1538)] = 96346, + [SMALL_STATE(1539)] = 96412, + [SMALL_STATE(1540)] = 96478, + [SMALL_STATE(1541)] = 96541, + [SMALL_STATE(1542)] = 96599, + [SMALL_STATE(1543)] = 96657, + [SMALL_STATE(1544)] = 96715, + [SMALL_STATE(1545)] = 96773, + [SMALL_STATE(1546)] = 96819, + [SMALL_STATE(1547)] = 96877, + [SMALL_STATE(1548)] = 96935, + [SMALL_STATE(1549)] = 96993, + [SMALL_STATE(1550)] = 97051, + [SMALL_STATE(1551)] = 97097, + [SMALL_STATE(1552)] = 97142, + [SMALL_STATE(1553)] = 97187, + [SMALL_STATE(1554)] = 97231, + [SMALL_STATE(1555)] = 97275, + [SMALL_STATE(1556)] = 97319, + [SMALL_STATE(1557)] = 97363, + [SMALL_STATE(1558)] = 97406, + [SMALL_STATE(1559)] = 97449, + [SMALL_STATE(1560)] = 97490, + [SMALL_STATE(1561)] = 97533, + [SMALL_STATE(1562)] = 97576, + [SMALL_STATE(1563)] = 97617, + [SMALL_STATE(1564)] = 97649, + [SMALL_STATE(1565)] = 97691, + [SMALL_STATE(1566)] = 97723, + [SMALL_STATE(1567)] = 97753, + [SMALL_STATE(1568)] = 97785, + [SMALL_STATE(1569)] = 97827, + [SMALL_STATE(1570)] = 97859, + [SMALL_STATE(1571)] = 97889, + [SMALL_STATE(1572)] = 97921, + [SMALL_STATE(1573)] = 97953, + [SMALL_STATE(1574)] = 97983, + [SMALL_STATE(1575)] = 98013, + [SMALL_STATE(1576)] = 98043, + [SMALL_STATE(1577)] = 98073, + [SMALL_STATE(1578)] = 98103, + [SMALL_STATE(1579)] = 98133, + [SMALL_STATE(1580)] = 98163, + [SMALL_STATE(1581)] = 98193, + [SMALL_STATE(1582)] = 98240, + [SMALL_STATE(1583)] = 98269, + [SMALL_STATE(1584)] = 98298, + [SMALL_STATE(1585)] = 98323, + [SMALL_STATE(1586)] = 98352, + [SMALL_STATE(1587)] = 98381, + [SMALL_STATE(1588)] = 98410, + [SMALL_STATE(1589)] = 98457, + [SMALL_STATE(1590)] = 98486, + [SMALL_STATE(1591)] = 98533, + [SMALL_STATE(1592)] = 98562, + [SMALL_STATE(1593)] = 98591, + [SMALL_STATE(1594)] = 98616, + [SMALL_STATE(1595)] = 98645, + [SMALL_STATE(1596)] = 98674, + [SMALL_STATE(1597)] = 98703, + [SMALL_STATE(1598)] = 98728, + [SMALL_STATE(1599)] = 98775, + [SMALL_STATE(1600)] = 98804, + [SMALL_STATE(1601)] = 98851, + [SMALL_STATE(1602)] = 98880, + [SMALL_STATE(1603)] = 98905, + [SMALL_STATE(1604)] = 98952, + [SMALL_STATE(1605)] = 98981, + [SMALL_STATE(1606)] = 99010, + [SMALL_STATE(1607)] = 99057, + [SMALL_STATE(1608)] = 99104, + [SMALL_STATE(1609)] = 99151, + [SMALL_STATE(1610)] = 99180, + [SMALL_STATE(1611)] = 99209, + [SMALL_STATE(1612)] = 99238, + [SMALL_STATE(1613)] = 99267, + [SMALL_STATE(1614)] = 99296, + [SMALL_STATE(1615)] = 99325, + [SMALL_STATE(1616)] = 99354, + [SMALL_STATE(1617)] = 99383, + [SMALL_STATE(1618)] = 99412, + [SMALL_STATE(1619)] = 99459, + [SMALL_STATE(1620)] = 99505, + [SMALL_STATE(1621)] = 99533, + [SMALL_STATE(1622)] = 99579, + [SMALL_STATE(1623)] = 99625, + [SMALL_STATE(1624)] = 99657, + [SMALL_STATE(1625)] = 99689, + [SMALL_STATE(1626)] = 99713, + [SMALL_STATE(1627)] = 99737, + [SMALL_STATE(1628)] = 99783, + [SMALL_STATE(1629)] = 99829, + [SMALL_STATE(1630)] = 99875, + [SMALL_STATE(1631)] = 99899, + [SMALL_STATE(1632)] = 99945, + [SMALL_STATE(1633)] = 99991, + [SMALL_STATE(1634)] = 100037, + [SMALL_STATE(1635)] = 100067, + [SMALL_STATE(1636)] = 100113, + [SMALL_STATE(1637)] = 100137, + [SMALL_STATE(1638)] = 100183, + [SMALL_STATE(1639)] = 100211, + [SMALL_STATE(1640)] = 100254, + [SMALL_STATE(1641)] = 100294, + [SMALL_STATE(1642)] = 100334, + [SMALL_STATE(1643)] = 100374, + [SMALL_STATE(1644)] = 100414, + [SMALL_STATE(1645)] = 100440, + [SMALL_STATE(1646)] = 100479, + [SMALL_STATE(1647)] = 100516, + [SMALL_STATE(1648)] = 100553, + [SMALL_STATE(1649)] = 100580, + [SMALL_STATE(1650)] = 100599, + [SMALL_STATE(1651)] = 100640, + [SMALL_STATE(1652)] = 100665, + [SMALL_STATE(1653)] = 100688, + [SMALL_STATE(1654)] = 100715, + [SMALL_STATE(1655)] = 100736, + [SMALL_STATE(1656)] = 100777, + [SMALL_STATE(1657)] = 100818, + [SMALL_STATE(1658)] = 100859, + [SMALL_STATE(1659)] = 100886, + [SMALL_STATE(1660)] = 100927, + [SMALL_STATE(1661)] = 100968, + [SMALL_STATE(1662)] = 101009, + [SMALL_STATE(1663)] = 101050, + [SMALL_STATE(1664)] = 101069, + [SMALL_STATE(1665)] = 101088, + [SMALL_STATE(1666)] = 101126, + [SMALL_STATE(1667)] = 101156, + [SMALL_STATE(1668)] = 101186, + [SMALL_STATE(1669)] = 101224, + [SMALL_STATE(1670)] = 101254, + [SMALL_STATE(1671)] = 101280, + [SMALL_STATE(1672)] = 101300, + [SMALL_STATE(1673)] = 101330, + [SMALL_STATE(1674)] = 101356, + [SMALL_STATE(1675)] = 101376, + [SMALL_STATE(1676)] = 101406, + [SMALL_STATE(1677)] = 101444, + [SMALL_STATE(1678)] = 101482, + [SMALL_STATE(1679)] = 101520, + [SMALL_STATE(1680)] = 101550, + [SMALL_STATE(1681)] = 101572, + [SMALL_STATE(1682)] = 101602, + [SMALL_STATE(1683)] = 101632, + [SMALL_STATE(1684)] = 101670, + [SMALL_STATE(1685)] = 101708, + [SMALL_STATE(1686)] = 101740, + [SMALL_STATE(1687)] = 101770, + [SMALL_STATE(1688)] = 101808, + [SMALL_STATE(1689)] = 101846, + [SMALL_STATE(1690)] = 101876, + [SMALL_STATE(1691)] = 101914, + [SMALL_STATE(1692)] = 101944, + [SMALL_STATE(1693)] = 101974, + [SMALL_STATE(1694)] = 102012, + [SMALL_STATE(1695)] = 102038, + [SMALL_STATE(1696)] = 102076, + [SMALL_STATE(1697)] = 102106, + [SMALL_STATE(1698)] = 102136, + [SMALL_STATE(1699)] = 102166, + [SMALL_STATE(1700)] = 102204, + [SMALL_STATE(1701)] = 102242, + [SMALL_STATE(1702)] = 102280, + [SMALL_STATE(1703)] = 102310, + [SMALL_STATE(1704)] = 102340, + [SMALL_STATE(1705)] = 102364, + [SMALL_STATE(1706)] = 102402, + [SMALL_STATE(1707)] = 102432, + [SMALL_STATE(1708)] = 102470, + [SMALL_STATE(1709)] = 102500, + [SMALL_STATE(1710)] = 102538, + [SMALL_STATE(1711)] = 102558, + [SMALL_STATE(1712)] = 102582, + [SMALL_STATE(1713)] = 102620, + [SMALL_STATE(1714)] = 102658, + [SMALL_STATE(1715)] = 102696, + [SMALL_STATE(1716)] = 102734, + [SMALL_STATE(1717)] = 102772, + [SMALL_STATE(1718)] = 102810, + [SMALL_STATE(1719)] = 102848, + [SMALL_STATE(1720)] = 102865, + [SMALL_STATE(1721)] = 102894, + [SMALL_STATE(1722)] = 102919, + [SMALL_STATE(1723)] = 102936, + [SMALL_STATE(1724)] = 102953, + [SMALL_STATE(1725)] = 102978, + [SMALL_STATE(1726)] = 103003, + [SMALL_STATE(1727)] = 103026, + [SMALL_STATE(1728)] = 103051, + [SMALL_STATE(1729)] = 103072, + [SMALL_STATE(1730)] = 103089, + [SMALL_STATE(1731)] = 103108, + [SMALL_STATE(1732)] = 103133, + [SMALL_STATE(1733)] = 103158, + [SMALL_STATE(1734)] = 103183, + [SMALL_STATE(1735)] = 103212, + [SMALL_STATE(1736)] = 103229, + [SMALL_STATE(1737)] = 103252, + [SMALL_STATE(1738)] = 103273, + [SMALL_STATE(1739)] = 103290, + [SMALL_STATE(1740)] = 103315, + [SMALL_STATE(1741)] = 103334, + [SMALL_STATE(1742)] = 103352, + [SMALL_STATE(1743)] = 103374, + [SMALL_STATE(1744)] = 103392, + [SMALL_STATE(1745)] = 103408, + [SMALL_STATE(1746)] = 103432, + [SMALL_STATE(1747)] = 103454, + [SMALL_STATE(1748)] = 103474, + [SMALL_STATE(1749)] = 103490, + [SMALL_STATE(1750)] = 103510, + [SMALL_STATE(1751)] = 103528, + [SMALL_STATE(1752)] = 103552, + [SMALL_STATE(1753)] = 103576, + [SMALL_STATE(1754)] = 103592, + [SMALL_STATE(1755)] = 103610, + [SMALL_STATE(1756)] = 103634, + [SMALL_STATE(1757)] = 103658, + [SMALL_STATE(1758)] = 103682, + [SMALL_STATE(1759)] = 103698, + [SMALL_STATE(1760)] = 103722, + [SMALL_STATE(1761)] = 103746, + [SMALL_STATE(1762)] = 103768, + [SMALL_STATE(1763)] = 103792, + [SMALL_STATE(1764)] = 103816, + [SMALL_STATE(1765)] = 103836, + [SMALL_STATE(1766)] = 103852, + [SMALL_STATE(1767)] = 103870, + [SMALL_STATE(1768)] = 103890, + [SMALL_STATE(1769)] = 103912, + [SMALL_STATE(1770)] = 103928, + [SMALL_STATE(1771)] = 103952, + [SMALL_STATE(1772)] = 103974, + [SMALL_STATE(1773)] = 103994, + [SMALL_STATE(1774)] = 104018, + [SMALL_STATE(1775)] = 104038, + [SMALL_STATE(1776)] = 104068, + [SMALL_STATE(1777)] = 104092, + [SMALL_STATE(1778)] = 104121, + [SMALL_STATE(1779)] = 104148, + [SMALL_STATE(1780)] = 104169, + [SMALL_STATE(1781)] = 104198, + [SMALL_STATE(1782)] = 104225, + [SMALL_STATE(1783)] = 104246, + [SMALL_STATE(1784)] = 104269, + [SMALL_STATE(1785)] = 104290, + [SMALL_STATE(1786)] = 104313, + [SMALL_STATE(1787)] = 104342, + [SMALL_STATE(1788)] = 104363, + [SMALL_STATE(1789)] = 104380, + [SMALL_STATE(1790)] = 104403, + [SMALL_STATE(1791)] = 104426, + [SMALL_STATE(1792)] = 104445, + [SMALL_STATE(1793)] = 104474, + [SMALL_STATE(1794)] = 104501, + [SMALL_STATE(1795)] = 104522, + [SMALL_STATE(1796)] = 104543, + [SMALL_STATE(1797)] = 104560, + [SMALL_STATE(1798)] = 104579, + [SMALL_STATE(1799)] = 104600, + [SMALL_STATE(1800)] = 104627, + [SMALL_STATE(1801)] = 104656, + [SMALL_STATE(1802)] = 104683, + [SMALL_STATE(1803)] = 104704, + [SMALL_STATE(1804)] = 104733, + [SMALL_STATE(1805)] = 104756, + [SMALL_STATE(1806)] = 104783, + [SMALL_STATE(1807)] = 104804, + [SMALL_STATE(1808)] = 104821, + [SMALL_STATE(1809)] = 104844, + [SMALL_STATE(1810)] = 104873, + [SMALL_STATE(1811)] = 104896, + [SMALL_STATE(1812)] = 104925, + [SMALL_STATE(1813)] = 104954, + [SMALL_STATE(1814)] = 104983, + [SMALL_STATE(1815)] = 105004, + [SMALL_STATE(1816)] = 105025, + [SMALL_STATE(1817)] = 105052, + [SMALL_STATE(1818)] = 105077, + [SMALL_STATE(1819)] = 105092, + [SMALL_STATE(1820)] = 105117, + [SMALL_STATE(1821)] = 105138, + [SMALL_STATE(1822)] = 105159, + [SMALL_STATE(1823)] = 105180, + [SMALL_STATE(1824)] = 105207, + [SMALL_STATE(1825)] = 105229, + [SMALL_STATE(1826)] = 105251, + [SMALL_STATE(1827)] = 105277, + [SMALL_STATE(1828)] = 105303, + [SMALL_STATE(1829)] = 105321, + [SMALL_STATE(1830)] = 105347, + [SMALL_STATE(1831)] = 105365, + [SMALL_STATE(1832)] = 105391, + [SMALL_STATE(1833)] = 105407, + [SMALL_STATE(1834)] = 105433, + [SMALL_STATE(1835)] = 105451, + [SMALL_STATE(1836)] = 105469, + [SMALL_STATE(1837)] = 105495, + [SMALL_STATE(1838)] = 105513, + [SMALL_STATE(1839)] = 105535, + [SMALL_STATE(1840)] = 105551, + [SMALL_STATE(1841)] = 105571, + [SMALL_STATE(1842)] = 105595, + [SMALL_STATE(1843)] = 105621, + [SMALL_STATE(1844)] = 105641, + [SMALL_STATE(1845)] = 105659, + [SMALL_STATE(1846)] = 105683, + [SMALL_STATE(1847)] = 105709, + [SMALL_STATE(1848)] = 105731, + [SMALL_STATE(1849)] = 105753, + [SMALL_STATE(1850)] = 105779, + [SMALL_STATE(1851)] = 105805, + [SMALL_STATE(1852)] = 105827, + [SMALL_STATE(1853)] = 105849, + [SMALL_STATE(1854)] = 105867, + [SMALL_STATE(1855)] = 105893, + [SMALL_STATE(1856)] = 105919, + [SMALL_STATE(1857)] = 105945, + [SMALL_STATE(1858)] = 105971, + [SMALL_STATE(1859)] = 105993, + [SMALL_STATE(1860)] = 106015, + [SMALL_STATE(1861)] = 106041, + [SMALL_STATE(1862)] = 106059, + [SMALL_STATE(1863)] = 106085, + [SMALL_STATE(1864)] = 106103, + [SMALL_STATE(1865)] = 106121, + [SMALL_STATE(1866)] = 106145, + [SMALL_STATE(1867)] = 106169, + [SMALL_STATE(1868)] = 106191, + [SMALL_STATE(1869)] = 106217, + [SMALL_STATE(1870)] = 106243, + [SMALL_STATE(1871)] = 106261, + [SMALL_STATE(1872)] = 106281, + [SMALL_STATE(1873)] = 106303, + [SMALL_STATE(1874)] = 106321, + [SMALL_STATE(1875)] = 106338, + [SMALL_STATE(1876)] = 106355, + [SMALL_STATE(1877)] = 106368, + [SMALL_STATE(1878)] = 106389, + [SMALL_STATE(1879)] = 106406, + [SMALL_STATE(1880)] = 106419, + [SMALL_STATE(1881)] = 106440, + [SMALL_STATE(1882)] = 106453, + [SMALL_STATE(1883)] = 106474, + [SMALL_STATE(1884)] = 106493, + [SMALL_STATE(1885)] = 106510, + [SMALL_STATE(1886)] = 106523, + [SMALL_STATE(1887)] = 106546, + [SMALL_STATE(1888)] = 106563, + [SMALL_STATE(1889)] = 106580, + [SMALL_STATE(1890)] = 106597, + [SMALL_STATE(1891)] = 106614, + [SMALL_STATE(1892)] = 106631, + [SMALL_STATE(1893)] = 106648, + [SMALL_STATE(1894)] = 106665, + [SMALL_STATE(1895)] = 106682, + [SMALL_STATE(1896)] = 106705, + [SMALL_STATE(1897)] = 106726, + [SMALL_STATE(1898)] = 106743, + [SMALL_STATE(1899)] = 106764, + [SMALL_STATE(1900)] = 106785, + [SMALL_STATE(1901)] = 106806, + [SMALL_STATE(1902)] = 106819, + [SMALL_STATE(1903)] = 106840, + [SMALL_STATE(1904)] = 106861, + [SMALL_STATE(1905)] = 106878, + [SMALL_STATE(1906)] = 106893, + [SMALL_STATE(1907)] = 106910, + [SMALL_STATE(1908)] = 106927, + [SMALL_STATE(1909)] = 106944, + [SMALL_STATE(1910)] = 106957, + [SMALL_STATE(1911)] = 106972, + [SMALL_STATE(1912)] = 106989, + [SMALL_STATE(1913)] = 107010, + [SMALL_STATE(1914)] = 107031, + [SMALL_STATE(1915)] = 107054, + [SMALL_STATE(1916)] = 107071, + [SMALL_STATE(1917)] = 107092, + [SMALL_STATE(1918)] = 107113, + [SMALL_STATE(1919)] = 107130, + [SMALL_STATE(1920)] = 107145, + [SMALL_STATE(1921)] = 107166, + [SMALL_STATE(1922)] = 107179, + [SMALL_STATE(1923)] = 107192, + [SMALL_STATE(1924)] = 107213, + [SMALL_STATE(1925)] = 107234, + [SMALL_STATE(1926)] = 107251, + [SMALL_STATE(1927)] = 107264, + [SMALL_STATE(1928)] = 107285, + [SMALL_STATE(1929)] = 107306, + [SMALL_STATE(1930)] = 107323, + [SMALL_STATE(1931)] = 107336, + [SMALL_STATE(1932)] = 107359, + [SMALL_STATE(1933)] = 107380, + [SMALL_STATE(1934)] = 107393, + [SMALL_STATE(1935)] = 107408, + [SMALL_STATE(1936)] = 107429, + [SMALL_STATE(1937)] = 107452, + [SMALL_STATE(1938)] = 107473, + [SMALL_STATE(1939)] = 107494, + [SMALL_STATE(1940)] = 107507, + [SMALL_STATE(1941)] = 107528, + [SMALL_STATE(1942)] = 107543, + [SMALL_STATE(1943)] = 107560, + [SMALL_STATE(1944)] = 107577, + [SMALL_STATE(1945)] = 107594, + [SMALL_STATE(1946)] = 107617, + [SMALL_STATE(1947)] = 107638, + [SMALL_STATE(1948)] = 107651, + [SMALL_STATE(1949)] = 107668, + [SMALL_STATE(1950)] = 107681, + [SMALL_STATE(1951)] = 107702, + [SMALL_STATE(1952)] = 107719, + [SMALL_STATE(1953)] = 107740, + [SMALL_STATE(1954)] = 107757, + [SMALL_STATE(1955)] = 107778, + [SMALL_STATE(1956)] = 107795, + [SMALL_STATE(1957)] = 107808, + [SMALL_STATE(1958)] = 107825, + [SMALL_STATE(1959)] = 107846, + [SMALL_STATE(1960)] = 107863, + [SMALL_STATE(1961)] = 107880, + [SMALL_STATE(1962)] = 107893, + [SMALL_STATE(1963)] = 107906, + [SMALL_STATE(1964)] = 107927, + [SMALL_STATE(1965)] = 107944, + [SMALL_STATE(1966)] = 107957, + [SMALL_STATE(1967)] = 107970, + [SMALL_STATE(1968)] = 107989, + [SMALL_STATE(1969)] = 108010, + [SMALL_STATE(1970)] = 108033, + [SMALL_STATE(1971)] = 108050, + [SMALL_STATE(1972)] = 108063, + [SMALL_STATE(1973)] = 108078, + [SMALL_STATE(1974)] = 108091, + [SMALL_STATE(1975)] = 108104, + [SMALL_STATE(1976)] = 108125, + [SMALL_STATE(1977)] = 108140, + [SMALL_STATE(1978)] = 108153, + [SMALL_STATE(1979)] = 108168, + [SMALL_STATE(1980)] = 108185, + [SMALL_STATE(1981)] = 108202, + [SMALL_STATE(1982)] = 108215, + [SMALL_STATE(1983)] = 108236, + [SMALL_STATE(1984)] = 108248, + [SMALL_STATE(1985)] = 108264, + [SMALL_STATE(1986)] = 108276, + [SMALL_STATE(1987)] = 108288, + [SMALL_STATE(1988)] = 108306, + [SMALL_STATE(1989)] = 108324, + [SMALL_STATE(1990)] = 108344, + [SMALL_STATE(1991)] = 108364, + [SMALL_STATE(1992)] = 108382, + [SMALL_STATE(1993)] = 108402, + [SMALL_STATE(1994)] = 108414, + [SMALL_STATE(1995)] = 108426, + [SMALL_STATE(1996)] = 108438, + [SMALL_STATE(1997)] = 108450, + [SMALL_STATE(1998)] = 108462, + [SMALL_STATE(1999)] = 108474, + [SMALL_STATE(2000)] = 108494, + [SMALL_STATE(2001)] = 108508, + [SMALL_STATE(2002)] = 108520, + [SMALL_STATE(2003)] = 108540, + [SMALL_STATE(2004)] = 108560, + [SMALL_STATE(2005)] = 108576, + [SMALL_STATE(2006)] = 108588, + [SMALL_STATE(2007)] = 108608, + [SMALL_STATE(2008)] = 108620, + [SMALL_STATE(2009)] = 108640, + [SMALL_STATE(2010)] = 108652, + [SMALL_STATE(2011)] = 108664, + [SMALL_STATE(2012)] = 108676, + [SMALL_STATE(2013)] = 108688, + [SMALL_STATE(2014)] = 108708, + [SMALL_STATE(2015)] = 108720, + [SMALL_STATE(2016)] = 108732, + [SMALL_STATE(2017)] = 108752, + [SMALL_STATE(2018)] = 108764, + [SMALL_STATE(2019)] = 108776, + [SMALL_STATE(2020)] = 108788, + [SMALL_STATE(2021)] = 108808, + [SMALL_STATE(2022)] = 108820, + [SMALL_STATE(2023)] = 108840, + [SMALL_STATE(2024)] = 108860, + [SMALL_STATE(2025)] = 108872, + [SMALL_STATE(2026)] = 108888, + [SMALL_STATE(2027)] = 108900, + [SMALL_STATE(2028)] = 108920, + [SMALL_STATE(2029)] = 108936, + [SMALL_STATE(2030)] = 108956, + [SMALL_STATE(2031)] = 108968, + [SMALL_STATE(2032)] = 108986, + [SMALL_STATE(2033)] = 109002, + [SMALL_STATE(2034)] = 109014, + [SMALL_STATE(2035)] = 109034, + [SMALL_STATE(2036)] = 109054, + [SMALL_STATE(2037)] = 109074, + [SMALL_STATE(2038)] = 109094, + [SMALL_STATE(2039)] = 109112, + [SMALL_STATE(2040)] = 109132, + [SMALL_STATE(2041)] = 109150, + [SMALL_STATE(2042)] = 109170, + [SMALL_STATE(2043)] = 109188, + [SMALL_STATE(2044)] = 109200, + [SMALL_STATE(2045)] = 109212, + [SMALL_STATE(2046)] = 109230, + [SMALL_STATE(2047)] = 109242, + [SMALL_STATE(2048)] = 109256, + [SMALL_STATE(2049)] = 109270, + [SMALL_STATE(2050)] = 109286, + [SMALL_STATE(2051)] = 109302, + [SMALL_STATE(2052)] = 109318, + [SMALL_STATE(2053)] = 109330, + [SMALL_STATE(2054)] = 109342, + [SMALL_STATE(2055)] = 109356, + [SMALL_STATE(2056)] = 109368, + [SMALL_STATE(2057)] = 109384, + [SMALL_STATE(2058)] = 109404, + [SMALL_STATE(2059)] = 109422, + [SMALL_STATE(2060)] = 109434, + [SMALL_STATE(2061)] = 109454, + [SMALL_STATE(2062)] = 109472, + [SMALL_STATE(2063)] = 109484, + [SMALL_STATE(2064)] = 109500, + [SMALL_STATE(2065)] = 109512, + [SMALL_STATE(2066)] = 109524, + [SMALL_STATE(2067)] = 109536, + [SMALL_STATE(2068)] = 109552, + [SMALL_STATE(2069)] = 109564, + [SMALL_STATE(2070)] = 109584, + [SMALL_STATE(2071)] = 109600, + [SMALL_STATE(2072)] = 109620, + [SMALL_STATE(2073)] = 109632, + [SMALL_STATE(2074)] = 109644, + [SMALL_STATE(2075)] = 109656, + [SMALL_STATE(2076)] = 109668, + [SMALL_STATE(2077)] = 109684, + [SMALL_STATE(2078)] = 109696, + [SMALL_STATE(2079)] = 109712, + [SMALL_STATE(2080)] = 109732, + [SMALL_STATE(2081)] = 109744, + [SMALL_STATE(2082)] = 109756, + [SMALL_STATE(2083)] = 109768, + [SMALL_STATE(2084)] = 109780, + [SMALL_STATE(2085)] = 109798, + [SMALL_STATE(2086)] = 109810, + [SMALL_STATE(2087)] = 109830, + [SMALL_STATE(2088)] = 109846, + [SMALL_STATE(2089)] = 109858, + [SMALL_STATE(2090)] = 109870, + [SMALL_STATE(2091)] = 109884, + [SMALL_STATE(2092)] = 109902, + [SMALL_STATE(2093)] = 109922, + [SMALL_STATE(2094)] = 109934, + [SMALL_STATE(2095)] = 109946, + [SMALL_STATE(2096)] = 109966, + [SMALL_STATE(2097)] = 109986, + [SMALL_STATE(2098)] = 109998, + [SMALL_STATE(2099)] = 110018, + [SMALL_STATE(2100)] = 110030, + [SMALL_STATE(2101)] = 110048, + [SMALL_STATE(2102)] = 110062, + [SMALL_STATE(2103)] = 110074, + [SMALL_STATE(2104)] = 110085, + [SMALL_STATE(2105)] = 110102, + [SMALL_STATE(2106)] = 110119, + [SMALL_STATE(2107)] = 110134, + [SMALL_STATE(2108)] = 110151, + [SMALL_STATE(2109)] = 110166, + [SMALL_STATE(2110)] = 110181, + [SMALL_STATE(2111)] = 110198, + [SMALL_STATE(2112)] = 110213, + [SMALL_STATE(2113)] = 110228, + [SMALL_STATE(2114)] = 110243, + [SMALL_STATE(2115)] = 110260, + [SMALL_STATE(2116)] = 110275, + [SMALL_STATE(2117)] = 110288, + [SMALL_STATE(2118)] = 110303, + [SMALL_STATE(2119)] = 110320, + [SMALL_STATE(2120)] = 110337, + [SMALL_STATE(2121)] = 110348, + [SMALL_STATE(2122)] = 110359, + [SMALL_STATE(2123)] = 110370, + [SMALL_STATE(2124)] = 110381, + [SMALL_STATE(2125)] = 110398, + [SMALL_STATE(2126)] = 110415, + [SMALL_STATE(2127)] = 110426, + [SMALL_STATE(2128)] = 110437, + [SMALL_STATE(2129)] = 110448, + [SMALL_STATE(2130)] = 110459, + [SMALL_STATE(2131)] = 110470, + [SMALL_STATE(2132)] = 110481, + [SMALL_STATE(2133)] = 110496, + [SMALL_STATE(2134)] = 110507, + [SMALL_STATE(2135)] = 110518, + [SMALL_STATE(2136)] = 110529, + [SMALL_STATE(2137)] = 110540, + [SMALL_STATE(2138)] = 110551, + [SMALL_STATE(2139)] = 110562, + [SMALL_STATE(2140)] = 110573, + [SMALL_STATE(2141)] = 110584, + [SMALL_STATE(2142)] = 110595, + [SMALL_STATE(2143)] = 110606, + [SMALL_STATE(2144)] = 110617, + [SMALL_STATE(2145)] = 110628, + [SMALL_STATE(2146)] = 110639, + [SMALL_STATE(2147)] = 110650, + [SMALL_STATE(2148)] = 110665, + [SMALL_STATE(2149)] = 110682, + [SMALL_STATE(2150)] = 110699, + [SMALL_STATE(2151)] = 110710, + [SMALL_STATE(2152)] = 110721, + [SMALL_STATE(2153)] = 110738, + [SMALL_STATE(2154)] = 110755, + [SMALL_STATE(2155)] = 110770, + [SMALL_STATE(2156)] = 110781, + [SMALL_STATE(2157)] = 110792, + [SMALL_STATE(2158)] = 110803, + [SMALL_STATE(2159)] = 110814, + [SMALL_STATE(2160)] = 110831, + [SMALL_STATE(2161)] = 110848, + [SMALL_STATE(2162)] = 110863, + [SMALL_STATE(2163)] = 110878, + [SMALL_STATE(2164)] = 110895, + [SMALL_STATE(2165)] = 110912, + [SMALL_STATE(2166)] = 110923, + [SMALL_STATE(2167)] = 110934, + [SMALL_STATE(2168)] = 110945, + [SMALL_STATE(2169)] = 110956, + [SMALL_STATE(2170)] = 110967, + [SMALL_STATE(2171)] = 110984, + [SMALL_STATE(2172)] = 110995, + [SMALL_STATE(2173)] = 111012, + [SMALL_STATE(2174)] = 111027, + [SMALL_STATE(2175)] = 111042, + [SMALL_STATE(2176)] = 111053, + [SMALL_STATE(2177)] = 111064, + [SMALL_STATE(2178)] = 111075, + [SMALL_STATE(2179)] = 111086, + [SMALL_STATE(2180)] = 111097, + [SMALL_STATE(2181)] = 111108, + [SMALL_STATE(2182)] = 111119, + [SMALL_STATE(2183)] = 111130, + [SMALL_STATE(2184)] = 111141, + [SMALL_STATE(2185)] = 111152, + [SMALL_STATE(2186)] = 111163, + [SMALL_STATE(2187)] = 111174, + [SMALL_STATE(2188)] = 111185, + [SMALL_STATE(2189)] = 111202, + [SMALL_STATE(2190)] = 111213, + [SMALL_STATE(2191)] = 111230, + [SMALL_STATE(2192)] = 111241, + [SMALL_STATE(2193)] = 111252, + [SMALL_STATE(2194)] = 111263, + [SMALL_STATE(2195)] = 111280, + [SMALL_STATE(2196)] = 111291, + [SMALL_STATE(2197)] = 111302, + [SMALL_STATE(2198)] = 111313, + [SMALL_STATE(2199)] = 111324, + [SMALL_STATE(2200)] = 111335, + [SMALL_STATE(2201)] = 111346, + [SMALL_STATE(2202)] = 111357, + [SMALL_STATE(2203)] = 111368, + [SMALL_STATE(2204)] = 111379, + [SMALL_STATE(2205)] = 111390, + [SMALL_STATE(2206)] = 111401, + [SMALL_STATE(2207)] = 111412, + [SMALL_STATE(2208)] = 111423, + [SMALL_STATE(2209)] = 111434, + [SMALL_STATE(2210)] = 111445, + [SMALL_STATE(2211)] = 111456, + [SMALL_STATE(2212)] = 111467, + [SMALL_STATE(2213)] = 111478, + [SMALL_STATE(2214)] = 111489, + [SMALL_STATE(2215)] = 111504, + [SMALL_STATE(2216)] = 111521, + [SMALL_STATE(2217)] = 111536, + [SMALL_STATE(2218)] = 111551, + [SMALL_STATE(2219)] = 111568, + [SMALL_STATE(2220)] = 111585, + [SMALL_STATE(2221)] = 111600, + [SMALL_STATE(2222)] = 111613, + [SMALL_STATE(2223)] = 111628, + [SMALL_STATE(2224)] = 111645, + [SMALL_STATE(2225)] = 111662, + [SMALL_STATE(2226)] = 111679, + [SMALL_STATE(2227)] = 111696, + [SMALL_STATE(2228)] = 111713, + [SMALL_STATE(2229)] = 111730, + [SMALL_STATE(2230)] = 111747, + [SMALL_STATE(2231)] = 111760, + [SMALL_STATE(2232)] = 111771, + [SMALL_STATE(2233)] = 111785, + [SMALL_STATE(2234)] = 111799, + [SMALL_STATE(2235)] = 111813, + [SMALL_STATE(2236)] = 111827, + [SMALL_STATE(2237)] = 111841, + [SMALL_STATE(2238)] = 111855, + [SMALL_STATE(2239)] = 111869, + [SMALL_STATE(2240)] = 111883, + [SMALL_STATE(2241)] = 111897, + [SMALL_STATE(2242)] = 111911, + [SMALL_STATE(2243)] = 111925, + [SMALL_STATE(2244)] = 111937, + [SMALL_STATE(2245)] = 111949, + [SMALL_STATE(2246)] = 111963, + [SMALL_STATE(2247)] = 111975, + [SMALL_STATE(2248)] = 111985, + [SMALL_STATE(2249)] = 111999, + [SMALL_STATE(2250)] = 112013, + [SMALL_STATE(2251)] = 112027, + [SMALL_STATE(2252)] = 112041, + [SMALL_STATE(2253)] = 112055, + [SMALL_STATE(2254)] = 112069, + [SMALL_STATE(2255)] = 112079, + [SMALL_STATE(2256)] = 112093, + [SMALL_STATE(2257)] = 112107, + [SMALL_STATE(2258)] = 112121, + [SMALL_STATE(2259)] = 112135, + [SMALL_STATE(2260)] = 112149, + [SMALL_STATE(2261)] = 112163, + [SMALL_STATE(2262)] = 112177, + [SMALL_STATE(2263)] = 112191, + [SMALL_STATE(2264)] = 112205, + [SMALL_STATE(2265)] = 112219, + [SMALL_STATE(2266)] = 112233, + [SMALL_STATE(2267)] = 112243, + [SMALL_STATE(2268)] = 112255, + [SMALL_STATE(2269)] = 112269, + [SMALL_STATE(2270)] = 112283, + [SMALL_STATE(2271)] = 112297, + [SMALL_STATE(2272)] = 112311, + [SMALL_STATE(2273)] = 112323, + [SMALL_STATE(2274)] = 112337, + [SMALL_STATE(2275)] = 112351, + [SMALL_STATE(2276)] = 112361, + [SMALL_STATE(2277)] = 112375, + [SMALL_STATE(2278)] = 112387, + [SMALL_STATE(2279)] = 112399, + [SMALL_STATE(2280)] = 112413, + [SMALL_STATE(2281)] = 112427, + [SMALL_STATE(2282)] = 112437, + [SMALL_STATE(2283)] = 112451, + [SMALL_STATE(2284)] = 112465, + [SMALL_STATE(2285)] = 112479, + [SMALL_STATE(2286)] = 112493, + [SMALL_STATE(2287)] = 112507, + [SMALL_STATE(2288)] = 112521, + [SMALL_STATE(2289)] = 112535, + [SMALL_STATE(2290)] = 112549, + [SMALL_STATE(2291)] = 112563, + [SMALL_STATE(2292)] = 112577, + [SMALL_STATE(2293)] = 112591, + [SMALL_STATE(2294)] = 112605, + [SMALL_STATE(2295)] = 112619, + [SMALL_STATE(2296)] = 112633, + [SMALL_STATE(2297)] = 112647, + [SMALL_STATE(2298)] = 112661, + [SMALL_STATE(2299)] = 112675, + [SMALL_STATE(2300)] = 112687, + [SMALL_STATE(2301)] = 112701, + [SMALL_STATE(2302)] = 112715, + [SMALL_STATE(2303)] = 112729, + [SMALL_STATE(2304)] = 112743, + [SMALL_STATE(2305)] = 112757, + [SMALL_STATE(2306)] = 112767, + [SMALL_STATE(2307)] = 112781, + [SMALL_STATE(2308)] = 112793, + [SMALL_STATE(2309)] = 112807, + [SMALL_STATE(2310)] = 112821, + [SMALL_STATE(2311)] = 112835, + [SMALL_STATE(2312)] = 112847, + [SMALL_STATE(2313)] = 112857, + [SMALL_STATE(2314)] = 112871, + [SMALL_STATE(2315)] = 112885, + [SMALL_STATE(2316)] = 112899, + [SMALL_STATE(2317)] = 112913, + [SMALL_STATE(2318)] = 112927, + [SMALL_STATE(2319)] = 112941, + [SMALL_STATE(2320)] = 112955, + [SMALL_STATE(2321)] = 112969, + [SMALL_STATE(2322)] = 112981, + [SMALL_STATE(2323)] = 112995, + [SMALL_STATE(2324)] = 113007, + [SMALL_STATE(2325)] = 113021, + [SMALL_STATE(2326)] = 113035, + [SMALL_STATE(2327)] = 113049, + [SMALL_STATE(2328)] = 113063, + [SMALL_STATE(2329)] = 113077, + [SMALL_STATE(2330)] = 113091, + [SMALL_STATE(2331)] = 113105, + [SMALL_STATE(2332)] = 113119, + [SMALL_STATE(2333)] = 113133, + [SMALL_STATE(2334)] = 113147, + [SMALL_STATE(2335)] = 113161, + [SMALL_STATE(2336)] = 113175, + [SMALL_STATE(2337)] = 113189, + [SMALL_STATE(2338)] = 113203, + [SMALL_STATE(2339)] = 113217, + [SMALL_STATE(2340)] = 113229, + [SMALL_STATE(2341)] = 113243, + [SMALL_STATE(2342)] = 113257, + [SMALL_STATE(2343)] = 113271, + [SMALL_STATE(2344)] = 113285, + [SMALL_STATE(2345)] = 113299, + [SMALL_STATE(2346)] = 113313, + [SMALL_STATE(2347)] = 113327, + [SMALL_STATE(2348)] = 113341, + [SMALL_STATE(2349)] = 113355, + [SMALL_STATE(2350)] = 113369, + [SMALL_STATE(2351)] = 113381, + [SMALL_STATE(2352)] = 113395, + [SMALL_STATE(2353)] = 113409, + [SMALL_STATE(2354)] = 113423, + [SMALL_STATE(2355)] = 113437, + [SMALL_STATE(2356)] = 113447, + [SMALL_STATE(2357)] = 113461, + [SMALL_STATE(2358)] = 113473, + [SMALL_STATE(2359)] = 113487, + [SMALL_STATE(2360)] = 113501, + [SMALL_STATE(2361)] = 113515, + [SMALL_STATE(2362)] = 113529, + [SMALL_STATE(2363)] = 113543, + [SMALL_STATE(2364)] = 113557, + [SMALL_STATE(2365)] = 113571, + [SMALL_STATE(2366)] = 113585, + [SMALL_STATE(2367)] = 113599, + [SMALL_STATE(2368)] = 113613, + [SMALL_STATE(2369)] = 113627, + [SMALL_STATE(2370)] = 113641, + [SMALL_STATE(2371)] = 113655, + [SMALL_STATE(2372)] = 113669, + [SMALL_STATE(2373)] = 113683, + [SMALL_STATE(2374)] = 113697, + [SMALL_STATE(2375)] = 113711, + [SMALL_STATE(2376)] = 113725, + [SMALL_STATE(2377)] = 113739, + [SMALL_STATE(2378)] = 113749, + [SMALL_STATE(2379)] = 113763, + [SMALL_STATE(2380)] = 113777, + [SMALL_STATE(2381)] = 113791, + [SMALL_STATE(2382)] = 113805, + [SMALL_STATE(2383)] = 113819, + [SMALL_STATE(2384)] = 113833, + [SMALL_STATE(2385)] = 113847, + [SMALL_STATE(2386)] = 113861, + [SMALL_STATE(2387)] = 113875, + [SMALL_STATE(2388)] = 113889, + [SMALL_STATE(2389)] = 113903, + [SMALL_STATE(2390)] = 113917, + [SMALL_STATE(2391)] = 113931, + [SMALL_STATE(2392)] = 113945, + [SMALL_STATE(2393)] = 113959, + [SMALL_STATE(2394)] = 113973, + [SMALL_STATE(2395)] = 113985, + [SMALL_STATE(2396)] = 113995, + [SMALL_STATE(2397)] = 114009, + [SMALL_STATE(2398)] = 114023, + [SMALL_STATE(2399)] = 114033, + [SMALL_STATE(2400)] = 114047, + [SMALL_STATE(2401)] = 114061, + [SMALL_STATE(2402)] = 114075, + [SMALL_STATE(2403)] = 114089, + [SMALL_STATE(2404)] = 114103, + [SMALL_STATE(2405)] = 114117, + [SMALL_STATE(2406)] = 114131, + [SMALL_STATE(2407)] = 114145, + [SMALL_STATE(2408)] = 114159, + [SMALL_STATE(2409)] = 114173, + [SMALL_STATE(2410)] = 114187, + [SMALL_STATE(2411)] = 114201, + [SMALL_STATE(2412)] = 114215, + [SMALL_STATE(2413)] = 114229, + [SMALL_STATE(2414)] = 114243, + [SMALL_STATE(2415)] = 114257, + [SMALL_STATE(2416)] = 114271, + [SMALL_STATE(2417)] = 114285, + [SMALL_STATE(2418)] = 114299, + [SMALL_STATE(2419)] = 114313, + [SMALL_STATE(2420)] = 114323, + [SMALL_STATE(2421)] = 114337, + [SMALL_STATE(2422)] = 114351, + [SMALL_STATE(2423)] = 114365, + [SMALL_STATE(2424)] = 114379, + [SMALL_STATE(2425)] = 114393, + [SMALL_STATE(2426)] = 114407, + [SMALL_STATE(2427)] = 114421, + [SMALL_STATE(2428)] = 114435, + [SMALL_STATE(2429)] = 114449, + [SMALL_STATE(2430)] = 114463, + [SMALL_STATE(2431)] = 114477, + [SMALL_STATE(2432)] = 114491, + [SMALL_STATE(2433)] = 114505, + [SMALL_STATE(2434)] = 114515, + [SMALL_STATE(2435)] = 114529, + [SMALL_STATE(2436)] = 114541, + [SMALL_STATE(2437)] = 114555, + [SMALL_STATE(2438)] = 114569, + [SMALL_STATE(2439)] = 114583, + [SMALL_STATE(2440)] = 114597, + [SMALL_STATE(2441)] = 114607, + [SMALL_STATE(2442)] = 114621, + [SMALL_STATE(2443)] = 114635, + [SMALL_STATE(2444)] = 114649, + [SMALL_STATE(2445)] = 114663, + [SMALL_STATE(2446)] = 114677, + [SMALL_STATE(2447)] = 114691, + [SMALL_STATE(2448)] = 114705, + [SMALL_STATE(2449)] = 114719, + [SMALL_STATE(2450)] = 114733, + [SMALL_STATE(2451)] = 114747, + [SMALL_STATE(2452)] = 114761, + [SMALL_STATE(2453)] = 114775, + [SMALL_STATE(2454)] = 114789, + [SMALL_STATE(2455)] = 114803, + [SMALL_STATE(2456)] = 114815, + [SMALL_STATE(2457)] = 114829, + [SMALL_STATE(2458)] = 114843, + [SMALL_STATE(2459)] = 114855, + [SMALL_STATE(2460)] = 114869, + [SMALL_STATE(2461)] = 114883, + [SMALL_STATE(2462)] = 114897, + [SMALL_STATE(2463)] = 114911, + [SMALL_STATE(2464)] = 114925, + [SMALL_STATE(2465)] = 114939, + [SMALL_STATE(2466)] = 114953, + [SMALL_STATE(2467)] = 114967, + [SMALL_STATE(2468)] = 114981, + [SMALL_STATE(2469)] = 114995, + [SMALL_STATE(2470)] = 115009, + [SMALL_STATE(2471)] = 115023, + [SMALL_STATE(2472)] = 115037, + [SMALL_STATE(2473)] = 115051, + [SMALL_STATE(2474)] = 115065, + [SMALL_STATE(2475)] = 115079, + [SMALL_STATE(2476)] = 115093, + [SMALL_STATE(2477)] = 115107, + [SMALL_STATE(2478)] = 115121, + [SMALL_STATE(2479)] = 115135, + [SMALL_STATE(2480)] = 115149, + [SMALL_STATE(2481)] = 115163, + [SMALL_STATE(2482)] = 115172, + [SMALL_STATE(2483)] = 115181, + [SMALL_STATE(2484)] = 115190, + [SMALL_STATE(2485)] = 115199, + [SMALL_STATE(2486)] = 115208, + [SMALL_STATE(2487)] = 115219, + [SMALL_STATE(2488)] = 115228, + [SMALL_STATE(2489)] = 115237, + [SMALL_STATE(2490)] = 115248, + [SMALL_STATE(2491)] = 115257, + [SMALL_STATE(2492)] = 115266, + [SMALL_STATE(2493)] = 115275, + [SMALL_STATE(2494)] = 115284, + [SMALL_STATE(2495)] = 115295, + [SMALL_STATE(2496)] = 115304, + [SMALL_STATE(2497)] = 115315, + [SMALL_STATE(2498)] = 115326, + [SMALL_STATE(2499)] = 115335, + [SMALL_STATE(2500)] = 115344, + [SMALL_STATE(2501)] = 115353, + [SMALL_STATE(2502)] = 115362, + [SMALL_STATE(2503)] = 115373, + [SMALL_STATE(2504)] = 115382, + [SMALL_STATE(2505)] = 115391, + [SMALL_STATE(2506)] = 115400, + [SMALL_STATE(2507)] = 115409, + [SMALL_STATE(2508)] = 115418, + [SMALL_STATE(2509)] = 115429, + [SMALL_STATE(2510)] = 115438, + [SMALL_STATE(2511)] = 115449, + [SMALL_STATE(2512)] = 115458, + [SMALL_STATE(2513)] = 115467, + [SMALL_STATE(2514)] = 115478, + [SMALL_STATE(2515)] = 115487, + [SMALL_STATE(2516)] = 115498, + [SMALL_STATE(2517)] = 115507, + [SMALL_STATE(2518)] = 115518, + [SMALL_STATE(2519)] = 115527, + [SMALL_STATE(2520)] = 115536, + [SMALL_STATE(2521)] = 115545, + [SMALL_STATE(2522)] = 115556, + [SMALL_STATE(2523)] = 115567, + [SMALL_STATE(2524)] = 115576, + [SMALL_STATE(2525)] = 115585, + [SMALL_STATE(2526)] = 115594, + [SMALL_STATE(2527)] = 115603, + [SMALL_STATE(2528)] = 115612, + [SMALL_STATE(2529)] = 115621, + [SMALL_STATE(2530)] = 115630, + [SMALL_STATE(2531)] = 115639, + [SMALL_STATE(2532)] = 115648, + [SMALL_STATE(2533)] = 115657, + [SMALL_STATE(2534)] = 115666, + [SMALL_STATE(2535)] = 115675, + [SMALL_STATE(2536)] = 115684, + [SMALL_STATE(2537)] = 115693, + [SMALL_STATE(2538)] = 115702, + [SMALL_STATE(2539)] = 115711, + [SMALL_STATE(2540)] = 115720, + [SMALL_STATE(2541)] = 115731, + [SMALL_STATE(2542)] = 115740, + [SMALL_STATE(2543)] = 115749, + [SMALL_STATE(2544)] = 115760, + [SMALL_STATE(2545)] = 115769, + [SMALL_STATE(2546)] = 115778, + [SMALL_STATE(2547)] = 115787, + [SMALL_STATE(2548)] = 115796, + [SMALL_STATE(2549)] = 115807, + [SMALL_STATE(2550)] = 115816, + [SMALL_STATE(2551)] = 115827, + [SMALL_STATE(2552)] = 115838, + [SMALL_STATE(2553)] = 115849, + [SMALL_STATE(2554)] = 115860, + [SMALL_STATE(2555)] = 115869, + [SMALL_STATE(2556)] = 115878, + [SMALL_STATE(2557)] = 115889, + [SMALL_STATE(2558)] = 115898, + [SMALL_STATE(2559)] = 115907, + [SMALL_STATE(2560)] = 115916, + [SMALL_STATE(2561)] = 115925, + [SMALL_STATE(2562)] = 115934, + [SMALL_STATE(2563)] = 115943, + [SMALL_STATE(2564)] = 115952, + [SMALL_STATE(2565)] = 115961, + [SMALL_STATE(2566)] = 115970, + [SMALL_STATE(2567)] = 115979, + [SMALL_STATE(2568)] = 115990, + [SMALL_STATE(2569)] = 115999, + [SMALL_STATE(2570)] = 116008, + [SMALL_STATE(2571)] = 116017, + [SMALL_STATE(2572)] = 116026, + [SMALL_STATE(2573)] = 116035, + [SMALL_STATE(2574)] = 116044, + [SMALL_STATE(2575)] = 116053, + [SMALL_STATE(2576)] = 116062, + [SMALL_STATE(2577)] = 116073, + [SMALL_STATE(2578)] = 116082, + [SMALL_STATE(2579)] = 116093, + [SMALL_STATE(2580)] = 116104, + [SMALL_STATE(2581)] = 116113, + [SMALL_STATE(2582)] = 116122, + [SMALL_STATE(2583)] = 116130, + [SMALL_STATE(2584)] = 116138, + [SMALL_STATE(2585)] = 116146, + [SMALL_STATE(2586)] = 116154, + [SMALL_STATE(2587)] = 116162, + [SMALL_STATE(2588)] = 116170, + [SMALL_STATE(2589)] = 116178, + [SMALL_STATE(2590)] = 116186, + [SMALL_STATE(2591)] = 116194, + [SMALL_STATE(2592)] = 116202, + [SMALL_STATE(2593)] = 116210, + [SMALL_STATE(2594)] = 116218, + [SMALL_STATE(2595)] = 116226, + [SMALL_STATE(2596)] = 116234, + [SMALL_STATE(2597)] = 116242, + [SMALL_STATE(2598)] = 116250, + [SMALL_STATE(2599)] = 116258, + [SMALL_STATE(2600)] = 116266, + [SMALL_STATE(2601)] = 116274, + [SMALL_STATE(2602)] = 116282, + [SMALL_STATE(2603)] = 116290, + [SMALL_STATE(2604)] = 116298, + [SMALL_STATE(2605)] = 116306, + [SMALL_STATE(2606)] = 116314, + [SMALL_STATE(2607)] = 116322, + [SMALL_STATE(2608)] = 116330, + [SMALL_STATE(2609)] = 116338, + [SMALL_STATE(2610)] = 116346, + [SMALL_STATE(2611)] = 116354, + [SMALL_STATE(2612)] = 116362, + [SMALL_STATE(2613)] = 116370, + [SMALL_STATE(2614)] = 116378, + [SMALL_STATE(2615)] = 116386, + [SMALL_STATE(2616)] = 116394, + [SMALL_STATE(2617)] = 116402, + [SMALL_STATE(2618)] = 116410, + [SMALL_STATE(2619)] = 116418, + [SMALL_STATE(2620)] = 116426, + [SMALL_STATE(2621)] = 116434, + [SMALL_STATE(2622)] = 116442, + [SMALL_STATE(2623)] = 116450, + [SMALL_STATE(2624)] = 116458, + [SMALL_STATE(2625)] = 116466, + [SMALL_STATE(2626)] = 116474, + [SMALL_STATE(2627)] = 116482, + [SMALL_STATE(2628)] = 116490, + [SMALL_STATE(2629)] = 116498, + [SMALL_STATE(2630)] = 116506, + [SMALL_STATE(2631)] = 116514, + [SMALL_STATE(2632)] = 116522, + [SMALL_STATE(2633)] = 116530, + [SMALL_STATE(2634)] = 116538, + [SMALL_STATE(2635)] = 116546, + [SMALL_STATE(2636)] = 116554, + [SMALL_STATE(2637)] = 116562, + [SMALL_STATE(2638)] = 116570, + [SMALL_STATE(2639)] = 116578, + [SMALL_STATE(2640)] = 116586, + [SMALL_STATE(2641)] = 116594, + [SMALL_STATE(2642)] = 116602, + [SMALL_STATE(2643)] = 116610, + [SMALL_STATE(2644)] = 116618, + [SMALL_STATE(2645)] = 116626, + [SMALL_STATE(2646)] = 116634, + [SMALL_STATE(2647)] = 116642, + [SMALL_STATE(2648)] = 116650, + [SMALL_STATE(2649)] = 116658, + [SMALL_STATE(2650)] = 116666, + [SMALL_STATE(2651)] = 116674, + [SMALL_STATE(2652)] = 116682, + [SMALL_STATE(2653)] = 116690, + [SMALL_STATE(2654)] = 116698, + [SMALL_STATE(2655)] = 116706, + [SMALL_STATE(2656)] = 116714, + [SMALL_STATE(2657)] = 116722, + [SMALL_STATE(2658)] = 116730, + [SMALL_STATE(2659)] = 116738, + [SMALL_STATE(2660)] = 116746, + [SMALL_STATE(2661)] = 116754, + [SMALL_STATE(2662)] = 116762, + [SMALL_STATE(2663)] = 116770, + [SMALL_STATE(2664)] = 116778, + [SMALL_STATE(2665)] = 116786, + [SMALL_STATE(2666)] = 116794, + [SMALL_STATE(2667)] = 116802, + [SMALL_STATE(2668)] = 116810, + [SMALL_STATE(2669)] = 116818, + [SMALL_STATE(2670)] = 116826, + [SMALL_STATE(2671)] = 116834, + [SMALL_STATE(2672)] = 116842, + [SMALL_STATE(2673)] = 116850, + [SMALL_STATE(2674)] = 116858, + [SMALL_STATE(2675)] = 116866, + [SMALL_STATE(2676)] = 116874, + [SMALL_STATE(2677)] = 116882, + [SMALL_STATE(2678)] = 116890, + [SMALL_STATE(2679)] = 116898, + [SMALL_STATE(2680)] = 116906, + [SMALL_STATE(2681)] = 116914, + [SMALL_STATE(2682)] = 116922, + [SMALL_STATE(2683)] = 116930, + [SMALL_STATE(2684)] = 116938, + [SMALL_STATE(2685)] = 116946, + [SMALL_STATE(2686)] = 116954, + [SMALL_STATE(2687)] = 116962, + [SMALL_STATE(2688)] = 116970, + [SMALL_STATE(2689)] = 116978, + [SMALL_STATE(2690)] = 116986, + [SMALL_STATE(2691)] = 116994, + [SMALL_STATE(2692)] = 117002, + [SMALL_STATE(2693)] = 117010, + [SMALL_STATE(2694)] = 117018, + [SMALL_STATE(2695)] = 117026, + [SMALL_STATE(2696)] = 117034, + [SMALL_STATE(2697)] = 117042, + [SMALL_STATE(2698)] = 117050, + [SMALL_STATE(2699)] = 117058, + [SMALL_STATE(2700)] = 117066, + [SMALL_STATE(2701)] = 117074, + [SMALL_STATE(2702)] = 117082, + [SMALL_STATE(2703)] = 117090, + [SMALL_STATE(2704)] = 117098, + [SMALL_STATE(2705)] = 117106, + [SMALL_STATE(2706)] = 117114, + [SMALL_STATE(2707)] = 117122, + [SMALL_STATE(2708)] = 117130, + [SMALL_STATE(2709)] = 117138, + [SMALL_STATE(2710)] = 117146, + [SMALL_STATE(2711)] = 117154, + [SMALL_STATE(2712)] = 117162, + [SMALL_STATE(2713)] = 117170, + [SMALL_STATE(2714)] = 117178, + [SMALL_STATE(2715)] = 117186, + [SMALL_STATE(2716)] = 117194, + [SMALL_STATE(2717)] = 117202, + [SMALL_STATE(2718)] = 117210, + [SMALL_STATE(2719)] = 117218, + [SMALL_STATE(2720)] = 117226, + [SMALL_STATE(2721)] = 117234, + [SMALL_STATE(2722)] = 117242, + [SMALL_STATE(2723)] = 117250, + [SMALL_STATE(2724)] = 117258, + [SMALL_STATE(2725)] = 117266, + [SMALL_STATE(2726)] = 117274, + [SMALL_STATE(2727)] = 117282, + [SMALL_STATE(2728)] = 117290, + [SMALL_STATE(2729)] = 117298, + [SMALL_STATE(2730)] = 117306, + [SMALL_STATE(2731)] = 117314, + [SMALL_STATE(2732)] = 117322, + [SMALL_STATE(2733)] = 117330, + [SMALL_STATE(2734)] = 117338, + [SMALL_STATE(2735)] = 117346, + [SMALL_STATE(2736)] = 117354, + [SMALL_STATE(2737)] = 117362, + [SMALL_STATE(2738)] = 117370, + [SMALL_STATE(2739)] = 117378, + [SMALL_STATE(2740)] = 117386, + [SMALL_STATE(2741)] = 117394, + [SMALL_STATE(2742)] = 117402, + [SMALL_STATE(2743)] = 117410, + [SMALL_STATE(2744)] = 117418, + [SMALL_STATE(2745)] = 117426, + [SMALL_STATE(2746)] = 117434, + [SMALL_STATE(2747)] = 117442, + [SMALL_STATE(2748)] = 117450, + [SMALL_STATE(2749)] = 117458, + [SMALL_STATE(2750)] = 117466, + [SMALL_STATE(2751)] = 117474, + [SMALL_STATE(2752)] = 117482, + [SMALL_STATE(2753)] = 117490, + [SMALL_STATE(2754)] = 117498, + [SMALL_STATE(2755)] = 117506, + [SMALL_STATE(2756)] = 117514, + [SMALL_STATE(2757)] = 117522, + [SMALL_STATE(2758)] = 117530, + [SMALL_STATE(2759)] = 117538, + [SMALL_STATE(2760)] = 117546, + [SMALL_STATE(2761)] = 117554, + [SMALL_STATE(2762)] = 117562, + [SMALL_STATE(2763)] = 117570, + [SMALL_STATE(2764)] = 117578, + [SMALL_STATE(2765)] = 117586, + [SMALL_STATE(2766)] = 117594, + [SMALL_STATE(2767)] = 117602, + [SMALL_STATE(2768)] = 117610, + [SMALL_STATE(2769)] = 117618, + [SMALL_STATE(2770)] = 117626, + [SMALL_STATE(2771)] = 117634, + [SMALL_STATE(2772)] = 117642, + [SMALL_STATE(2773)] = 117650, + [SMALL_STATE(2774)] = 117658, + [SMALL_STATE(2775)] = 117666, + [SMALL_STATE(2776)] = 117674, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -127567,2441 +126049,2420 @@ static const TSParseActionEntry ts_parse_actions[] = { [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(616), - [122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2250), - [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1856), - [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(210), - [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(912), - [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(84), - [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(537), - [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(376), - [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(472), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(362), - [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2577), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2517), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2598), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(602), - [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(85), - [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(477), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(852), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(603), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2772), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(410), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2797), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2631), - [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2803), - [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(471), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(74), - [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2774), - [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(206), - [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(539), - [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(931), - [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(190), - [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(563), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1647), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(350), - [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1081), - [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1081), - [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(154), - [227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), - [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1688), - [232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), - [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(559), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(86), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(462), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(828), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(518), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2697), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(423), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2688), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2669), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), - [279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), - [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(296), - [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), - [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(947), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 1), - [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2741), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), - [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(917), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(544), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(294), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(307), - [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(913), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(308), - [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(931), - [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(563), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(896), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(612), + [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2160), + [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1841), + [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(185), + [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(903), + [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(81), + [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(490), + [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(374), + [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(465), + [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(351), + [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2534), + [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2563), + [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2505), + [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(597), + [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(83), + [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(479), + [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(772), + [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(598), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2649), + [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(456), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2765), + [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2643), + [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2714), + [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(467), + [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(71), + [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2742), + [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(183), + [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(547), + [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(863), + [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(191), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(578), + [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1628), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(340), + [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1099), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1099), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(146), + [225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), + [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1706), + [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(481), + [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(82), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(477), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(738), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(567), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2610), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(439), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2636), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2635), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), + [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(268), + [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(887), + [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 1), + [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2746), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), + [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(880), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(556), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(269), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(303), + [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(877), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(310), + [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(863), + [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(578), + [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(868), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), - [669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, 0, 0), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 0), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [1109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 96), - [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 96), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 97), - [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 97), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, 0, 0), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 0), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 0), - [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 109), - [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 109), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, 0, 44), - [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 44), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 0), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1, 0, 0), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 0), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, 0, 0), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 0), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), + [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, 0, 0), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 0), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 96), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 96), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 97), + [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 97), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, 0, 0), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 45), + [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, 0, 45), + [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 0), + [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 109), + [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 109), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 0), + [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 0), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1, 0, 0), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 0), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 0), + [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), + [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, 0, 0), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 0), + [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 3, 0, 0), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), + [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 17), + [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 17), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 17), + [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 17), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 0), - [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 6), - [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 0), - [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 3, 0, 0), - [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 14), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, -1, 15), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 62), - [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 62), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 42), - [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 42), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 43), + [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 43), + [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 43), + [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 43), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 6), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), + [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 14), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, -1, 15), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [1509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(464), + [1512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(552), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [1559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(475), + [1562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(600), [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), [1567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 0), [1574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), - [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), - [1587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(571), - [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 81), - [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 81), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 37), - [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 37), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 55), - [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 55), - [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 56), - [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 56), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(475), - [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(479), - [1620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(605), - [1623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), - [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), - [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), SHIFT_REPEAT(606), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), - [1632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), - [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), - [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), - [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), - [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 71), - [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 71), - [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 71), - [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 71), - [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), SHIFT_REPEAT(594), - [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 2), - [1664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 2), - [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 2), - [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 49), - [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 49), - [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2, 0, 0), - [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2, 0, 0), - [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), - [1679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), - [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), - [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 23), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 23), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 49), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 49), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), - [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 88), - [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 88), - [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 57), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 57), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 38), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 38), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 81), + [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 81), + [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 56), + [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 56), + [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), + [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), + [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2, 0, 0), + [1611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2, 0, 0), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 117), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 117), + [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, 0, 0), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, 0, 0), + [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 24), + [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 24), + [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 2), + [1639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 2), + [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 2), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), + [1646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), + [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), + [1651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), + [1657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), + [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), + [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 88), + [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 88), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 71), + [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 71), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 0), + [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 0), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 104), + [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 104), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, 0, 105), + [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, 0, 105), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 129), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 129), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, 0, 130), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, 0, 130), + [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 137), + [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 137), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, 0, 0), + [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, 0, 0), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 50), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 50), + [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 50), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 50), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 71), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 71), [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), - [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), - [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), - [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), - [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), - [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, 0, 0), - [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, 0, 0), - [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, 0, 130), - [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, 0, 130), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 129), - [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 129), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 0), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 0), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 117), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 117), - [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 137), - [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 137), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, 0, 105), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, 0, 105), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, 0, 0), - [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, 0, 0), - [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 104), - [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 104), - [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 56), - [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 56), - [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 86), - [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 86), - [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 62), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 62), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 61), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 61), - [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 103), - [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 103), - [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 99), - [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 99), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 42), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 42), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 37), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 37), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 113), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 113), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 53), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 53), - [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 41), - [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 41), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 42), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 42), - [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 62), - [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 62), - [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 39), - [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 39), - [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 91), - [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 91), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 92), - [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 92), - [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 93), - [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 93), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 67), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 67), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 98), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 98), - [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 60), - [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 60), - [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 85), - [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 85), - [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 87), - [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 87), - [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 100), - [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 100), - [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 101), - [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 101), - [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 102), - [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 102), - [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 0), - [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 0), - [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 62), - [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 62), - [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 106), - [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 106), - [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 107), - [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 107), - [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 108), - [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 108), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 78), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 78), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 64), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 64), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 80), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 80), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 89), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 89), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 90), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 90), - [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 112), - [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 112), - [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 114), - [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 114), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 115), - [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 115), - [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 0), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 116), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 116), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 118), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 118), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 119), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 119), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 1, 0, 0), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 1, 0, 0), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 126), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 126), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 127), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 127), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 128), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 128), - [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 63), - [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 63), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 54), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 54), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 88), - [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 88), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 57), - [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 57), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 131), - [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 131), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 42), - [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 42), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 136), - [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 136), - [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 2, 0, 0), - [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 2, 0, 0), - [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 65), - [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 65), - [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 58), - [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 58), - [2022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 3, 0, 82), - [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 3, 0, 82), - [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 83), - [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 83), - [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 43), - [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 43), - [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 12), - [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 12), - [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 84), - [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 84), - [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 0), - [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 45), - [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 45), - [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 0), - [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 66), - [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 66), - [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 59), - [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 59), - [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 0), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1, 0, 0), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), + [1730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), SHIFT_REPEAT(602), + [1733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), SHIFT_REPEAT(580), + [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 17), + [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 17), + [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 57), + [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 57), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 113), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 113), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 42), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 42), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 38), + [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 38), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 43), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 43), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 86), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 86), + [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 54), + [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 54), + [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 62), + [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 62), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 99), + [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 99), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 103), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 103), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 17), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 17), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 43), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 43), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 61), + [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 61), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 107), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 107), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 64), + [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 64), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 87), + [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 87), + [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 115), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 115), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 108), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 108), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 126), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 126), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 88), + [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 88), + [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 17), + [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 17), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 3, 0, 82), + [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 3, 0, 82), + [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 89), + [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 89), + [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 65), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 65), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 66), + [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 66), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 116), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 116), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 90), + [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 90), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 91), + [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 91), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 92), + [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 92), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 93), + [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 93), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 0), + [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 98), + [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 98), + [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 83), + [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 83), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 100), + [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 100), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 101), + [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 101), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 102), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 102), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 84), + [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 84), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 85), + [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 85), + [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 127), + [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 127), + [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 128), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 128), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 0), + [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 0), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 43), + [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 43), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 1, 0, 0), + [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 1, 0, 0), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 106), + [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 106), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 40), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 40), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 67), + [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 67), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 112), + [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 112), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 114), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 114), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 118), + [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 118), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 119), + [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 119), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 44), + [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 44), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 46), + [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 46), + [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 131), + [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 131), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 136), + [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 136), + [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 12), + [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 12), + [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 0), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 0), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 55), + [2022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 55), + [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 0), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 58), + [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 58), + [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 2, 0, 0), + [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 2, 0, 0), + [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 59), + [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 59), + [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 60), + [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 60), + [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 63), + [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 63), + [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 78), + [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 78), + [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 80), + [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 80), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1, 0, 0), + [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1688), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 21), - [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 21), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), - [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 9), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), - [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), - [2425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1701), - [2428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1735), - [2431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1711), - [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 24), - [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 24), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [2466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1690), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [2479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1683), - [2482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1715), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 33), - [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 33), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 10), - [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 10), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), - [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), - [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 34), - [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 34), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 0), - [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 0), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 0), - [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 0), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 0), - [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 0), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, 0, 34), - [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 34), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 34), - [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 34), - [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), - [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), - [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 33), - [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 33), - [2539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1719), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), - [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), - [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), - [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), - [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 0), - [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 0), - [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 33), - [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 33), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 34), - [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 34), - [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 11), - [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 11), - [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), - [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(965), - [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), - [2809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(2728), - [2812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(862), - [2815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(965), - [2818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(897), - [2821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(865), - [2824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(897), - [2827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(957), - [2830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(866), - [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(957), - [2836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(904), - [2839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(869), - [2842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(904), - [2845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(954), - [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(864), - [2851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(954), - [2854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(932), - [2857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(863), - [2860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(932), - [2863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(945), - [2866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(867), - [2869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(945), - [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(876), - [2875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(868), - [2878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(876), - [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__is_not, 2, 0, 0), - [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__is_not, 2, 0, 0), - [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__not_in, 2, 0, 0), - [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__not_in, 2, 0, 0), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), - [2891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(858), - [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 0), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(854), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), - [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), - [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 6), - [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, 0, 22), - [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 21), - [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), - [3021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(532), - [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 17), - [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 48), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [3076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), SHIFT(338), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 6), - [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 21), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [3113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(225), - [3116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), - [3119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), - [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [3154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(486), - [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, 0, 22), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [3173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(498), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [3192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(540), - [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), - [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), - [3199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2745), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), - [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [3226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(506), - [3229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(552), - [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), - [3234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(490), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), - [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 8), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), - [3267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1800), - [3270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1800), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 46), - [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, -1, 6), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 1, 0, 0), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 0), - [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [3333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(577), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [3372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2735), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 70), - [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [3415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2765), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [3422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(519), - [3425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2802), - [3428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(840), - [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [3437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2614), - [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 6), - [3442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(561), - [3445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2701), - [3448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(841), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [3459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(548), - [3462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2805), - [3465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 2, 0, 0), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), - [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 38), - [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 75), - [3478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 75), - [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 94), - [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 18), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_type, 3, 0, 0), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 44), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 97), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 0), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_pattern, 1, 0, 0), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 96), - [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 0), - [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3, 0, 0), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 51), - [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 51), - [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), - [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 16), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), - [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 36), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_pattern, 2, 0, 0), - [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), - [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(539), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 52), - [3575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 52), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 5, 0, 0), - [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), - [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 0), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 0), - [3597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 109), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), - [3605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(448), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 26), - [3616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 26), - [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 95), - [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 95), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [3626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2808), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 1), - [3633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(445), - [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 0), - [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_pattern, 3, 0, 0), - [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 73), - [3642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 73), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1566), - [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 69), - [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 19), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 18), - [3671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(435), - [3674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(857), - [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 74), - [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 74), - [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 47), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 26), - [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 26), - [3693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(583), - [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 4, 0, 0), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 17), - [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 2, 0, 0), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [3712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 5, 0, 0), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 6, 0, 0), - [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 2, 0, 0), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 5, 0, 0), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 120), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 3, 0, 0), - [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 13), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 3, 0, 0), - [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 4), - [3768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(232), - [3771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), - [3773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2039), - [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 110), - [3778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_pattern, 2, 0, 0), - [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 0), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 122), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 5, 0, 0), - [3792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 3, 0, 0), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(523), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 3, 0, 0), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [3811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1558), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1560), - [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 48), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 1, 44), - [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 4, 0, 0), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 4, 0, 0), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 2, 0, 0), - [3871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 110), - [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 4), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 120), - [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 0), - [3883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 122), - [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 4, 0, 0), - [3891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1561), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [3896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [3914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 14), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 15), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), - [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__as_pattern, 3, 0, 0), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [3942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1535), - [3945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), - [3947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(2173), - [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 35), - [3952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 35), SHIFT_REPEAT(562), - [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 0), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 8), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 13), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 27), - [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), - [4021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), SHIFT_REPEAT(2256), - [4024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 79), SHIFT_REPEAT(1532), - [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 79), - [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), - [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), - [4043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2639), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [4054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [4068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(335), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [4095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_value_pattern, 3, 0, 46), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [4119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 121), SHIFT_REPEAT(1557), - [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 121), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [4128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 72), SHIFT_REPEAT(432), - [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 72), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [4175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), SHIFT_REPEAT(403), - [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(272), - [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), - [4207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1664), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [4224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(610), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [4241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1662), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 8), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [4310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1533), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [4321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 0), - [4323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(859), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), SHIFT_REPEAT(2400), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [4339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(466), - [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), - [4344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(543), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [4373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(556), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [4414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(364), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 29), - [4429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(468), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [4458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(153), - [4461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [4497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 50), - [4499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 50), - [4501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 40), SHIFT_REPEAT(484), - [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 40), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [4528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1534), - [4531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(371), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(856), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [4563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(349), - [4566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(855), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), - [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [4591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 123), - [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 3), - [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 110), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 132), - [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 133), - [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 134), - [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [4619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), - [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 33), - [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 135), - [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, 0, 111), - [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), - [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [4641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 33), - [4643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 124), - [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 125), - [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 77), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [4655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 30), - [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [4661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 31), - [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 1, 0, 53), - [4665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 32), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [4671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 138), - [4673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 139), - [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [4679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 140), - [4681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1, 0, 0), - [4683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 68), - [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, 0, 141), - [4689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 20), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [4723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 76), - [4725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [4731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 21), - [4733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [4759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 0), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [4773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [4937] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [4963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1706), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 22), + [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 22), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), + [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 9), + [2401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1686), + [2404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1681), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [2435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1691), + [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), + [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), + [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), + [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), + [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [2448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [2450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1708), + [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [2457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1696), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1666), + [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), + [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), + [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 0), + [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 0), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 0), + [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 0), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 34), + [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 34), + [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 10), + [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 10), + [2503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1702), + [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 35), + [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 35), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 0), + [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 0), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), + [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 34), + [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 34), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), + [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 35), + [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 35), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 0), + [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 0), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, 0, 35), + [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 35), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 35), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 35), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 34), + [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 34), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 11), + [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 11), + [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), + [2784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(873), + [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), + [2789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(2747), + [2792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(849), + [2795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(873), + [2798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(914), + [2801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(846), + [2804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(914), + [2807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(892), + [2810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(850), + [2813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(892), + [2816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(927), + [2819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(848), + [2822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(927), + [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(861), + [2828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(847), + [2831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(861), + [2834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(856), + [2837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(853), + [2840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(856), + [2843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(947), + [2846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(852), + [2849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(947), + [2852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(854), + [2855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(851), + [2858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(854), + [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__is_not, 2, 0, 0), + [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__is_not, 2, 0, 0), + [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__not_in, 2, 0, 0), + [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__not_in, 2, 0, 0), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), + [2873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(838), + [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 0), + [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [2898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(837), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), + [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), + [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 49), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), + [2995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(550), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, 0, 23), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 22), + [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 18), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 6), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 6), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 22), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), SHIFT(323), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [3101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(216), + [3104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1783), + [3107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1783), + [3110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [3128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(497), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, 0, 23), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [3169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(486), + [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), + [3174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(523), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [3191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(515), + [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), + [3196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2735), + [3199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(508), + [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), + [3204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(530), + [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), + [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), + [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 0), + [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 8), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [3235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 47), + [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 1, 0, 0), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [3257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(572), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, -1, 6), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [3274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1804), + [3277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1804), + [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [3320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(544), + [3323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2770), + [3326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(826), + [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), + [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 6), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [3337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2691), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 2, 0, 0), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), + [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [3396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(545), + [3399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2749), + [3402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(774), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [3423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2620), + [3426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2754), + [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 70), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [3439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(558), + [3442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2773), + [3445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(834), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 97), + [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_type, 3, 0, 0), + [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 0), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 109), + [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 5, 0, 0), + [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), + [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), + [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3, 0, 0), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_pattern, 2, 0, 0), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [3492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(402), + [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 53), + [3503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 53), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 96), + [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 95), + [3511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 95), + [3513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(419), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), + [3528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(547), + [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 37), + [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 0), + [3535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 39), + [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 0), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [3549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(840), + [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 74), + [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 74), + [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 69), + [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 19), + [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_pattern, 3, 0, 0), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 0), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 48), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 19), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 45), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 20), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_pattern, 1, 0, 0), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 16), + [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 27), + [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 27), + [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 75), + [3624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 75), + [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 1), + [3634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(460), + [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 94), + [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 52), + [3641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 52), + [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 73), + [3645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 73), + [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 0), + [3649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1546), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [3656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(577), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 27), + [3667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 27), + [3669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2617), + [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 3, 0, 0), + [3674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1549), + [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 120), + [3679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 0), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 4), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [3697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 1, 45), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 2, 0, 0), + [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 4, 0, 0), + [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 0), + [3707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 3, 0, 0), + [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_pattern, 2, 0, 0), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 122), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [3725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1547), + [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 18), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 3, 0, 0), + [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 4, 0, 0), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 49), + [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 6, 0, 0), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 2, 0, 0), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [3760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(592), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 122), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 4, 0, 0), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 13), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), + [3789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(225), + [3792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), + [3794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2041), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 5, 0, 0), + [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 2, 0, 0), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [3809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1543), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 110), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 5, 0, 0), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 120), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [3846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 4, 0, 0), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [3850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 4), + [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [3854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 3, 0, 0), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [3864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 110), + [3866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 5, 0, 0), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [3880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1517), + [3883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 8), + [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 36), + [3899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 36), SHIFT_REPEAT(579), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), + [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 0), + [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [3928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), + [3946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 79), SHIFT_REPEAT(1515), + [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 79), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), + [3957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2586), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 13), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [3982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), + [3984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(2173), + [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__as_pattern, 3, 0, 0), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 14), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 15), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), + [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), + [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 29), + [4027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 29), SHIFT_REPEAT(2396), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), + [4076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1647), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [4083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(463), + [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(330), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 0), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), SHIFT_REPEAT(373), + [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [4154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(238), + [4157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(144), + [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_value_pattern, 3, 0, 47), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [4184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1646), + [4187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1516), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [4192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(564), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [4213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 121), SHIFT_REPEAT(1540), + [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 121), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [4232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(343), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 41), SHIFT_REPEAT(584), + [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 41), + [4258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(345), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [4265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 72), SHIFT_REPEAT(412), + [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 72), + [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [4282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 51), + [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 51), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(470), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1518), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [4428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(842), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 8), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 30), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [4491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 29), SHIFT_REPEAT(2302), + [4494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(489), + [4497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(841), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [4508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(555), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [4515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(360), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [4526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(839), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 33), + [4539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 34), + [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [4543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 68), + [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 123), + [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 132), + [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 133), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 134), + [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 124), + [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [4573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 135), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [4579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 125), + [4581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), + [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [4597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 34), + [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [4603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 138), + [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 139), + [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 110), + [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 140), + [4619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, 0, 141), + [4623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 1, 0, 54), + [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1, 0, 0), + [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 76), + [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 21), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 77), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [4641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 22), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 31), + [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [4669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), + [4671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 32), + [4673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [4675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), + [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [4681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), + [4683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), + [4685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 3), + [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, 0, 111), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [4765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 0), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [4775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [4877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [4981] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), }; enum ts_external_scanner_symbol_identifiers { @@ -130034,7 +128495,7 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token_except] = anon_sym_except, }; -static const bool ts_external_scanner_states[20][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[19][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__newline] = true, [ts_external_token__indent] = true, @@ -130085,27 +128546,27 @@ static const bool ts_external_scanner_states[20][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_RPAREN] = true, }, [9] = { - [ts_external_token__newline] = true, + [ts_external_token_string_start] = true, [ts_external_token_comment] = true, + [ts_external_token_except] = true, }, [10] = { + [ts_external_token__dedent] = true, [ts_external_token_string_start] = true, [ts_external_token_comment] = true, [ts_external_token_except] = true, }, [11] = { - [ts_external_token__dedent] = true, - [ts_external_token_string_start] = true, + [ts_external_token__newline] = true, [ts_external_token_comment] = true, - [ts_external_token_except] = true, }, [12] = { [ts_external_token_comment] = true, - [ts_external_token_RBRACE] = true, + [ts_external_token_RBRACK] = true, }, [13] = { [ts_external_token_comment] = true, - [ts_external_token_RBRACK] = true, + [ts_external_token_RBRACE] = true, }, [14] = { [ts_external_token_comment] = true, @@ -130121,14 +128582,10 @@ static const bool ts_external_scanner_states[20][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_comment] = true, }, [17] = { - [ts_external_token_comment] = true, - [ts_external_token_except] = true, - }, - [18] = { [ts_external_token__dedent] = true, [ts_external_token_comment] = true, }, - [19] = { + [18] = { [ts_external_token__newline] = true, [ts_external_token__indent] = true, [ts_external_token_comment] = true, @@ -130154,7 +128611,7 @@ void tree_sitter_python_external_scanner_deserialize(void *, const char *, unsig TS_PUBLIC const TSLanguage *tree_sitter_python(void) { static const TSLanguage language = { - .version = LANGUAGE_VERSION, + .abi_version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, .alias_count = ALIAS_COUNT, .token_count = TOKEN_COUNT, @@ -130162,6 +128619,7 @@ TS_PUBLIC const TSLanguage *tree_sitter_python(void) { .state_count = STATE_COUNT, .large_state_count = LARGE_STATE_COUNT, .production_id_count = PRODUCTION_ID_COUNT, + .supertype_count = SUPERTYPE_COUNT, .field_count = FIELD_COUNT, .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, .parse_table = &ts_parse_table[0][0], @@ -130172,11 +128630,14 @@ TS_PUBLIC const TSLanguage *tree_sitter_python(void) { .field_names = ts_field_names, .field_map_slices = ts_field_map_slices, .field_map_entries = ts_field_map_entries, + .supertype_map_slices = ts_supertype_map_slices, + .supertype_map_entries = ts_supertype_map_entries, + .supertype_symbols = ts_supertype_symbols, .symbol_metadata = ts_symbol_metadata, .public_symbol_map = ts_symbol_map, .alias_map = ts_non_terminal_alias_map, .alias_sequences = &ts_alias_sequences[0][0], - .lex_modes = ts_lex_modes, + .lex_modes = (const void*)ts_lex_modes, .lex_fn = ts_lex, .keyword_lex_fn = ts_lex_keywords, .keyword_capture_token = sym_identifier, @@ -130190,6 +128651,13 @@ TS_PUBLIC const TSLanguage *tree_sitter_python(void) { tree_sitter_python_external_scanner_deserialize, }, .primary_state_ids = ts_primary_state_ids, + .name = "python", + .max_reserved_word_set_size = 0, + .metadata = { + .major_version = 0, + .minor_version = 23, + .patch_version = 6, + }, }; return &language; } diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 799f599b..858107de 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -18,6 +18,11 @@ typedef uint16_t TSStateId; typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; +typedef struct TSLanguageMetadata { + uint8_t major_version; + uint8_t minor_version; + uint8_t patch_version; +} TSLanguageMetadata; #endif typedef struct { @@ -26,10 +31,11 @@ typedef struct { bool inherited; } TSFieldMapEntry; +// Used to index the field and supertype maps. typedef struct { uint16_t index; uint16_t length; -} TSFieldMapSlice; +} TSMapSlice; typedef struct { bool visible; @@ -79,6 +85,12 @@ typedef struct { uint16_t external_lex_state; } TSLexMode; +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; + uint16_t reserved_word_set_id; +} TSLexerMode; + typedef union { TSParseAction action; struct { @@ -93,7 +105,7 @@ typedef struct { } TSCharacterRange; struct TSLanguage { - uint32_t version; + uint32_t abi_version; uint32_t symbol_count; uint32_t alias_count; uint32_t token_count; @@ -109,13 +121,13 @@ struct TSLanguage { const TSParseActionEntry *parse_actions; const char * const *symbol_names; const char * const *field_names; - const TSFieldMapSlice *field_map_slices; + const TSMapSlice *field_map_slices; const TSFieldMapEntry *field_map_entries; const TSSymbolMetadata *symbol_metadata; const TSSymbol *public_symbol_map; const uint16_t *alias_map; const TSSymbol *alias_sequences; - const TSLexMode *lex_modes; + const TSLexerMode *lex_modes; bool (*lex_fn)(TSLexer *, TSStateId); bool (*keyword_lex_fn)(TSLexer *, TSStateId); TSSymbol keyword_capture_token; @@ -129,15 +141,23 @@ struct TSLanguage { void (*deserialize)(void *, const char *, unsigned); } external_scanner; const TSStateId *primary_state_ids; + const char *name; + const TSSymbol *reserved_words; + uint16_t max_reserved_word_set_size; + uint32_t supertype_count; + const TSSymbol *supertype_symbols; + const TSMapSlice *supertype_map_slices; + const TSSymbol *supertype_map_entries; + TSLanguageMetadata metadata; }; -static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { +static inline bool set_contains(const TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { uint32_t index = 0; uint32_t size = len - index; while (size > 1) { uint32_t half_size = size / 2; uint32_t mid_index = index + half_size; - TSCharacterRange *range = &ranges[mid_index]; + const TSCharacterRange *range = &ranges[mid_index]; if (lookahead >= range->start && lookahead <= range->end) { return true; } else if (lookahead > range->end) { @@ -145,7 +165,7 @@ static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t } size -= half_size; } - TSCharacterRange *range = &ranges[index]; + const TSCharacterRange *range = &ranges[index]; return (lookahead >= range->start && lookahead <= range->end); } From aa9f5095aa36fbd64b0424531bb06048e2ae0a03 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Tue, 27 May 2025 17:13:37 -0700 Subject: [PATCH 2/8] Bump Tree-sitter CLI --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a80d172c..60c2c1f9 100644 --- a/package.json +++ b/package.json @@ -40,7 +40,7 @@ "eslint": "^9.17.0", "eslint-config-treesitter": "^1.0.2", "prebuildify": "^6.0.1", - "tree-sitter-cli": "^0.24.5" + "tree-sitter-cli": "^0.25.4" }, "peerDependencies": { "tree-sitter": "^0.22.1" From 6cf17feb37e4387f52c17fe9fe1c3b6f95bbf8aa Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Wed, 28 May 2025 08:52:18 -0700 Subject: [PATCH 3/8] Update bindings --- .gitattributes | 6 +- .gitignore | 7 +++ CMakeLists.txt | 11 +++- Makefile | 2 +- Package.swift | 2 +- .../c/{ => tree_sitter}/tree-sitter-python.h | 0 bindings/python/tree_sitter_python/binding.c | 14 ++++- pyproject.toml | 6 +- setup.py | 61 ++++++++++++------- 9 files changed, 74 insertions(+), 35 deletions(-) rename bindings/c/{ => tree_sitter}/tree-sitter-python.h (100%) diff --git a/.gitattributes b/.gitattributes index 7e2cae0c..79475a5e 100644 --- a/.gitattributes +++ b/.gitattributes @@ -6,7 +6,7 @@ src/parser.c linguist-generated src/tree_sitter/* linguist-generated # C bindings -bindings/c/* linguist-generated +bindings/c/** linguist-generated CMakeLists.txt linguist-generated Makefile linguist-generated @@ -35,3 +35,7 @@ go.sum linguist-generated bindings/swift/** linguist-generated Package.swift linguist-generated Package.resolved linguist-generated + +# Zig bindings +build.zig linguist-generated +build.zig.zon linguist-generated diff --git a/.gitignore b/.gitignore index 308fcab2..bc9e191a 100644 --- a/.gitignore +++ b/.gitignore @@ -25,6 +25,13 @@ dist/ *.dylib *.dll *.pc +*.exp +*.lib + +# Zig artifacts +.zig-cache/ +zig-cache/ +zig-out/ # Example dirs /examples/*/ diff --git a/CMakeLists.txt b/CMakeLists.txt index c9b8e50b..5e23f1ec 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -28,7 +28,11 @@ add_library(tree-sitter-python src/parser.c) if(EXISTS src/scanner.c) target_sources(tree-sitter-python PRIVATE src/scanner.c) endif() -target_include_directories(tree-sitter-python PRIVATE src) +target_include_directories(tree-sitter-python + PRIVATE src + INTERFACE $ + $) + target_compile_definitions(tree-sitter-python PRIVATE $<$:TREE_SITTER_REUSE_ALLOCATOR> @@ -46,8 +50,9 @@ configure_file(bindings/c/tree-sitter-python.pc.in include(GNUInstallDirs) -install(FILES bindings/c/tree-sitter-python.h - DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/tree_sitter") +install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/bindings/c/tree_sitter" + DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}" + FILES_MATCHING PATTERN "*.h") install(FILES "${CMAKE_CURRENT_BINARY_DIR}/tree-sitter-python.pc" DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/pkgconfig") install(TARGETS tree-sitter-python diff --git a/Makefile b/Makefile index bd8f3ced..c65949bf 100644 --- a/Makefile +++ b/Makefile @@ -70,7 +70,7 @@ $(PARSER): $(SRC_DIR)/grammar.json install: all install -d '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter '$(DESTDIR)$(PCLIBDIR)' '$(DESTDIR)$(LIBDIR)' - install -m644 bindings/c/$(LANGUAGE_NAME).h '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/$(LANGUAGE_NAME).h + install -m644 bindings/c/tree_sitter/$(LANGUAGE_NAME).h '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/$(LANGUAGE_NAME).h install -m644 $(LANGUAGE_NAME).pc '$(DESTDIR)$(PCLIBDIR)'/$(LANGUAGE_NAME).pc install -m644 lib$(LANGUAGE_NAME).a '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).a install -m755 lib$(LANGUAGE_NAME).$(SOEXT) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER) diff --git a/Package.swift b/Package.swift index 684993b7..4c42f68f 100644 --- a/Package.swift +++ b/Package.swift @@ -8,7 +8,7 @@ let package = Package( .library(name: "TreeSitterPython", targets: ["TreeSitterPython"]), ], dependencies: [ - .package(url: "https://github.com/ChimeHQ/SwiftTreeSitter", from: "0.8.0"), + .package(url: "https://github.com/tree-sitter/swift-tree-sitter", from: "0.8.0"), ], targets: [ .target( diff --git a/bindings/c/tree-sitter-python.h b/bindings/c/tree_sitter/tree-sitter-python.h similarity index 100% rename from bindings/c/tree-sitter-python.h rename to bindings/c/tree_sitter/tree-sitter-python.h diff --git a/bindings/python/tree_sitter_python/binding.c b/bindings/python/tree_sitter_python/binding.c index 84d8016f..bfe86544 100644 --- a/bindings/python/tree_sitter_python/binding.c +++ b/bindings/python/tree_sitter_python/binding.c @@ -8,6 +8,13 @@ static PyObject* _binding_language(PyObject *Py_UNUSED(self), PyObject *Py_UNUSE return PyCapsule_New(tree_sitter_python(), "tree_sitter.Language", NULL); } +static struct PyModuleDef_Slot slots[] = { +#ifdef Py_GIL_DISABLED + {Py_mod_gil, Py_MOD_GIL_NOT_USED}, +#endif + {0, NULL} +}; + static PyMethodDef methods[] = { {"language", _binding_language, METH_NOARGS, "Get the tree-sitter language for this grammar."}, @@ -18,10 +25,11 @@ static struct PyModuleDef module = { .m_base = PyModuleDef_HEAD_INIT, .m_name = "_binding", .m_doc = NULL, - .m_size = -1, - .m_methods = methods + .m_size = 0, + .m_methods = methods, + .m_slots = slots, }; PyMODINIT_FUNC PyInit__binding(void) { - return PyModule_Create(&module); + return PyModuleDef_Init(&module); } diff --git a/pyproject.toml b/pyproject.toml index faaa0d27..6d6e21b6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,7 @@ authors = [ { name = "Max Brunsfeld", email = "maxbrunsfeld@gmail.com" }, { name = "Amaan Qureshi", email = "amaanq12@gmail.com" }, ] -requires-python = ">=3.9" +requires-python = ">=3.10" license.text = "MIT" readme = "README.md" @@ -26,8 +26,8 @@ readme = "README.md" Homepage = "https://github.com/tree-sitter/tree-sitter-python" [project.optional-dependencies] -core = ["tree-sitter~=0.22"] +core = ["tree-sitter~=0.24"] [tool.cibuildwheel] -build = "cp39-*" +build = "cp310-*" build-frontend = "build" diff --git a/setup.py b/setup.py index 80dc51c2..50452ad2 100644 --- a/setup.py +++ b/setup.py @@ -1,15 +1,36 @@ -from os.path import isdir, join +from os import path from platform import system +from sysconfig import get_config_var from setuptools import Extension, find_packages, setup from setuptools.command.build import build +from setuptools.command.egg_info import egg_info from wheel.bdist_wheel import bdist_wheel +sources = [ + "bindings/python/tree_sitter_python/binding.c", + "src/parser.c", +] +if path.exists("src/scanner.c"): + sources.append("src/scanner.c") + +macros: list[tuple[str, str | None]] = [ + ("PY_SSIZE_T_CLEAN", None), + ("TREE_SITTER_HIDE_SYMBOLS", None), +] +if limited_api := not get_config_var("Py_GIL_DISABLED"): + macros.append(("Py_LIMITED_API", "0x030A0000")) + +if system() != "Windows": + cflags = ["-std=c11", "-fvisibility=hidden"] +else: + cflags = ["/std:c11", "/utf-8"] + class Build(build): def run(self): - if isdir("queries"): - dest = join(self.build_lib, "tree_sitter_python", "queries") + if path.isdir("queries"): + dest = path.join(self.build_lib, "tree_sitter_python", "queries") self.copy_tree("queries", dest) super().run() @@ -18,10 +39,17 @@ class BdistWheel(bdist_wheel): def get_tag(self): python, abi, platform = super().get_tag() if python.startswith("cp"): - python, abi = "cp39", "abi3" + python, abi = "cp310", "abi3" return python, abi, platform +class EggInfo(egg_info): + def find_sources(self): + super().find_sources() + self.filelist.recursive_include("queries", "*.scm") + self.filelist.include("src/tree_sitter/*.h") + + setup( packages=find_packages("bindings/python"), package_dir={"": "bindings/python"}, @@ -33,30 +61,17 @@ def get_tag(self): ext_modules=[ Extension( name="_binding", - sources=[ - "bindings/python/tree_sitter_python/binding.c", - "src/parser.c", - "src/scanner.c", - ], - extra_compile_args=[ - "-std=c11", - "-fvisibility=hidden", - ] if system() != "Windows" else [ - "/std:c11", - "/utf-8", - ], - define_macros=[ - ("Py_LIMITED_API", "0x03090000"), - ("PY_SSIZE_T_CLEAN", None), - ("TREE_SITTER_HIDE_SYMBOLS", None), - ], + sources=sources, + extra_compile_args=cflags, + define_macros=macros, include_dirs=["src"], - py_limited_api=True, + py_limited_api=limited_api, ) ], cmdclass={ "build": Build, - "bdist_wheel": BdistWheel + "bdist_wheel": BdistWheel, + "egg_info": EggInfo, }, zip_safe=False ) From 3c9e49ee5df5d33ee4ab92d666c5bd1e585389eb Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Wed, 28 May 2025 11:15:30 -0700 Subject: [PATCH 4/8] Bump tree-sitter --- package.json | 2 +- src/parser.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 60c2c1f9..d58e9bf6 100644 --- a/package.json +++ b/package.json @@ -40,7 +40,7 @@ "eslint": "^9.17.0", "eslint-config-treesitter": "^1.0.2", "prebuildify": "^6.0.1", - "tree-sitter-cli": "^0.25.4" + "tree-sitter-cli": "^0.25.5" }, "peerDependencies": { "tree-sitter": "^0.22.1" diff --git a/src/parser.c b/src/parser.c index 5ad357b5..aa49c4c2 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,4 +1,4 @@ -/* Automatically @generated by tree-sitter v0.25.4 */ +/* Automatically @generated by tree-sitter v0.25.5 (460118b4c82318b083b4d527c9c750426730f9c0) */ #include "tree_sitter/parser.h" From 260dd636cb3a7611ad20ad19c9466fb25c8d5f0a Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Wed, 28 May 2025 11:18:03 -0700 Subject: [PATCH 5/8] Delete lockfiles --- .gitignore | 3 + Cargo.lock | 96 --- Package.resolved | 16 - package-lock.json | 1486 --------------------------------------------- 4 files changed, 3 insertions(+), 1598 deletions(-) delete mode 100644 Cargo.lock delete mode 100644 Package.resolved delete mode 100644 package-lock.json diff --git a/.gitignore b/.gitignore index bc9e191a..87a0c80c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,13 +1,16 @@ # Rust artifacts target/ +Cargo.lock # Node artifacts build/ prebuilds/ node_modules/ +package-lock.json # Swift artifacts .build/ +Package.resolved # Go artifacts _obj/ diff --git a/Cargo.lock b/Cargo.lock deleted file mode 100644 index 91b9f8a8..00000000 --- a/Cargo.lock +++ /dev/null @@ -1,96 +0,0 @@ -# This file is automatically @generated by Cargo. -# It is not intended for manual editing. -version = 4 - -[[package]] -name = "aho-corasick" -version = "1.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" -dependencies = [ - "memchr", -] - -[[package]] -name = "cc" -version = "1.2.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c31a0499c1dc64f458ad13872de75c0eb7e3fdb0e67964610c914b034fc5956e" -dependencies = [ - "shlex", -] - -[[package]] -name = "memchr" -version = "2.7.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" - -[[package]] -name = "regex" -version = "1.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" -dependencies = [ - "aho-corasick", - "memchr", - "regex-automata", - "regex-syntax", -] - -[[package]] -name = "regex-automata" -version = "0.4.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" -dependencies = [ - "aho-corasick", - "memchr", - "regex-syntax", -] - -[[package]] -name = "regex-syntax" -version = "0.8.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" - -[[package]] -name = "shlex" -version = "1.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" - -[[package]] -name = "streaming-iterator" -version = "0.1.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520" - -[[package]] -name = "tree-sitter" -version = "0.24.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ac95b18f0f727aaaa012bd5179a1916706ee3ed071920fdbda738750b0c0bf5" -dependencies = [ - "cc", - "regex", - "regex-syntax", - "streaming-iterator", - "tree-sitter-language", -] - -[[package]] -name = "tree-sitter-language" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c199356c799a8945965bb5f2c55b2ad9d9aa7c4b4f6e587fe9dea0bc715e5f9c" - -[[package]] -name = "tree-sitter-python" -version = "0.23.6" -dependencies = [ - "cc", - "tree-sitter", - "tree-sitter-language", -] diff --git a/Package.resolved b/Package.resolved deleted file mode 100644 index 9e0a0239..00000000 --- a/Package.resolved +++ /dev/null @@ -1,16 +0,0 @@ -{ - "object": { - "pins": [ - { - "package": "SwiftTreeSitter", - "repositoryURL": "https://github.com/ChimeHQ/SwiftTreeSitter", - "state": { - "branch": null, - "revision": "2599e95310b3159641469d8a21baf2d3d200e61f", - "version": "0.8.0" - } - } - ] - }, - "version": 1 -} diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index fb1270df..00000000 --- a/package-lock.json +++ /dev/null @@ -1,1486 +0,0 @@ -{ - "name": "tree-sitter-python", - "version": "0.23.6", - "lockfileVersion": 3, - "requires": true, - "packages": { - "": { - "name": "tree-sitter-python", - "version": "0.23.6", - "hasInstallScript": true, - "license": "MIT", - "dependencies": { - "node-addon-api": "^8.3.0", - "node-gyp-build": "^4.8.4" - }, - "devDependencies": { - "eslint": "^9.17.0", - "eslint-config-treesitter": "^1.0.2", - "prebuildify": "^6.0.1", - "tree-sitter-cli": "^0.24.5" - }, - "peerDependencies": { - "tree-sitter": "^0.22.1" - }, - "peerDependenciesMeta": { - "tree-sitter": { - "optional": true - } - } - }, - "node_modules/@es-joy/jsdoccomment": { - "version": "0.49.0", - "resolved": "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.49.0.tgz", - "integrity": "sha512-xjZTSFgECpb9Ohuk5yMX5RhUEbfeQcuOp8IF60e+wyzWEF0M5xeSgqsfLtvPEX8BIyOX9saZqzuGPmZ8oWc+5Q==", - "dev": true, - "dependencies": { - "comment-parser": "1.4.1", - "esquery": "^1.6.0", - "jsdoc-type-pratt-parser": "~4.1.0" - }, - "engines": { - "node": ">=16" - } - }, - "node_modules/@eslint-community/eslint-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", - "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", - "dev": true, - "dependencies": { - "eslint-visitor-keys": "^3.3.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" - } - }, - "node_modules/@eslint-community/regexpp": { - "version": "4.12.1", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", - "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", - "dev": true, - "engines": { - "node": "^12.0.0 || ^14.0.0 || >=16.0.0" - } - }, - "node_modules/@eslint/config-array": { - "version": "0.19.0", - "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.19.0.tgz", - "integrity": "sha512-zdHg2FPIFNKPdcHWtiNT+jEFCHYVplAXRDlQDyqy0zGx/q2parwh7brGJSiTxRk/TSMkbM//zt/f5CHgyTyaSQ==", - "dev": true, - "dependencies": { - "@eslint/object-schema": "^2.1.4", - "debug": "^4.3.1", - "minimatch": "^3.1.2" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - } - }, - "node_modules/@eslint/core": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.9.0.tgz", - "integrity": "sha512-7ATR9F0e4W85D/0w7cU0SNj7qkAexMG+bAHEZOjo9akvGuhHE2m7umzWzfnpa0XAg5Kxc1BWmtPMV67jJ+9VUg==", - "dev": true, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - } - }, - "node_modules/@eslint/eslintrc": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.2.0.tgz", - "integrity": "sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==", - "dev": true, - "dependencies": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^10.0.1", - "globals": "^14.0.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/@eslint/js": { - "version": "9.17.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.17.0.tgz", - "integrity": "sha512-Sxc4hqcs1kTu0iID3kcZDW3JHq2a77HO9P8CP6YEA/FpH3Ll8UXE2r/86Rz9YJLKme39S9vU5OWNjC6Xl0Cr3w==", - "dev": true, - "license": "MIT", - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - } - }, - "node_modules/@eslint/object-schema": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.4.tgz", - "integrity": "sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==", - "dev": true, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - } - }, - "node_modules/@eslint/plugin-kit": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.3.tgz", - "integrity": "sha512-2b/g5hRmpbb1o4GnTZax9N9m0FXzz9OV42ZzI4rDDMDuHUqigAiQCEWChBWCY4ztAGVRjoWT19v0yMmc5/L5kA==", - "dev": true, - "dependencies": { - "levn": "^0.4.1" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - } - }, - "node_modules/@humanfs/core": { - "version": "0.19.1", - "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", - "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", - "dev": true, - "engines": { - "node": ">=18.18.0" - } - }, - "node_modules/@humanfs/node": { - "version": "0.16.6", - "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz", - "integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==", - "dev": true, - "dependencies": { - "@humanfs/core": "^0.19.1", - "@humanwhocodes/retry": "^0.3.0" - }, - "engines": { - "node": ">=18.18.0" - } - }, - "node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz", - "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==", - "dev": true, - "engines": { - "node": ">=18.18" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/nzakas" - } - }, - "node_modules/@humanwhocodes/module-importer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", - "dev": true, - "engines": { - "node": ">=12.22" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/nzakas" - } - }, - "node_modules/@humanwhocodes/retry": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.1.tgz", - "integrity": "sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==", - "dev": true, - "engines": { - "node": ">=18.18" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/nzakas" - } - }, - "node_modules/@pkgr/core": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.1.1.tgz", - "integrity": "sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==", - "dev": true, - "engines": { - "node": "^12.20.0 || ^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/unts" - } - }, - "node_modules/@types/estree": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", - "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", - "dev": true - }, - "node_modules/@types/json-schema": { - "version": "7.0.15", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", - "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", - "dev": true - }, - "node_modules/acorn": { - "version": "8.14.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", - "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", - "dev": true, - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "dev": true, - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" - } - }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/are-docs-informative": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/are-docs-informative/-/are-docs-informative-0.0.2.tgz", - "integrity": "sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==", - "dev": true, - "engines": { - "node": ">=14" - } - }, - "node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true - }, - "node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", - "dev": true, - "dependencies": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - } - }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/chownr": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", - "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", - "dev": true - }, - "node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/comment-parser": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/comment-parser/-/comment-parser-1.4.1.tgz", - "integrity": "sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==", - "dev": true, - "engines": { - "node": ">= 12.0.0" - } - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true - }, - "node_modules/cross-spawn": { - "version": "7.0.6", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", - "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", - "dev": true, - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/debug": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", - "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.3" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true - }, - "node_modules/end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "dev": true, - "dependencies": { - "once": "^1.4.0" - } - }, - "node_modules/es-module-lexer": { - "version": "1.5.4", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz", - "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==", - "dev": true - }, - "node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint": { - "version": "9.17.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.17.0.tgz", - "integrity": "sha512-evtlNcpJg+cZLcnVKwsai8fExnqjGPicK7gnUtlNuzu+Fv9bI0aLpND5T44VLQtoMEnI57LoXO9XAkIXwohKrA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.12.1", - "@eslint/config-array": "^0.19.0", - "@eslint/core": "^0.9.0", - "@eslint/eslintrc": "^3.2.0", - "@eslint/js": "9.17.0", - "@eslint/plugin-kit": "^0.2.3", - "@humanfs/node": "^0.16.6", - "@humanwhocodes/module-importer": "^1.0.1", - "@humanwhocodes/retry": "^0.4.1", - "@types/estree": "^1.0.6", - "@types/json-schema": "^7.0.15", - "ajv": "^6.12.4", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.6", - "debug": "^4.3.2", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^8.2.0", - "eslint-visitor-keys": "^4.2.0", - "espree": "^10.3.0", - "esquery": "^1.5.0", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^8.0.0", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "ignore": "^5.2.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.3" - }, - "bin": { - "eslint": "bin/eslint.js" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "url": "https://eslint.org/donate" - }, - "peerDependencies": { - "jiti": "*" - }, - "peerDependenciesMeta": { - "jiti": { - "optional": true - } - } - }, - "node_modules/eslint-config-treesitter": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/eslint-config-treesitter/-/eslint-config-treesitter-1.0.2.tgz", - "integrity": "sha512-OkzjA0oaNgYUFkGmo9T2cvRE7cxzh1dgSt0laO8Hdcypp9di8lebldoPivALXFusRb7s54J5exIw1w7l+g85Rg==", - "dev": true, - "dependencies": { - "eslint-plugin-jsdoc": "^50.2.4" - }, - "peerDependencies": { - "eslint": ">= 9" - } - }, - "node_modules/eslint-plugin-jsdoc": { - "version": "50.4.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.4.1.tgz", - "integrity": "sha512-OXIq+JJQPCLAKL473/esioFOwbXyRE5MAQ4HbZjcp3e+K3zdxt2uDpGs3FR+WezUXNStzEtTfgx15T+JFrVwBA==", - "dev": true, - "dependencies": { - "@es-joy/jsdoccomment": "~0.49.0", - "are-docs-informative": "^0.0.2", - "comment-parser": "1.4.1", - "debug": "^4.3.6", - "escape-string-regexp": "^4.0.0", - "espree": "^10.1.0", - "esquery": "^1.6.0", - "parse-imports": "^2.1.1", - "semver": "^7.6.3", - "spdx-expression-parse": "^4.0.0", - "synckit": "^0.9.1" - }, - "engines": { - "node": ">=18" - }, - "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0 || ^9.0.0" - } - }, - "node_modules/eslint-scope": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.2.0.tgz", - "integrity": "sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==", - "dev": true, - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint-visitor-keys": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", - "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint/node_modules/eslint-visitor-keys": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", - "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", - "dev": true, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/espree": { - "version": "10.3.0", - "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz", - "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==", - "dev": true, - "dependencies": { - "acorn": "^8.14.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^4.2.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/espree/node_modules/eslint-visitor-keys": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", - "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", - "dev": true, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/esquery": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", - "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", - "dev": true, - "dependencies": { - "estraverse": "^5.1.0" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dev": true, - "dependencies": { - "estraverse": "^5.2.0" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true - }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true - }, - "node_modules/file-entry-cache": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", - "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", - "dev": true, - "dependencies": { - "flat-cache": "^4.0.0" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/flat-cache": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", - "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", - "dev": true, - "dependencies": { - "flatted": "^3.2.9", - "keyv": "^4.5.4" - }, - "engines": { - "node": ">=16" - } - }, - "node_modules/flatted": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", - "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", - "dev": true - }, - "node_modules/fs-constants": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", - "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", - "dev": true - }, - "node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.3" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/globals": { - "version": "14.0.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", - "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", - "dev": true, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/ignore": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", - "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", - "dev": true, - "engines": { - "node": ">= 4" - } - }, - "node_modules/import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "dev": true, - "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true, - "engines": { - "node": ">=0.8.19" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true - }, - "node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/jsdoc-type-pratt-parser": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-4.1.0.tgz", - "integrity": "sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==", - "dev": true, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true - }, - "node_modules/keyv": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", - "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", - "dev": true, - "dependencies": { - "json-buffer": "3.0.1" - } - }, - "node_modules/levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "dev": true, - "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true - }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/mkdirp-classic": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", - "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", - "dev": true - }, - "node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - }, - "node_modules/natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true - }, - "node_modules/node-abi": { - "version": "3.67.0", - "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.67.0.tgz", - "integrity": "sha512-bLn/fU/ALVBE9wj+p4Y21ZJWYFjUXLXPi/IewyLZkx3ApxKDNBWCKdReeKOtD8dWpOdDCeMyLh6ZewzcLsG2Nw==", - "dev": true, - "dependencies": { - "semver": "^7.3.5" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/node-addon-api": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-8.3.0.tgz", - "integrity": "sha512-8VOpLHFrOQlAH+qA0ZzuGRlALRA6/LVh8QJldbrC4DY0hXoMP0l4Acq8TzFC018HztWiRqyCEj2aTWY2UvnJUg==", - "engines": { - "node": "^18 || ^20 || >= 21" - } - }, - "node_modules/node-gyp-build": { - "version": "4.8.4", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.4.tgz", - "integrity": "sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==", - "bin": { - "node-gyp-build": "bin.js", - "node-gyp-build-optional": "optional.js", - "node-gyp-build-test": "build-test.js" - } - }, - "node_modules/npm-run-path": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-3.1.0.tgz", - "integrity": "sha512-Dbl4A/VfiVGLgQv29URL9xshU8XDY1GeLy+fsaZ1AA8JDSfjvr5P5+pzRbWqRSBxk6/DW7MIh8lTM/PaGnP2kg==", - "dev": true, - "dependencies": { - "path-key": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dev": true, - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/optionator": { - "version": "0.9.4", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", - "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", - "dev": true, - "dependencies": { - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0", - "word-wrap": "^1.2.5" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "dev": true, - "dependencies": { - "callsites": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/parse-imports": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/parse-imports/-/parse-imports-2.2.1.tgz", - "integrity": "sha512-OL/zLggRp8mFhKL0rNORUTR4yBYujK/uU+xZL+/0Rgm2QE4nLO9v8PzEweSJEbMGKmDRjJE4R3IMJlL2di4JeQ==", - "dev": true, - "dependencies": { - "es-module-lexer": "^1.5.3", - "slashes": "^3.0.12" - }, - "engines": { - "node": ">= 18" - } - }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/prebuildify": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/prebuildify/-/prebuildify-6.0.1.tgz", - "integrity": "sha512-8Y2oOOateom/s8dNBsGIcnm6AxPmLH4/nanQzL5lQMU+sC0CMhzARZHizwr36pUPLdvBnOkCNQzxg4djuFSgIw==", - "dev": true, - "dependencies": { - "minimist": "^1.2.5", - "mkdirp-classic": "^0.5.3", - "node-abi": "^3.3.0", - "npm-run-path": "^3.1.0", - "pump": "^3.0.0", - "tar-fs": "^2.1.0" - }, - "bin": { - "prebuildify": "bin.js" - } - }, - "node_modules/prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "dev": true, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "dev": true, - "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "node_modules/punycode": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", - "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/semver": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", - "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/slashes": { - "version": "3.0.12", - "resolved": "https://registry.npmjs.org/slashes/-/slashes-3.0.12.tgz", - "integrity": "sha512-Q9VME8WyGkc7pJf6QEkj3wE+2CnvZMI+XJhwdTPR8Z/kWQRXi7boAWLDibRPyHRTUTPx5FaU7MsyrjI3yLB4HA==", - "dev": true - }, - "node_modules/spdx-exceptions": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", - "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", - "dev": true - }, - "node_modules/spdx-expression-parse": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-4.0.0.tgz", - "integrity": "sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==", - "dev": true, - "dependencies": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" - } - }, - "node_modules/spdx-license-ids": { - "version": "3.0.20", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.20.tgz", - "integrity": "sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==", - "dev": true - }, - "node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dev": true, - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, - "node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/synckit": { - "version": "0.9.2", - "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.9.2.tgz", - "integrity": "sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==", - "dev": true, - "dependencies": { - "@pkgr/core": "^0.1.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/unts" - } - }, - "node_modules/tar-fs": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", - "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", - "dev": true, - "dependencies": { - "chownr": "^1.1.1", - "mkdirp-classic": "^0.5.2", - "pump": "^3.0.0", - "tar-stream": "^2.1.4" - } - }, - "node_modules/tar-stream": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", - "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", - "dev": true, - "dependencies": { - "bl": "^4.0.3", - "end-of-stream": "^1.4.1", - "fs-constants": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/tree-sitter": { - "version": "0.22.1", - "resolved": "https://registry.npmjs.org/tree-sitter/-/tree-sitter-0.22.1.tgz", - "integrity": "sha512-gRO+jk2ljxZlIn20QRskIvpLCMtzuLl5T0BY6L9uvPYD17uUrxlxWkvYCiVqED2q2q7CVtY52Uex4WcYo2FEXw==", - "hasInstallScript": true, - "optional": true, - "peer": true, - "dependencies": { - "node-addon-api": "^8.2.1", - "node-gyp-build": "^4.8.2" - } - }, - "node_modules/tree-sitter-cli": { - "version": "0.24.5", - "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.24.5.tgz", - "integrity": "sha512-8EIgV/ERQlpvk1rPSCCjxveAb6Sba8tMiBpeeL68Mueuuqr0wNfhps/I1nFm2OTnpPCUV2PS9nbzzAMoyxSQUg==", - "dev": true, - "hasInstallScript": true, - "license": "MIT", - "bin": { - "tree-sitter": "cli.js" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/tslib": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", - "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==", - "dev": true - }, - "node_modules/type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "dev": true, - "dependencies": { - "prelude-ls": "^1.2.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dev": true, - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "dev": true - }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/word-wrap": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", - "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true - }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - } - } -} From b16a600e699e0849f3c53ce15aaa9b03f98fc28b Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Wed, 28 May 2025 11:30:09 -0700 Subject: [PATCH 6/8] Generate with abi version 14 for now --- src/parser.c | 86 ++-------------------------------------------------- 1 file changed, 3 insertions(+), 83 deletions(-) diff --git a/src/parser.c b/src/parser.c index aa49c4c2..1ed48d94 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,7 +6,7 @@ #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#define LANGUAGE_VERSION 15 +#define LANGUAGE_VERSION 14 #define STATE_COUNT 2777 #define LARGE_STATE_COUNT 181 #define SYMBOL_COUNT 272 @@ -17,7 +17,7 @@ #define MAX_ALIAS_SEQUENCE_LENGTH 10 #define MAX_RESERVED_WORD_SET_SIZE 0 #define PRODUCTION_ID_COUNT 142 -#define SUPERTYPE_COUNT 4 +#define SUPERTYPE_COUNT 0 enum ts_symbol_identifiers { sym_identifier = 1, @@ -5556,75 +5556,6 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2776] = 2707, }; -static const TSSymbol ts_supertype_symbols[SUPERTYPE_COUNT] = { - sym_expression, - sym_parameter, - sym_pattern, - sym_primary_expression, -}; - -static const TSMapSlice ts_supertype_map_slices[] = { - [sym_expression] = {.index = 0, .length = 8}, - [sym_parameter] = {.index = 8, .length = 9}, - [sym_pattern] = {.index = 17, .length = 6}, - [sym_primary_expression] = {.index = 23, .length = 25}, -}; - -static const TSSymbol ts_supertype_map_entries[] = { - [0] = - sym_as_pattern, - sym_boolean_operator, - sym_comparison_operator, - sym_conditional_expression, - sym_lambda, - sym_named_expression, - sym_not_operator, - sym_primary_expression, - [8] = - sym_default_parameter, - sym_dictionary_splat_pattern, - sym_identifier, - sym_keyword_separator, - sym_list_splat_pattern, - sym_positional_separator, - sym_tuple_pattern, - sym_typed_default_parameter, - sym_typed_parameter, - [17] = - sym_attribute, - sym_identifier, - sym_list_pattern, - sym_list_splat_pattern, - sym_subscript, - sym_tuple_pattern, - [23] = - sym_attribute, - sym_await, - sym_binary_operator, - sym_call, - sym_concatenated_string, - sym_dictionary, - sym_dictionary_comprehension, - sym_ellipsis, - sym_false, - sym_float, - sym_generator_expression, - sym_identifier, - sym_integer, - sym_list, - sym_list_comprehension, - sym_list_splat, - sym_none, - sym_parenthesized_expression, - sym_set, - sym_set_comprehension, - sym_string, - sym_subscript, - sym_true, - sym_tuple, - sym_unary_operator, -}; - static const TSCharacterRange sym_identifier_character_set_1[] = { {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xba, 0xba}, {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x370, 0x374}, {0x376, 0x377}, {0x37b, 0x37d}, @@ -7462,7 +7393,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { } } -static const TSLexerMode ts_lex_modes[STATE_COUNT] = { +static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, [1] = {.lex_state = 52, .external_lex_state = 2}, [2] = {.lex_state = 52, .external_lex_state = 3}, @@ -128619,7 +128550,6 @@ TS_PUBLIC const TSLanguage *tree_sitter_python(void) { .state_count = STATE_COUNT, .large_state_count = LARGE_STATE_COUNT, .production_id_count = PRODUCTION_ID_COUNT, - .supertype_count = SUPERTYPE_COUNT, .field_count = FIELD_COUNT, .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, .parse_table = &ts_parse_table[0][0], @@ -128630,9 +128560,6 @@ TS_PUBLIC const TSLanguage *tree_sitter_python(void) { .field_names = ts_field_names, .field_map_slices = ts_field_map_slices, .field_map_entries = ts_field_map_entries, - .supertype_map_slices = ts_supertype_map_slices, - .supertype_map_entries = ts_supertype_map_entries, - .supertype_symbols = ts_supertype_symbols, .symbol_metadata = ts_symbol_metadata, .public_symbol_map = ts_symbol_map, .alias_map = ts_non_terminal_alias_map, @@ -128651,13 +128578,6 @@ TS_PUBLIC const TSLanguage *tree_sitter_python(void) { tree_sitter_python_external_scanner_deserialize, }, .primary_state_ids = ts_primary_state_ids, - .name = "python", - .max_reserved_word_set_size = 0, - .metadata = { - .major_version = 0, - .minor_version = 23, - .patch_version = 6, - }, }; return &language; } From 49a5d6c9dc43cfea59b1dfe3c9dd8b52e1028df3 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Wed, 28 May 2025 11:43:36 -0700 Subject: [PATCH 7/8] Disable generated parser validation for now (since we're using --abi=14) --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 77d10313..fda5dd2b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,6 +43,7 @@ jobs: - name: Run tests uses: tree-sitter/parser-test-action@v2 with: + generate: false test-rust: true test-node: true test-python: true From 136dda3261823425adfe72332684d37dd2fb8cec Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Wed, 28 May 2025 11:53:14 -0700 Subject: [PATCH 8/8] Bump parser test action --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fda5dd2b..6cee76e8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,7 +41,7 @@ jobs: git clone https://github.com/pallets/flask examples/flask --single-branch --depth=1 --filter=blob:none git clone https://github.com/python/cpython examples/cpython --single-branch --depth=1 --filter=blob:none - name: Run tests - uses: tree-sitter/parser-test-action@v2 + uses: tree-sitter/parser-test-action@v3-pre with: generate: false test-rust: true