diff --git a/grammar.js b/grammar.js index 4378d356..aa22dae5 100644 --- a/grammar.js +++ b/grammar.js @@ -354,19 +354,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 ccd99e81..b6c652e7 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" } ] } diff --git a/src/node-types.json b/src/node-types.json index 39273b76..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", diff --git a/src/parser.c b/src/parser.c index 0ca6b85f..557fa32e 100644 --- a/src/parser.c +++ b/src/parser.c @@ -7,9 +7,9 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 2789 -#define LARGE_STATE_COUNT 184 -#define SYMBOL_COUNT 273 +#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 @@ -271,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[] = { @@ -549,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", @@ -827,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, @@ -1865,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, @@ -2045,49 +2038,49 @@ static const TSMapSlice 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}, @@ -2262,66 +2255,66 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_body, 3}, {field_condition, 1}, [57] = + {field_body, 2}, {field_body, 3}, - [58] = + [59] = + {field_body, 3}, + [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}, @@ -2642,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] = { @@ -2787,7 +2780,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 2, + [3] = 3, [4] = 4, [5] = 5, [6] = 6, @@ -2812,692 +2805,692 @@ 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] = 4, - [36] = 5, - [37] = 6, - [38] = 7, - [39] = 8, - [40] = 9, - [41] = 10, - [42] = 11, - [43] = 12, - [44] = 13, - [45] = 14, - [46] = 15, - [47] = 16, - [48] = 17, - [49] = 18, - [50] = 19, - [51] = 20, - [52] = 21, - [53] = 22, - [54] = 24, - [55] = 25, - [56] = 28, - [57] = 29, - [58] = 30, - [59] = 59, - [60] = 34, - [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, + [64] = 62, + [65] = 65, + [66] = 65, [67] = 62, [68] = 62, [69] = 62, - [70] = 63, + [70] = 70, [71] = 71, [72] = 72, [73] = 73, [74] = 74, [75] = 75, - [76] = 76, - [77] = 74, - [78] = 73, - [79] = 75, - [80] = 76, - [81] = 81, - [82] = 81, - [83] = 83, - [84] = 83, + [76] = 72, + [77] = 75, + [78] = 74, + [79] = 73, + [80] = 80, + [81] = 80, + [82] = 82, + [83] = 82, + [84] = 84, [85] = 85, - [86] = 86, + [86] = 84, [87] = 87, [88] = 88, - [89] = 86, + [89] = 89, [90] = 90, - [91] = 90, + [91] = 91, [92] = 92, [93] = 93, - [94] = 85, - [95] = 92, + [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] = 106, [107] = 107, - [108] = 105, - [109] = 98, - [110] = 93, - [111] = 87, + [108] = 104, + [109] = 109, + [110] = 105, + [111] = 111, [112] = 112, - [113] = 97, - [114] = 114, + [113] = 113, + [114] = 106, [115] = 115, [116] = 116, - [117] = 99, - [118] = 118, - [119] = 88, - [120] = 112, - [121] = 121, - [122] = 100, - [123] = 102, - [124] = 103, + [117] = 107, + [118] = 85, + [119] = 119, + [120] = 120, + [121] = 109, + [122] = 92, + [123] = 123, + [124] = 111, [125] = 125, - [126] = 126, - [127] = 121, - [128] = 114, + [126] = 93, + [127] = 113, + [128] = 115, [129] = 129, - [130] = 101, - [131] = 106, - [132] = 125, - [133] = 129, - [134] = 96, + [130] = 120, + [131] = 88, + [132] = 95, + [133] = 119, + [134] = 134, [135] = 135, [136] = 135, - [137] = 135, - [138] = 138, - [139] = 138, + [137] = 134, + [138] = 134, + [139] = 135, [140] = 135, - [141] = 138, - [142] = 135, - [143] = 138, - [144] = 138, - [145] = 135, - [146] = 138, + [141] = 134, + [142] = 134, + [143] = 135, + [144] = 144, + [145] = 145, + [146] = 145, [147] = 147, [148] = 148, [149] = 148, [150] = 150, - [151] = 151, - [152] = 152, - [153] = 151, - [154] = 150, + [151] = 147, + [152] = 145, + [153] = 147, + [154] = 148, [155] = 148, - [156] = 150, - [157] = 151, - [158] = 158, - [159] = 151, + [156] = 148, + [157] = 147, + [158] = 150, + [159] = 148, [160] = 160, [161] = 160, - [162] = 151, - [163] = 150, - [164] = 151, - [165] = 152, - [166] = 152, - [167] = 158, - [168] = 151, - [169] = 152, - [170] = 170, - [171] = 160, - [172] = 148, - [173] = 150, - [174] = 150, - [175] = 151, - [176] = 152, - [177] = 148, - [178] = 152, - [179] = 152, - [180] = 152, - [181] = 150, - [182] = 170, - [183] = 183, + [162] = 162, + [163] = 148, + [164] = 160, + [165] = 145, + [166] = 150, + [167] = 145, + [168] = 162, + [169] = 169, + [170] = 150, + [171] = 150, + [172] = 147, + [173] = 147, + [174] = 148, + [175] = 150, + [176] = 150, + [177] = 150, + [178] = 169, + [179] = 147, + [180] = 180, + [181] = 181, + [182] = 182, + [183] = 182, [184] = 184, - [185] = 184, - [186] = 184, - [187] = 187, - [188] = 188, - [189] = 184, - [190] = 187, - [191] = 188, - [192] = 187, - [193] = 188, - [194] = 184, - [195] = 184, - [196] = 196, - [197] = 197, - [198] = 187, - [199] = 188, - [200] = 184, - [201] = 188, - [202] = 187, - [203] = 187, - [204] = 188, - [205] = 187, - [206] = 188, - [207] = 184, - [208] = 187, - [209] = 188, - [210] = 188, - [211] = 188, - [212] = 212, - [213] = 213, - [214] = 187, - [215] = 188, - [216] = 197, + [185] = 185, + [186] = 186, + [187] = 185, + [188] = 182, + [189] = 189, + [190] = 185, + [191] = 189, + [192] = 185, + [193] = 182, + [194] = 189, + [195] = 182, + [196] = 185, + [197] = 182, + [198] = 189, + [199] = 199, + [200] = 189, + [201] = 185, + [202] = 182, + [203] = 189, + [204] = 185, + [205] = 182, + [206] = 189, + [207] = 185, + [208] = 182, + [209] = 189, + [210] = 185, + [211] = 182, + [212] = 182, + [213] = 186, + [214] = 214, + [215] = 215, + [216] = 216, [217] = 217, - [218] = 218, - [219] = 219, + [218] = 217, + [219] = 217, [220] = 220, - [221] = 219, - [222] = 222, + [221] = 220, + [222] = 217, [223] = 220, [224] = 220, - [225] = 222, - [226] = 219, - [227] = 219, - [228] = 220, + [225] = 216, + [226] = 226, + [227] = 227, + [228] = 228, [229] = 229, - [230] = 230, + [230] = 228, [231] = 231, [232] = 232, [233] = 233, - [234] = 234, - [235] = 233, - [236] = 236, + [234] = 214, + [235] = 235, + [236] = 215, [237] = 237, [238] = 238, - [239] = 232, - [240] = 231, - [241] = 233, + [239] = 235, + [240] = 240, + [241] = 241, [242] = 232, - [243] = 243, + [243] = 228, [244] = 244, [245] = 245, - [246] = 232, - [247] = 232, + [246] = 235, + [247] = 235, [248] = 248, - [249] = 217, - [250] = 232, - [251] = 251, - [252] = 252, - [253] = 231, - [254] = 232, - [255] = 233, + [249] = 235, + [250] = 227, + [251] = 227, + [252] = 235, + [253] = 228, + [254] = 235, + [255] = 235, [256] = 256, - [257] = 229, - [258] = 231, - [259] = 229, - [260] = 229, - [261] = 232, - [262] = 237, - [263] = 245, - [264] = 248, - [265] = 234, - [266] = 218, + [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] = 268, - [271] = 269, - [272] = 272, - [273] = 272, - [274] = 274, - [275] = 275, - [276] = 276, - [277] = 267, - [278] = 274, - [279] = 275, - [280] = 268, - [281] = 269, - [282] = 272, - [283] = 274, - [284] = 275, - [285] = 276, - [286] = 267, - [287] = 268, - [288] = 269, - [289] = 272, - [290] = 276, - [291] = 272, - [292] = 276, - [293] = 274, - [294] = 275, - [295] = 276, - [296] = 267, - [297] = 267, - [298] = 268, - [299] = 269, - [300] = 272, - [301] = 274, - [302] = 275, - [303] = 276, - [304] = 274, - [305] = 275, - [306] = 268, - [307] = 269, - [308] = 274, - [309] = 275, - [310] = 276, - [311] = 267, - [312] = 268, - [313] = 269, - [314] = 274, - [315] = 275, - [316] = 276, - [317] = 267, - [318] = 268, - [319] = 269, - [320] = 267, - [321] = 170, + [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] = 325, + [325] = 319, [326] = 322, - [327] = 327, - [328] = 328, - [329] = 329, - [330] = 325, - [331] = 329, - [332] = 324, + [327] = 318, + [328] = 319, + [329] = 323, + [330] = 330, + [331] = 324, + [332] = 323, [333] = 333, - [334] = 323, - [335] = 324, - [336] = 323, - [337] = 337, - [338] = 328, - [339] = 329, - [340] = 328, - [341] = 325, - [342] = 322, + [334] = 321, + [335] = 335, + [336] = 324, + [337] = 322, + [338] = 318, + [339] = 321, + [340] = 256, + [341] = 341, + [342] = 342, [343] = 343, - [344] = 344, - [345] = 344, - [346] = 344, - [347] = 347, - [348] = 344, - [349] = 343, - [350] = 343, - [351] = 344, - [352] = 352, - [353] = 344, - [354] = 347, - [355] = 343, - [356] = 344, - [357] = 343, - [358] = 256, - [359] = 343, - [360] = 347, - [361] = 344, - [362] = 343, - [363] = 256, - [364] = 343, - [365] = 256, - [366] = 366, - [367] = 366, - [368] = 368, + [344] = 342, + [345] = 343, + [346] = 256, + [347] = 256, + [348] = 341, + [349] = 341, + [350] = 342, + [351] = 351, + [352] = 341, + [353] = 342, + [354] = 341, + [355] = 342, + [356] = 341, + [357] = 342, + [358] = 342, + [359] = 341, + [360] = 343, + [361] = 341, + [362] = 342, + [363] = 363, + [364] = 364, + [365] = 365, + [366] = 364, + [367] = 364, + [368] = 363, [369] = 369, [370] = 370, - [371] = 368, - [372] = 368, - [373] = 368, - [374] = 368, - [375] = 375, - [376] = 337, - [377] = 368, - [378] = 368, - [379] = 375, - [380] = 375, - [381] = 366, - [382] = 366, - [383] = 150, - [384] = 368, - [385] = 375, - [386] = 366, - [387] = 375, - [388] = 368, - [389] = 375, - [390] = 366, - [391] = 366, - [392] = 375, - [393] = 393, - [394] = 366, - [395] = 395, - [396] = 368, - [397] = 375, - [398] = 375, - [399] = 366, - [400] = 366, - [401] = 375, - [402] = 333, - [403] = 403, + [371] = 333, + [372] = 147, + [373] = 373, + [374] = 374, + [375] = 364, + [376] = 363, + [377] = 369, + [378] = 378, + [379] = 335, + [380] = 364, + [381] = 363, + [382] = 369, + [383] = 364, + [384] = 364, + [385] = 363, + [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] = 169, [404] = 404, - [405] = 170, + [405] = 405, [406] = 406, - [407] = 407, - [408] = 333, - [409] = 409, - [410] = 337, - [411] = 150, - [412] = 170, + [407] = 333, + [408] = 408, + [409] = 401, + [410] = 410, + [411] = 411, + [412] = 412, [413] = 413, - [414] = 333, - [415] = 337, - [416] = 170, + [414] = 335, + [415] = 413, + [416] = 416, [417] = 417, [418] = 418, - [419] = 419, + [419] = 402, [420] = 420, - [421] = 420, + [421] = 405, [422] = 422, [423] = 423, [424] = 424, - [425] = 425, - [426] = 426, - [427] = 427, - [428] = 403, - [429] = 422, - [430] = 430, - [431] = 420, - [432] = 422, - [433] = 424, - [434] = 427, + [425] = 169, + [426] = 417, + [427] = 405, + [428] = 418, + [429] = 429, + [430] = 422, + [431] = 411, + [432] = 420, + [433] = 420, + [434] = 434, [435] = 435, - [436] = 436, - [437] = 424, + [436] = 411, + [437] = 437, [438] = 438, [439] = 439, - [440] = 427, - [441] = 441, - [442] = 442, - [443] = 404, - [444] = 430, - [445] = 430, - [446] = 430, - [447] = 430, - [448] = 430, - [449] = 430, - [450] = 430, - [451] = 430, - [452] = 430, - [453] = 441, - [454] = 413, - [455] = 404, - [456] = 456, - [457] = 457, - [458] = 333, - [459] = 337, - [460] = 460, + [440] = 410, + [441] = 333, + [442] = 147, + [443] = 378, + [444] = 401, + [445] = 422, + [446] = 401, + [447] = 447, + [448] = 401, + [449] = 335, + [450] = 401, + [451] = 401, + [452] = 401, + [453] = 401, + [454] = 401, + [455] = 169, + [456] = 439, + [457] = 424, + [458] = 458, + [459] = 459, + [460] = 402, [461] = 461, - [462] = 461, - [463] = 456, + [462] = 462, + [463] = 463, [464] = 464, - [465] = 460, - [466] = 457, - [467] = 467, - [468] = 468, - [469] = 464, - [470] = 470, - [471] = 467, - [472] = 472, - [473] = 472, - [474] = 468, - [475] = 475, - [476] = 476, + [465] = 465, + [466] = 466, + [467] = 462, + [468] = 333, + [469] = 469, + [470] = 463, + [471] = 469, + [472] = 335, + [473] = 473, + [474] = 461, + [475] = 464, + [476] = 473, [477] = 477, - [478] = 478, - [479] = 479, + [478] = 466, + [479] = 477, [480] = 480, [481] = 481, [482] = 482, - [483] = 476, - [484] = 477, - [485] = 478, - [486] = 479, - [487] = 480, - [488] = 481, - [489] = 482, - [490] = 476, - [491] = 477, + [483] = 483, + [484] = 484, + [485] = 485, + [486] = 486, + [487] = 487, + [488] = 488, + [489] = 489, + [490] = 490, + [491] = 491, [492] = 492, - [493] = 492, + [493] = 493, [494] = 494, - [495] = 477, - [496] = 496, - [497] = 497, - [498] = 498, - [499] = 499, - [500] = 496, + [495] = 484, + [496] = 485, + [497] = 486, + [498] = 487, + [499] = 488, + [500] = 500, [501] = 501, - [502] = 502, - [503] = 475, - [504] = 476, - [505] = 505, - [506] = 506, - [507] = 507, - [508] = 508, - [509] = 477, - [510] = 478, - [511] = 511, - [512] = 478, - [513] = 513, - [514] = 514, - [515] = 515, - [516] = 514, - [517] = 515, - [518] = 479, - [519] = 479, - [520] = 480, - [521] = 478, - [522] = 479, - [523] = 480, - [524] = 513, - [525] = 525, - [526] = 481, - [527] = 480, - [528] = 481, - [529] = 482, - [530] = 482, - [531] = 475, - [532] = 511, - [533] = 533, + [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] = 494, - [536] = 477, - [537] = 476, - [538] = 533, + [535] = 535, + [536] = 536, + [537] = 537, + [538] = 538, [539] = 539, [540] = 540, - [541] = 481, - [542] = 542, - [543] = 478, + [541] = 500, + [542] = 538, + [543] = 504, [544] = 544, - [545] = 511, - [546] = 533, - [547] = 505, + [545] = 544, + [546] = 485, + [547] = 547, [548] = 494, - [549] = 475, - [550] = 476, - [551] = 511, - [552] = 477, - [553] = 492, - [554] = 494, - [555] = 492, - [556] = 494, - [557] = 557, - [558] = 482, - [559] = 533, - [560] = 533, + [549] = 537, + [550] = 486, + [551] = 487, + [552] = 552, + [553] = 488, + [554] = 535, + [555] = 489, + [556] = 536, + [557] = 537, + [558] = 544, + [559] = 559, + [560] = 492, [561] = 561, [562] = 562, - [563] = 492, - [564] = 479, - [565] = 476, - [566] = 566, - [567] = 494, - [568] = 492, - [569] = 480, - [570] = 570, - [571] = 481, - [572] = 477, - [573] = 573, - [574] = 525, - [575] = 478, - [576] = 478, - [577] = 479, - [578] = 525, - [579] = 479, + [563] = 535, + [564] = 489, + [565] = 536, + [566] = 537, + [567] = 567, + [568] = 484, + [569] = 535, + [570] = 544, + [571] = 485, + [572] = 486, + [573] = 487, + [574] = 488, + [575] = 536, + [576] = 537, + [577] = 489, + [578] = 536, + [579] = 579, [580] = 580, - [581] = 525, - [582] = 480, - [583] = 525, - [584] = 480, - [585] = 525, - [586] = 481, - [587] = 525, - [588] = 482, - [589] = 525, - [590] = 482, - [591] = 591, - [592] = 476, - [593] = 573, - [594] = 561, - [595] = 499, - [596] = 502, + [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] = 482, - [599] = 591, - [600] = 507, + [598] = 567, + [599] = 599, + [600] = 552, [601] = 601, - [602] = 501, - [603] = 539, - [604] = 492, + [602] = 580, + [603] = 501, + [604] = 604, [605] = 605, [606] = 606, [607] = 607, - [608] = 608, + [608] = 607, [609] = 609, - [610] = 607, - [611] = 606, + [610] = 610, + [611] = 609, [612] = 612, [613] = 613, - [614] = 614, - [615] = 608, - [616] = 612, - [617] = 613, + [614] = 606, + [615] = 605, + [616] = 613, + [617] = 610, [618] = 618, - [619] = 614, + [619] = 619, [620] = 620, - [621] = 609, - [622] = 620, + [621] = 621, + [622] = 622, [623] = 623, [624] = 624, [625] = 625, [626] = 626, [627] = 627, - [628] = 628, + [628] = 624, [629] = 629, - [630] = 624, + [630] = 621, [631] = 631, [632] = 632, - [633] = 633, + [633] = 627, [634] = 634, [635] = 635, [636] = 636, - [637] = 631, - [638] = 629, - [639] = 628, - [640] = 640, - [641] = 641, - [642] = 642, + [637] = 626, + [638] = 625, + [639] = 639, + [640] = 618, + [641] = 620, + [642] = 636, [643] = 643, - [644] = 642, + [644] = 644, [645] = 645, - [646] = 632, - [647] = 625, - [648] = 623, + [646] = 639, + [647] = 644, + [648] = 648, [649] = 649, [650] = 650, [651] = 651, - [652] = 635, - [653] = 645, - [654] = 629, - [655] = 625, + [652] = 643, + [653] = 648, + [654] = 649, + [655] = 655, [656] = 656, [657] = 657, - [658] = 658, - [659] = 628, + [658] = 656, + [659] = 659, [660] = 660, - [661] = 642, + [661] = 660, [662] = 662, [663] = 663, - [664] = 623, - [665] = 665, - [666] = 660, - [667] = 656, - [668] = 218, - [669] = 669, - [670] = 670, - [671] = 671, - [672] = 625, - [673] = 217, - [674] = 669, - [675] = 670, - [676] = 657, - [677] = 658, - [678] = 623, - [679] = 629, - [680] = 665, - [681] = 671, - [682] = 662, - [683] = 663, - [684] = 628, - [685] = 642, + [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] = 681, + [682] = 682, + [683] = 683, + [684] = 684, + [685] = 685, [686] = 686, [687] = 687, [688] = 688, - [689] = 689, - [690] = 689, + [689] = 682, + [690] = 685, [691] = 691, - [692] = 692, - [693] = 688, - [694] = 692, - [695] = 687, - [696] = 696, + [692] = 681, + [693] = 693, + [694] = 694, + [695] = 695, + [696] = 693, [697] = 697, - [698] = 698, - [699] = 699, - [700] = 696, - [701] = 699, - [702] = 686, - [703] = 691, - [704] = 698, - [705] = 705, - [706] = 697, - [707] = 705, + [698] = 688, + [699] = 695, + [700] = 686, + [701] = 687, + [702] = 697, + [703] = 694, + [704] = 691, + [705] = 684, + [706] = 683, + [707] = 707, [708] = 708, - [709] = 709, - [710] = 708, - [711] = 709, - [712] = 712, - [713] = 712, + [709] = 707, + [710] = 710, + [711] = 710, + [712] = 708, + [713] = 713, [714] = 714, [715] = 715, [716] = 716, @@ -3512,7 +3505,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [725] = 725, [726] = 726, [727] = 727, - [728] = 717, + [728] = 728, [729] = 729, [730] = 730, [731] = 731, @@ -3534,102 +3527,102 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [747] = 747, [748] = 748, [749] = 749, - [750] = 750, - [751] = 751, + [750] = 714, + [751] = 718, [752] = 752, - [753] = 718, + [753] = 753, [754] = 754, [755] = 755, - [756] = 756, - [757] = 730, - [758] = 731, - [759] = 735, - [760] = 736, - [761] = 739, - [762] = 762, - [763] = 746, - [764] = 715, + [756] = 717, + [757] = 727, + [758] = 758, + [759] = 759, + [760] = 760, + [761] = 761, + [762] = 719, + [763] = 742, + [764] = 743, [765] = 765, - [766] = 766, - [767] = 747, - [768] = 768, - [769] = 720, - [770] = 752, + [766] = 765, + [767] = 767, + [768] = 767, + [769] = 769, + [770] = 215, [771] = 771, - [772] = 756, - [773] = 765, - [774] = 734, + [772] = 738, + [773] = 769, + [774] = 774, [775] = 775, - [776] = 749, - [777] = 777, - [778] = 738, - [779] = 779, + [776] = 776, + [777] = 214, + [778] = 778, + [779] = 732, [780] = 780, - [781] = 781, - [782] = 782, - [783] = 783, + [781] = 746, + [782] = 748, + [783] = 753, [784] = 784, - [785] = 762, - [786] = 784, - [787] = 787, - [788] = 771, - [789] = 218, - [790] = 719, - [791] = 742, - [792] = 792, - [793] = 723, - [794] = 716, - [795] = 779, - [796] = 721, - [797] = 722, - [798] = 780, - [799] = 799, - [800] = 725, - [801] = 737, - [802] = 726, - [803] = 782, - [804] = 743, - [805] = 744, - [806] = 745, - [807] = 775, - [808] = 729, - [809] = 732, - [810] = 733, - [811] = 787, - [812] = 783, - [813] = 813, - [814] = 766, - [815] = 217, - [816] = 748, - [817] = 817, - [818] = 818, - [819] = 818, - [820] = 740, - [821] = 750, - [822] = 754, - [823] = 724, - [824] = 813, - [825] = 792, - [826] = 714, - [827] = 727, - [828] = 781, - [829] = 741, - [830] = 777, - [831] = 751, - [832] = 777, - [833] = 751, - [834] = 755, - [835] = 768, - [836] = 817, - [837] = 799, - [838] = 838, - [839] = 838, - [840] = 838, - [841] = 838, - [842] = 838, - [843] = 838, - [844] = 844, - [845] = 844, + [785] = 760, + [786] = 761, + [787] = 776, + [788] = 778, + [789] = 780, + [790] = 784, + [791] = 791, + [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] = 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, @@ -3637,631 +3630,631 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [850] = 846, [851] = 846, [852] = 846, - [853] = 853, - [854] = 846, + [853] = 846, + [854] = 854, [855] = 855, - [856] = 856, - [857] = 856, + [856] = 854, + [857] = 845, [858] = 858, - [859] = 858, + [859] = 855, [860] = 860, - [861] = 861, + [861] = 854, [862] = 862, - [863] = 863, - [864] = 862, - [865] = 863, - [866] = 860, - [867] = 867, - [868] = 861, + [863] = 862, + [864] = 864, + [865] = 865, + [866] = 864, + [867] = 858, + [868] = 860, [869] = 869, [870] = 870, [871] = 870, - [872] = 870, - [873] = 855, - [874] = 874, - [875] = 860, - [876] = 861, - [877] = 867, - [878] = 869, - [879] = 879, - [880] = 853, - [881] = 870, - [882] = 869, - [883] = 860, - [884] = 861, - [885] = 874, - [886] = 860, - [887] = 861, - [888] = 853, - [889] = 874, - [890] = 856, - [891] = 874, - [892] = 856, - [893] = 858, - [894] = 860, - [895] = 862, - [896] = 861, - [897] = 860, - [898] = 861, - [899] = 863, - [900] = 867, - [901] = 855, - [902] = 869, - [903] = 870, - [904] = 856, - [905] = 870, - [906] = 860, - [907] = 855, - [908] = 858, - [909] = 858, - [910] = 860, - [911] = 862, - [912] = 856, - [913] = 862, - [914] = 858, - [915] = 863, - [916] = 863, - [917] = 867, - [918] = 867, - [919] = 853, - [920] = 869, - [921] = 879, - [922] = 874, - [923] = 862, - [924] = 856, - [925] = 870, - [926] = 863, - [927] = 858, - [928] = 862, - [929] = 860, - [930] = 861, - [931] = 874, - [932] = 856, + [872] = 862, + [873] = 854, + [874] = 860, + [875] = 875, + [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] = 862, - [935] = 867, - [936] = 863, - [937] = 867, - [938] = 869, - [939] = 870, - [940] = 874, + [934] = 869, + [935] = 869, + [936] = 855, + [937] = 864, + [938] = 865, + [939] = 860, + [940] = 870, [941] = 860, [942] = 860, [943] = 860, - [944] = 869, - [945] = 863, - [946] = 867, - [947] = 855, - [948] = 869, - [949] = 874, - [950] = 950, - [951] = 853, - [952] = 853, - [953] = 953, + [944] = 862, + [945] = 878, + [946] = 869, + [947] = 854, + [948] = 855, + [949] = 845, + [950] = 845, + [951] = 951, + [952] = 845, + [953] = 845, [954] = 954, - [955] = 853, - [956] = 853, + [955] = 955, + [956] = 956, [957] = 957, - [958] = 958, + [958] = 954, [959] = 959, - [960] = 960, - [961] = 953, - [962] = 950, - [963] = 953, - [964] = 964, + [960] = 951, + [961] = 951, + [962] = 962, + [963] = 845, + [964] = 955, [965] = 965, [966] = 966, - [967] = 950, - [968] = 968, - [969] = 950, - [970] = 953, - [971] = 954, - [972] = 853, - [973] = 954, - [974] = 954, - [975] = 975, + [967] = 967, + [968] = 955, + [969] = 954, + [970] = 951, + [971] = 955, + [972] = 972, + [973] = 973, + [974] = 974, + [975] = 954, [976] = 976, - [977] = 953, - [978] = 626, - [979] = 633, - [980] = 634, - [981] = 636, - [982] = 640, - [983] = 641, - [984] = 853, - [985] = 953, - [986] = 950, - [987] = 954, - [988] = 853, - [989] = 954, - [990] = 990, - [991] = 954, - [992] = 960, - [993] = 965, - [994] = 950, - [995] = 957, - [996] = 958, - [997] = 968, - [998] = 976, - [999] = 959, - [1000] = 966, - [1001] = 975, - [1002] = 964, - [1003] = 953, - [1004] = 1004, - [1005] = 1005, - [1006] = 960, - [1007] = 965, - [1008] = 1008, - [1009] = 1009, - [1010] = 1010, - [1011] = 957, - [1012] = 958, - [1013] = 968, - [1014] = 976, - [1015] = 959, - [1016] = 966, - [1017] = 975, - [1018] = 964, - [1019] = 960, - [1020] = 965, - [1021] = 853, - [1022] = 1022, - [1023] = 950, - [1024] = 643, - [1025] = 957, - [1026] = 958, - [1027] = 968, - [1028] = 976, - [1029] = 959, - [1030] = 966, - [1031] = 975, - [1032] = 964, - [1033] = 1033, - [1034] = 1034, - [1035] = 640, - [1036] = 641, - [1037] = 1037, - [1038] = 957, - [1039] = 958, - [1040] = 618, + [977] = 956, + [978] = 955, + [979] = 962, + [980] = 980, + [981] = 951, + [982] = 972, + [983] = 972, + [984] = 954, + [985] = 954, + [986] = 986, + [987] = 659, + [988] = 632, + [989] = 845, + [990] = 962, + [991] = 974, + [992] = 955, + [993] = 973, + [994] = 845, + [995] = 954, + [996] = 657, + [997] = 959, + [998] = 951, + [999] = 956, + [1000] = 655, + [1001] = 965, + [1002] = 1002, + [1003] = 966, + [1004] = 965, + [1005] = 959, + [1006] = 951, + [1007] = 845, + [1008] = 959, + [1009] = 973, + [1010] = 967, + [1011] = 972, + [1012] = 1012, + [1013] = 955, + [1014] = 974, + [1015] = 957, + [1016] = 957, + [1017] = 623, + [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] = 965, - [1043] = 1043, - [1044] = 651, - [1045] = 1004, - [1046] = 1005, - [1047] = 968, + [1042] = 1031, + [1043] = 1002, + [1044] = 1044, + [1045] = 1045, + [1046] = 986, + [1047] = 1047, [1048] = 976, - [1049] = 1049, - [1050] = 1050, - [1051] = 643, - [1052] = 1052, - [1053] = 1004, - [1054] = 1054, - [1055] = 1055, - [1056] = 1056, + [1049] = 1031, + [1050] = 1002, + [1051] = 959, + [1052] = 986, + [1053] = 980, + [1054] = 1018, + [1055] = 1012, + [1056] = 974, [1057] = 1057, [1058] = 1058, - [1059] = 957, - [1060] = 958, - [1061] = 968, + [1059] = 1059, + [1060] = 1060, + [1061] = 1061, [1062] = 976, - [1063] = 1010, - [1064] = 1008, - [1065] = 959, - [1066] = 957, - [1067] = 1005, + [1063] = 1063, + [1064] = 1064, + [1065] = 1065, + [1066] = 1066, + [1067] = 1067, [1068] = 1068, - [1069] = 1069, - [1070] = 1070, - [1071] = 1010, - [1072] = 958, - [1073] = 609, - [1074] = 607, - [1075] = 968, - [1076] = 1076, - [1077] = 976, - [1078] = 649, - [1079] = 959, - [1080] = 650, - [1081] = 966, - [1082] = 1082, - [1083] = 975, - [1084] = 634, - [1085] = 636, - [1086] = 1022, - [1087] = 990, - [1088] = 1009, - [1089] = 1089, - [1090] = 1090, - [1091] = 1008, - [1092] = 1092, - [1093] = 1093, - [1094] = 960, + [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] = 966, - [1097] = 960, - [1098] = 953, + [1096] = 1096, + [1097] = 1097, + [1098] = 1098, [1099] = 1099, - [1100] = 1022, - [1101] = 990, - [1102] = 1009, + [1100] = 1100, + [1101] = 1101, + [1102] = 1102, [1103] = 1103, [1104] = 1104, - [1105] = 965, + [1105] = 1105, [1106] = 1106, - [1107] = 1010, - [1108] = 1022, - [1109] = 990, - [1110] = 1009, - [1111] = 975, - [1112] = 1112, - [1113] = 964, - [1114] = 965, + [1107] = 1107, + [1108] = 605, + [1109] = 607, + [1110] = 645, + [1111] = 650, + [1112] = 980, + [1113] = 1018, + [1114] = 1012, [1115] = 959, - [1116] = 960, + [1116] = 974, [1117] = 1117, - [1118] = 966, - [1119] = 1057, - [1120] = 1058, + [1118] = 1064, + [1119] = 1065, + [1120] = 1120, [1121] = 1121, - [1122] = 1008, - [1123] = 1123, - [1124] = 975, - [1125] = 964, - [1126] = 950, - [1127] = 954, - [1128] = 626, - [1129] = 1129, - [1130] = 1130, - [1131] = 633, - [1132] = 964, - [1133] = 1099, - [1134] = 649, - [1135] = 650, - [1136] = 1129, - [1137] = 1093, - [1138] = 649, - [1139] = 650, - [1140] = 651, - [1141] = 651, - [1142] = 1082, - [1143] = 1033, - [1144] = 1130, - [1145] = 1070, - [1146] = 640, - [1147] = 641, - [1148] = 1052, - [1149] = 1010, - [1150] = 609, - [1151] = 1022, - [1152] = 990, - [1153] = 1009, - [1154] = 607, - [1155] = 643, - [1156] = 1103, - [1157] = 1034, - [1158] = 1043, - [1159] = 618, - [1160] = 1037, - [1161] = 1022, - [1162] = 990, - [1163] = 1009, - [1164] = 626, - [1165] = 1041, - [1166] = 1076, - [1167] = 1092, - [1168] = 1095, - [1169] = 1112, - [1170] = 1005, - [1171] = 1123, - [1172] = 1050, - [1173] = 1008, - [1174] = 1068, - [1175] = 626, - [1176] = 1121, - [1177] = 1093, - [1178] = 1090, - [1179] = 1099, - [1180] = 1129, - [1181] = 1130, - [1182] = 1037, - [1183] = 1041, - [1184] = 1054, - [1185] = 1055, - [1186] = 1056, - [1187] = 1082, - [1188] = 1033, - [1189] = 633, - [1190] = 1052, - [1191] = 632, - [1192] = 618, - [1193] = 635, - [1194] = 634, - [1195] = 636, - [1196] = 645, - [1197] = 649, - [1198] = 650, - [1199] = 651, - [1200] = 1010, - [1201] = 1022, - [1202] = 990, - [1203] = 1009, - [1204] = 640, - [1205] = 641, - [1206] = 624, - [1207] = 1103, - [1208] = 1034, - [1209] = 1010, - [1210] = 1043, - [1211] = 651, - [1212] = 1049, - [1213] = 1049, - [1214] = 1069, - [1215] = 1057, - [1216] = 1058, - [1217] = 964, - [1218] = 1121, - [1219] = 1005, - [1220] = 1076, - [1221] = 960, - [1222] = 1092, - [1223] = 1095, - [1224] = 965, - [1225] = 1112, - [1226] = 1123, - [1227] = 1050, - [1228] = 643, - [1229] = 1068, - [1230] = 1054, - [1231] = 1055, - [1232] = 1093, - [1233] = 1090, - [1234] = 1099, - [1235] = 1129, - [1236] = 1130, - [1237] = 1037, - [1238] = 1041, - [1239] = 626, - [1240] = 1054, - [1241] = 1055, - [1242] = 1056, - [1243] = 633, - [1244] = 634, - [1245] = 636, - [1246] = 609, - [1247] = 1082, - [1248] = 1033, - [1249] = 640, - [1250] = 641, - [1251] = 1052, - [1252] = 607, - [1253] = 651, - [1254] = 1049, - [1255] = 1056, - [1256] = 1008, - [1257] = 633, - [1258] = 1103, - [1259] = 1034, - [1260] = 1004, - [1261] = 1043, - [1262] = 634, - [1263] = 1069, - [1264] = 1070, - [1265] = 636, - [1266] = 1090, - [1267] = 1008, - [1268] = 957, - [1269] = 1076, - [1270] = 643, - [1271] = 958, - [1272] = 1092, - [1273] = 1095, - [1274] = 1069, - [1275] = 1070, - [1276] = 1112, - [1277] = 1123, - [1278] = 1050, - [1279] = 968, - [1280] = 976, - [1281] = 1068, - [1282] = 959, - [1283] = 966, - [1284] = 975, - [1285] = 1004, - [1286] = 1076, - [1287] = 1033, - [1288] = 1090, - [1289] = 1099, - [1290] = 1009, - [1291] = 1129, - [1292] = 1130, - [1293] = 651, - [1294] = 634, - [1295] = 1037, - [1296] = 651, - [1297] = 1041, - [1298] = 1008, - [1299] = 1103, - [1300] = 1049, - [1301] = 1034, - [1302] = 1082, - [1303] = 1076, - [1304] = 1033, - [1305] = 627, - [1306] = 649, - [1307] = 1076, - [1308] = 1052, - [1309] = 1103, - [1310] = 1069, - [1311] = 1104, - [1312] = 1034, - [1313] = 1070, - [1314] = 632, - [1315] = 627, - [1316] = 1069, - [1317] = 1070, - [1318] = 1043, - [1319] = 650, - [1320] = 636, - [1321] = 1106, - [1322] = 632, - [1323] = 1092, - [1324] = 1043, - [1325] = 1095, - [1326] = 1069, - [1327] = 635, - [1328] = 1070, - [1329] = 1022, - [1330] = 1093, - [1331] = 1093, - [1332] = 1112, - [1333] = 1123, - [1334] = 1090, - [1335] = 1099, - [1336] = 1129, - [1337] = 1130, - [1338] = 1090, - [1339] = 1050, - [1340] = 643, - [1341] = 635, - [1342] = 1099, - [1343] = 1129, - [1344] = 1082, - [1345] = 1130, - [1346] = 990, - [1347] = 1037, - [1348] = 1041, - [1349] = 1052, - [1350] = 1095, - [1351] = 632, - [1352] = 1093, - [1353] = 1055, - [1354] = 1056, - [1355] = 635, - [1356] = 1112, - [1357] = 1123, - [1358] = 645, - [1359] = 624, - [1360] = 1112, - [1361] = 1054, - [1362] = 1092, - [1363] = 1037, - [1364] = 649, - [1365] = 650, - [1366] = 645, - [1367] = 1055, - [1368] = 645, - [1369] = 626, - [1370] = 1095, - [1371] = 1056, - [1372] = 1372, - [1373] = 1373, - [1374] = 1050, - [1375] = 640, - [1376] = 1049, - [1377] = 633, - [1378] = 634, - [1379] = 636, - [1380] = 641, - [1381] = 651, - [1382] = 640, - [1383] = 1123, - [1384] = 1050, - [1385] = 1034, - [1386] = 1043, - [1387] = 641, - [1388] = 1041, - [1389] = 624, - [1390] = 643, - [1391] = 1033, - [1392] = 1052, - [1393] = 649, - [1394] = 1089, - [1395] = 1054, - [1396] = 624, - [1397] = 1055, - [1398] = 1056, - [1399] = 1103, - [1400] = 1082, - [1401] = 650, - [1402] = 1068, - [1403] = 1068, - [1404] = 1092, - [1405] = 1010, - [1406] = 651, - [1407] = 1049, - [1408] = 626, - [1409] = 1068, - [1410] = 633, - [1411] = 1054, - [1412] = 626, - [1413] = 1058, - [1414] = 1121, - [1415] = 641, - [1416] = 1055, - [1417] = 1056, - [1418] = 1037, - [1419] = 1041, - [1420] = 1130, - [1421] = 1082, - [1422] = 1033, - [1423] = 1049, - [1424] = 1069, - [1425] = 1052, - [1426] = 627, - [1427] = 627, - [1428] = 1070, - [1429] = 643, - [1430] = 1076, - [1431] = 649, - [1432] = 1121, - [1433] = 1054, - [1434] = 633, - [1435] = 651, - [1436] = 1092, - [1437] = 1095, - [1438] = 634, - [1439] = 1112, - [1440] = 1123, - [1441] = 1050, - [1442] = 1068, - [1443] = 1103, - [1444] = 1034, - [1445] = 1057, - [1446] = 1058, - [1447] = 1121, - [1448] = 636, - [1449] = 640, - [1450] = 1129, - [1451] = 1043, - [1452] = 1057, - [1453] = 1057, - [1454] = 1058, - [1455] = 1093, - [1456] = 1090, - [1457] = 1099, - [1458] = 650, - [1459] = 645, - [1460] = 633, + [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] = 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] = 624, - [1463] = 634, - [1464] = 635, - [1465] = 636, - [1466] = 649, - [1467] = 1372, - [1468] = 1373, - [1469] = 651, - [1470] = 651, - [1471] = 650, - [1472] = 640, - [1473] = 641, - [1474] = 651, - [1475] = 651, - [1476] = 643, - [1477] = 626, + [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, @@ -4270,777 +4263,777 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1483] = 1483, [1484] = 1484, [1485] = 1485, - [1486] = 1480, + [1486] = 1486, [1487] = 1487, - [1488] = 1482, + [1488] = 1485, [1489] = 1480, - [1490] = 1483, - [1491] = 1491, - [1492] = 1481, - [1493] = 1493, - [1494] = 1481, - [1495] = 1493, - [1496] = 1484, - [1497] = 1493, - [1498] = 1487, - [1499] = 1483, - [1500] = 1491, - [1501] = 1491, - [1502] = 1481, - [1503] = 1484, - [1504] = 1493, - [1505] = 1485, - [1506] = 1482, - [1507] = 1482, - [1508] = 1483, - [1509] = 1480, - [1510] = 1491, - [1511] = 1487, - [1512] = 1484, - [1513] = 1485, - [1514] = 1487, - [1515] = 1485, + [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] = 1517, - [1518] = 1517, + [1517] = 1516, + [1518] = 1516, [1519] = 1519, - [1520] = 1517, + [1520] = 1520, [1521] = 1521, [1522] = 1522, [1523] = 1523, - [1524] = 1522, - [1525] = 1521, - [1526] = 1526, - [1527] = 1527, - [1528] = 1526, + [1524] = 1523, + [1525] = 1525, + [1526] = 1521, + [1527] = 1525, + [1528] = 1522, [1529] = 1523, - [1530] = 1523, - [1531] = 1527, - [1532] = 1522, - [1533] = 1526, - [1534] = 1527, - [1535] = 1521, - [1536] = 1526, - [1537] = 1523, - [1538] = 1521, - [1539] = 1527, - [1540] = 1522, + [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] = 1542, + [1542] = 1541, [1543] = 1543, - [1544] = 1544, - [1545] = 1542, - [1546] = 1542, + [1544] = 1541, + [1545] = 1545, + [1546] = 1543, [1547] = 1543, - [1548] = 1543, - [1549] = 1542, + [1548] = 1541, + [1549] = 1543, [1550] = 1550, - [1551] = 1543, - [1552] = 1550, - [1553] = 1544, - [1554] = 1550, - [1555] = 1544, - [1556] = 1544, + [1551] = 1550, + [1552] = 1545, + [1553] = 1550, + [1554] = 1545, + [1555] = 1545, + [1556] = 1550, [1557] = 1550, - [1558] = 1544, - [1559] = 1550, - [1560] = 1550, - [1561] = 1544, - [1562] = 1544, - [1563] = 1550, + [1558] = 1545, + [1559] = 1545, + [1560] = 1545, + [1561] = 1550, + [1562] = 1550, + [1563] = 1330, [1564] = 1550, - [1565] = 1373, - [1566] = 1372, - [1567] = 632, - [1568] = 635, - [1569] = 645, - [1570] = 624, - [1571] = 1571, - [1572] = 1544, + [1565] = 627, + [1566] = 1566, + [1567] = 625, + [1568] = 1545, + [1569] = 624, + [1570] = 1570, + [1571] = 626, + [1572] = 1329, [1573] = 1573, - [1574] = 649, - [1575] = 1575, + [1574] = 1574, + [1575] = 645, [1576] = 1576, - [1577] = 651, - [1578] = 650, - [1579] = 1579, + [1577] = 650, + [1578] = 1578, + [1579] = 651, [1580] = 1580, [1581] = 1581, - [1582] = 1580, - [1583] = 635, - [1584] = 645, - [1585] = 624, - [1586] = 1586, - [1587] = 1587, - [1588] = 1588, - [1589] = 1373, - [1590] = 1372, - [1591] = 1373, - [1592] = 1592, - [1593] = 1579, - [1594] = 632, - [1595] = 635, - [1596] = 1581, - [1597] = 645, - [1598] = 1598, + [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] = 1581, [1599] = 651, - [1600] = 1372, - [1601] = 632, - [1602] = 632, - [1603] = 635, - [1604] = 649, - [1605] = 650, - [1606] = 1372, - [1607] = 1373, - [1608] = 645, - [1609] = 1598, - [1610] = 1598, - [1611] = 1598, - [1612] = 1598, - [1613] = 1598, - [1614] = 1598, - [1615] = 1598, - [1616] = 1598, - [1617] = 1598, - [1618] = 624, - [1619] = 624, - [1620] = 1620, - [1621] = 1575, + [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] = 1620, - [1624] = 1622, - [1625] = 1622, - [1626] = 1622, - [1627] = 1627, - [1628] = 1588, + [1623] = 1623, + [1624] = 1623, + [1625] = 1584, + [1626] = 1597, + [1627] = 1622, + [1628] = 1622, [1629] = 1622, - [1630] = 1622, - [1631] = 1631, - [1632] = 1627, - [1633] = 1586, - [1634] = 1627, - [1635] = 1587, - [1636] = 1622, - [1637] = 1576, - [1638] = 1592, - [1639] = 1622, + [1630] = 1602, + [1631] = 1622, + [1632] = 1622, + [1633] = 1622, + [1634] = 1634, + [1635] = 1622, + [1636] = 1593, + [1637] = 1619, + [1638] = 1574, + [1639] = 1639, [1640] = 1640, [1641] = 1641, - [1642] = 1641, - [1643] = 1643, - [1644] = 1643, + [1642] = 1640, + [1643] = 1641, + [1644] = 1644, [1645] = 1645, [1646] = 1646, - [1647] = 1647, - [1648] = 1647, + [1647] = 1646, + [1648] = 1648, [1649] = 1649, [1650] = 1650, [1651] = 1651, [1652] = 1652, [1653] = 1653, - [1654] = 1650, - [1655] = 1655, - [1656] = 1656, - [1657] = 1657, + [1654] = 1654, + [1655] = 1650, + [1656] = 1650, + [1657] = 1650, [1658] = 1658, - [1659] = 1659, + [1659] = 1650, [1660] = 1650, [1661] = 1650, [1662] = 1650, - [1663] = 1650, - [1664] = 1650, - [1665] = 1650, + [1663] = 1663, + [1664] = 1664, + [1665] = 1665, [1666] = 1666, - [1667] = 1652, + [1667] = 1667, [1668] = 1668, - [1669] = 1669, - [1670] = 1666, - [1671] = 1671, - [1672] = 1672, - [1673] = 1673, - [1674] = 1674, - [1675] = 1671, - [1676] = 1651, - [1677] = 1674, - [1678] = 1671, - [1679] = 1672, - [1680] = 1674, - [1681] = 1681, - [1682] = 1666, - [1683] = 1671, - [1684] = 1674, - [1685] = 1666, - [1686] = 1671, - [1687] = 1672, - [1688] = 1674, - [1689] = 1659, - [1690] = 1666, - [1691] = 1671, - [1692] = 1672, - [1693] = 1674, - [1694] = 1666, - [1695] = 1671, - [1696] = 1672, - [1697] = 1658, - [1698] = 1674, - [1699] = 1672, - [1700] = 1666, - [1701] = 1671, - [1702] = 1672, - [1703] = 1674, - [1704] = 1666, - [1705] = 1671, - [1706] = 1669, - [1707] = 1653, - [1708] = 1655, - [1709] = 1669, - [1710] = 1656, - [1711] = 1649, - [1712] = 1669, - [1713] = 1657, - [1714] = 1669, - [1715] = 1669, - [1716] = 1669, - [1717] = 1669, - [1718] = 1666, - [1719] = 1672, - [1720] = 1652, - [1721] = 1659, - [1722] = 1658, - [1723] = 1658, - [1724] = 1653, - [1725] = 1655, - [1726] = 1656, - [1727] = 1649, - [1728] = 1657, - [1729] = 1652, - [1730] = 1651, - [1731] = 1731, - [1732] = 1651, - [1733] = 1731, + [1669] = 1667, + [1670] = 1648, + [1671] = 1663, + [1672] = 1666, + [1673] = 1653, + [1674] = 1664, + [1675] = 1667, + [1676] = 1665, + [1677] = 1668, + [1678] = 1665, + [1679] = 1667, + [1680] = 1654, + [1681] = 1666, + [1682] = 1667, + [1683] = 1665, + [1684] = 1668, + [1685] = 1685, + [1686] = 1666, + [1687] = 1687, + [1688] = 1668, + [1689] = 1667, + [1690] = 1668, + [1691] = 1666, + [1692] = 1667, + [1693] = 1665, + [1694] = 1658, + [1695] = 1668, + [1696] = 1666, + [1697] = 1697, + [1698] = 1667, + [1699] = 1665, + [1700] = 1668, + [1701] = 1668, + [1702] = 1666, + [1703] = 1667, + [1704] = 1651, + [1705] = 1705, + [1706] = 1666, + [1707] = 1705, + [1708] = 1666, + [1709] = 1705, + [1710] = 1649, + [1711] = 1652, + [1712] = 1705, + [1713] = 1705, + [1714] = 1705, + [1715] = 1705, + [1716] = 1705, + [1717] = 1665, + [1718] = 1665, + [1719] = 1663, + [1720] = 1720, + [1721] = 1648, + [1722] = 1649, + [1723] = 1649, + [1724] = 1724, + [1725] = 1658, + [1726] = 1651, + [1727] = 1653, + [1728] = 1652, + [1729] = 1664, + [1730] = 1654, + [1731] = 1653, + [1732] = 1658, + [1733] = 1724, [1734] = 1734, - [1735] = 1735, - [1736] = 1653, - [1737] = 1659, - [1738] = 1655, - [1739] = 1656, - [1740] = 1649, - [1741] = 1657, - [1742] = 1651, - [1743] = 1659, - [1744] = 1658, + [1735] = 1663, + [1736] = 1651, + [1737] = 1652, + [1738] = 1664, + [1739] = 1648, + [1740] = 1654, + [1741] = 1663, + [1742] = 1652, + [1743] = 1664, + [1744] = 1664, [1745] = 1658, - [1746] = 1653, - [1747] = 1655, - [1748] = 1656, - [1749] = 1649, - [1750] = 1657, - [1751] = 1656, - [1752] = 1649, - [1753] = 1657, - [1754] = 1652, - [1755] = 1658, - [1756] = 1756, - [1757] = 1731, - [1758] = 1758, - [1759] = 1652, - [1760] = 1760, - [1761] = 1761, - [1762] = 1653, - [1763] = 1731, - [1764] = 1764, - [1765] = 1765, - [1766] = 1653, - [1767] = 1659, - [1768] = 1655, - [1769] = 1652, - [1770] = 1651, - [1771] = 1655, - [1772] = 1656, - [1773] = 1649, - [1774] = 1774, - [1775] = 1657, - [1776] = 1659, - [1777] = 1651, - [1778] = 1656, + [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] = 1651, + [1772] = 1772, + [1773] = 1773, + [1774] = 1652, + [1775] = 1775, + [1776] = 1653, + [1777] = 1777, + [1778] = 1778, [1779] = 1779, - [1780] = 1780, - [1781] = 1761, + [1780] = 1777, + [1781] = 1781, [1782] = 1782, [1783] = 1783, - [1784] = 1784, - [1785] = 1658, - [1786] = 1783, - [1787] = 1659, - [1788] = 1780, - [1789] = 1655, - [1790] = 1783, + [1784] = 1779, + [1785] = 1773, + [1786] = 1777, + [1787] = 1746, + [1788] = 1663, + [1789] = 1789, + [1790] = 1648, [1791] = 1791, - [1792] = 1780, - [1793] = 1780, - [1794] = 1794, - [1795] = 1794, - [1796] = 1651, - [1797] = 1758, - [1798] = 1780, - [1799] = 1735, - [1800] = 1800, - [1801] = 1780, - [1802] = 1802, - [1803] = 1794, - [1804] = 1652, - [1805] = 1758, - [1806] = 1806, + [1792] = 1777, + [1793] = 1734, + [1794] = 1651, + [1795] = 1652, + [1796] = 1664, + [1797] = 1654, + [1798] = 1779, + [1799] = 1799, + [1800] = 1777, + [1801] = 1801, + [1802] = 1782, + [1803] = 1777, + [1804] = 1804, + [1805] = 1805, + [1806] = 1746, [1807] = 1649, - [1808] = 1657, - [1809] = 1809, - [1810] = 1758, - [1811] = 1811, - [1812] = 1812, - [1813] = 1813, + [1808] = 1658, + [1809] = 1777, + [1810] = 1653, + [1811] = 1777, + [1812] = 1777, + [1813] = 1777, [1814] = 1814, - [1815] = 1780, + [1815] = 1746, [1816] = 1816, - [1817] = 1780, + [1817] = 1817, [1818] = 1818, - [1819] = 1811, - [1820] = 1779, - [1821] = 1821, - [1822] = 1779, - [1823] = 1780, - [1824] = 1791, + [1819] = 1817, + [1820] = 1814, + [1821] = 1782, + [1822] = 1814, + [1823] = 1823, + [1824] = 1824, [1825] = 1825, - [1826] = 1780, - [1827] = 1814, - [1828] = 1653, + [1826] = 1826, + [1827] = 1827, + [1828] = 1767, [1829] = 1829, - [1830] = 1765, + [1830] = 1747, [1831] = 1831, - [1832] = 1735, - [1833] = 1833, - [1834] = 1756, - [1835] = 1835, - [1836] = 1836, - [1837] = 1782, - [1838] = 1835, - [1839] = 1765, + [1832] = 1832, + [1833] = 1829, + [1834] = 1772, + [1835] = 1772, + [1836] = 1829, + [1837] = 1791, + [1838] = 1838, + [1839] = 1839, [1840] = 1840, - [1841] = 1836, - [1842] = 1840, - [1843] = 1774, - [1844] = 1829, - [1845] = 1782, - [1846] = 1846, - [1847] = 1756, - [1848] = 1840, - [1849] = 1840, - [1850] = 1850, - [1851] = 1756, - [1852] = 1782, - [1853] = 1853, - [1854] = 1840, - [1855] = 1840, + [1841] = 1841, + [1842] = 1842, + [1843] = 1840, + [1844] = 1747, + [1845] = 1845, + [1846] = 1842, + [1847] = 1847, + [1848] = 1848, + [1849] = 1849, + [1850] = 1826, + [1851] = 1848, + [1852] = 1824, + [1853] = 1791, + [1854] = 1849, + [1855] = 1829, [1856] = 1829, - [1857] = 1840, - [1858] = 1858, - [1859] = 1774, - [1860] = 1860, - [1861] = 1735, - [1862] = 1840, - [1863] = 1846, - [1864] = 1864, - [1865] = 1853, + [1857] = 1734, + [1858] = 1838, + [1859] = 1838, + [1860] = 1829, + [1861] = 1772, + [1862] = 1734, + [1863] = 1767, + [1864] = 1767, + [1865] = 1865, [1866] = 1866, - [1867] = 1867, - [1868] = 1774, - [1869] = 1869, - [1870] = 1833, - [1871] = 1833, - [1872] = 1866, - [1873] = 1835, - [1874] = 1836, + [1867] = 1848, + [1868] = 1829, + [1869] = 1829, + [1870] = 1747, + [1871] = 1840, + [1872] = 1824, + [1873] = 1791, + [1874] = 1772, [1875] = 1875, [1876] = 1876, - [1877] = 1765, + [1877] = 1877, [1878] = 1878, - [1879] = 1764, + [1879] = 1879, [1880] = 1880, [1881] = 1881, [1882] = 1882, - [1883] = 1831, - [1884] = 1884, - [1885] = 1885, + [1883] = 1883, + [1884] = 1878, + [1885] = 1881, [1886] = 1886, [1887] = 1887, [1888] = 1888, [1889] = 1889, - [1890] = 1890, + [1890] = 1574, [1891] = 1891, [1892] = 1892, - [1893] = 1774, - [1894] = 1894, + [1893] = 1893, + [1894] = 1888, [1895] = 1895, - [1896] = 1896, + [1896] = 1789, [1897] = 1897, - [1898] = 1831, + [1898] = 1770, [1899] = 1899, [1900] = 1900, [1901] = 1901, [1902] = 1902, [1903] = 1903, - [1904] = 1761, - [1905] = 1905, - [1906] = 1895, - [1907] = 1897, - [1908] = 1764, + [1904] = 1904, + [1905] = 1832, + [1906] = 1875, + [1907] = 1892, + [1908] = 1878, [1909] = 1909, - [1910] = 1910, - [1911] = 1881, + [1910] = 1839, + [1911] = 1576, [1912] = 1912, - [1913] = 1784, - [1914] = 1914, - [1915] = 1869, + [1913] = 1773, + [1914] = 1895, + [1915] = 1915, [1916] = 1916, - [1917] = 1902, + [1917] = 1917, [1918] = 1918, - [1919] = 1919, - [1920] = 1920, + [1919] = 1832, + [1920] = 1903, [1921] = 1921, - [1922] = 1903, - [1923] = 1910, + [1922] = 1922, + [1923] = 1773, [1924] = 1924, - [1925] = 1897, - [1926] = 1882, - [1927] = 1927, + [1925] = 1747, + [1926] = 1921, + [1927] = 1770, [1928] = 1928, - [1929] = 1880, - [1930] = 1918, - [1931] = 1909, - [1932] = 1927, - [1933] = 1765, - [1934] = 1914, - [1935] = 1784, + [1929] = 1929, + [1930] = 1876, + [1931] = 1895, + [1932] = 1912, + [1933] = 1879, + [1934] = 1934, + [1935] = 1928, [1936] = 1936, - [1937] = 1937, - [1938] = 1938, - [1939] = 1939, - [1940] = 1909, - [1941] = 1941, - [1942] = 1942, - [1943] = 1869, - [1944] = 1575, - [1945] = 1914, - [1946] = 1942, - [1947] = 1800, - [1948] = 1761, - [1949] = 1869, - [1950] = 1881, + [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] = 1818, + [1950] = 1880, [1951] = 1951, - [1952] = 1936, - [1953] = 1953, - [1954] = 1887, - [1955] = 1756, - [1956] = 1881, - [1957] = 1957, - [1958] = 1895, - [1959] = 1764, - [1960] = 1910, - [1961] = 1761, - [1962] = 1962, - [1963] = 1939, - [1964] = 1902, - [1965] = 1576, - [1966] = 1966, - [1967] = 1967, - [1968] = 1899, - [1969] = 1969, - [1970] = 1882, - [1971] = 1971, - [1972] = 1972, - [1973] = 1973, - [1974] = 1936, - [1975] = 1941, - [1976] = 1784, - [1977] = 1977, - [1978] = 1919, - [1979] = 1888, - [1980] = 1889, - [1981] = 1920, - [1982] = 1887, + [1952] = 1952, + [1953] = 1892, + [1954] = 1882, + [1955] = 1929, + [1956] = 1956, + [1957] = 1888, + [1958] = 1958, + [1959] = 1959, + [1960] = 1960, + [1961] = 1961, + [1962] = 1901, + [1963] = 1963, + [1964] = 1964, + [1965] = 1818, + [1966] = 1961, + [1967] = 1883, + [1968] = 1882, + [1969] = 1936, + [1970] = 1970, + [1971] = 1901, + [1972] = 1839, + [1973] = 1922, + [1974] = 1879, + [1975] = 1958, + [1976] = 1832, + [1977] = 1956, + [1978] = 1978, + [1979] = 1979, + [1980] = 1767, + [1981] = 1909, + [1982] = 1770, [1983] = 1983, - [1984] = 1984, - [1985] = 1831, - [1986] = 1924, - [1987] = 1924, - [1988] = 1888, + [1984] = 1964, + [1985] = 1985, + [1986] = 1986, + [1987] = 1883, + [1988] = 1988, [1989] = 1989, - [1990] = 1892, - [1991] = 1900, - [1992] = 1901, + [1990] = 1989, + [1991] = 1991, + [1992] = 1989, [1993] = 1993, [1994] = 1994, - [1995] = 1889, - [1996] = 1996, - [1997] = 1920, + [1995] = 1995, + [1996] = 1881, + [1997] = 1997, [1998] = 1998, - [1999] = 1892, - [2000] = 1900, + [1999] = 1999, + [2000] = 1934, [2001] = 2001, - [2002] = 1901, + [2002] = 1989, [2003] = 2003, - [2004] = 2004, - [2005] = 1899, - [2006] = 2006, - [2007] = 2001, - [2008] = 1967, - [2009] = 2009, - [2010] = 2010, - [2011] = 2011, + [2004] = 1964, + [2005] = 2005, + [2006] = 1989, + [2007] = 2007, + [2008] = 1840, + [2009] = 1909, + [2010] = 1956, + [2011] = 1961, [2012] = 2012, [2013] = 2013, - [2014] = 2013, - [2015] = 1927, - [2016] = 1880, - [2017] = 1918, + [2014] = 2014, + [2015] = 2015, + [2016] = 2016, + [2017] = 1998, [2018] = 2018, - [2019] = 2019, + [2019] = 1921, [2020] = 2020, [2021] = 2021, - [2022] = 2001, + [2022] = 2022, [2023] = 2023, - [2024] = 1888, - [2025] = 1889, - [2026] = 1920, + [2024] = 1818, + [2025] = 1887, + [2026] = 1909, [2027] = 2027, - [2028] = 2013, - [2029] = 2029, - [2030] = 1924, + [2028] = 1970, + [2029] = 1989, + [2030] = 2030, [2031] = 2031, - [2032] = 2032, - [2033] = 1984, - [2034] = 1885, - [2035] = 1896, - [2036] = 1897, - [2037] = 1784, - [2038] = 1962, + [2032] = 1887, + [2033] = 2033, + [2034] = 2016, + [2035] = 1989, + [2036] = 2027, + [2037] = 2013, + [2038] = 2038, [2039] = 2039, - [2040] = 2001, - [2041] = 1957, - [2042] = 1902, + [2040] = 2040, + [2041] = 2041, + [2042] = 2031, [2043] = 2043, - [2044] = 2031, - [2045] = 2032, - [2046] = 2013, - [2047] = 1892, - [2048] = 1900, - [2049] = 1901, - [2050] = 1993, - [2051] = 2001, - [2052] = 2052, - [2053] = 2053, - [2054] = 1592, - [2055] = 2055, - [2056] = 2056, - [2057] = 2057, - [2058] = 1998, + [2044] = 2044, + [2045] = 2045, + [2046] = 1922, + [2047] = 1978, + [2048] = 1978, + [2049] = 1944, + [2050] = 1918, + [2051] = 1944, + [2052] = 2005, + [2053] = 1593, + [2054] = 1934, + [2055] = 2014, + [2056] = 1964, + [2057] = 1999, + [2058] = 2031, [2059] = 2059, - [2060] = 2060, - [2061] = 2001, + [2060] = 2022, + [2061] = 2031, [2062] = 2062, - [2063] = 2063, - [2064] = 2001, - [2065] = 1885, - [2066] = 1993, - [2067] = 1896, - [2068] = 2010, + [2063] = 1944, + [2064] = 1602, + [2065] = 2005, + [2066] = 2014, + [2067] = 1887, + [2068] = 1597, [2069] = 2069, - [2070] = 2001, - [2071] = 2071, + [2070] = 2070, + [2071] = 1989, [2072] = 2072, - [2073] = 1586, - [2074] = 2074, - [2075] = 2075, - [2076] = 2076, + [2073] = 1879, + [2074] = 1922, + [2075] = 2072, + [2076] = 1889, [2077] = 2077, - [2078] = 1587, - [2079] = 2004, - [2080] = 2019, - [2081] = 2081, - [2082] = 2082, - [2083] = 1899, - [2084] = 2084, - [2085] = 2082, - [2086] = 2086, - [2087] = 2023, - [2088] = 2088, - [2089] = 2020, - [2090] = 1588, - [2091] = 1957, - [2092] = 1927, + [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] = 1885, - [2095] = 2088, - [2096] = 1880, - [2097] = 1918, - [2098] = 1896, - [2099] = 2031, - [2100] = 2032, - [2101] = 2101, + [2094] = 2072, + [2095] = 1924, + [2096] = 2096, + [2097] = 2097, + [2098] = 2098, + [2099] = 1901, + [2100] = 2100, + [2101] = 1934, [2102] = 2102, - [2103] = 2103, + [2103] = 2102, [2104] = 2104, - [2105] = 1835, + [2105] = 2105, [2106] = 2106, - [2107] = 1957, + [2107] = 2107, [2108] = 2108, [2109] = 2109, [2110] = 2110, - [2111] = 2011, - [2112] = 2012, - [2113] = 2077, - [2114] = 2072, - [2115] = 2053, - [2116] = 2074, - [2117] = 2060, - [2118] = 2043, - [2119] = 2052, - [2120] = 2120, - [2121] = 2121, - [2122] = 2081, - [2123] = 2055, - [2124] = 2056, - [2125] = 2057, - [2126] = 2075, - [2127] = 2059, - [2128] = 2128, - [2129] = 2084, - [2130] = 2059, - [2131] = 2120, - [2132] = 2069, - [2133] = 2071, - [2134] = 2072, - [2135] = 2074, - [2136] = 2075, - [2137] = 2137, - [2138] = 2077, - [2139] = 2081, - [2140] = 2084, - [2141] = 2141, - [2142] = 2142, - [2143] = 2102, - [2144] = 2103, - [2145] = 2104, - [2146] = 2146, - [2147] = 2106, - [2148] = 1989, - [2149] = 2039, - [2150] = 2109, - [2151] = 2043, - [2152] = 2121, - [2153] = 2153, - [2154] = 2102, - [2155] = 2155, - [2156] = 2027, - [2157] = 2120, - [2158] = 2121, - [2159] = 2103, - [2160] = 2128, - [2161] = 2104, - [2162] = 2106, - [2163] = 2163, - [2164] = 2164, - [2165] = 2165, - [2166] = 2166, - [2167] = 2167, - [2168] = 2009, - [2169] = 1989, - [2170] = 2170, - [2171] = 2056, - [2172] = 2128, + [2111] = 2111, + [2112] = 2112, + [2113] = 2113, + [2114] = 2105, + [2115] = 2115, + [2116] = 2116, + [2117] = 2117, + [2118] = 2118, + [2119] = 2119, + [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] = 1993, + [2156] = 1998, + [2157] = 2018, + [2158] = 2044, + [2159] = 1988, + [2160] = 2160, + [2161] = 2161, + [2162] = 2162, + [2163] = 2118, + [2164] = 2119, + [2165] = 1983, + [2166] = 2093, + [2167] = 2097, + [2168] = 1995, + [2169] = 1997, + [2170] = 2125, + [2171] = 2007, + [2172] = 2100, [2173] = 2173, [2174] = 2174, [2175] = 2175, - [2176] = 2077, - [2177] = 2062, - [2178] = 2039, - [2179] = 2052, - [2180] = 2010, - [2181] = 2181, - [2182] = 2084, - [2183] = 2183, - [2184] = 2057, - [2185] = 2102, - [2186] = 2103, - [2187] = 2187, - [2188] = 2104, - [2189] = 2189, - [2190] = 2106, - [2191] = 1989, - [2192] = 2192, - [2193] = 2193, - [2194] = 2052, - [2195] = 2195, - [2196] = 2055, - [2197] = 2056, - [2198] = 2057, - [2199] = 2199, - [2200] = 2120, - [2201] = 2121, - [2202] = 2011, - [2203] = 2055, - [2204] = 2012, - [2205] = 2059, - [2206] = 2206, - [2207] = 2039, - [2208] = 2009, - [2209] = 2209, - [2210] = 2010, - [2211] = 2011, - [2212] = 2012, - [2213] = 2213, + [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] = 2215, - [2216] = 2128, + [2215] = 2110, + [2216] = 2216, [2217] = 2217, - [2218] = 2069, - [2219] = 2071, + [2218] = 2218, + [2219] = 2104, [2220] = 2220, [2221] = 2221, - [2222] = 1994, - [2223] = 2215, - [2224] = 2217, - [2225] = 2141, - [2226] = 2072, - [2227] = 2221, - [2228] = 2069, - [2229] = 2229, + [2222] = 2222, + [2223] = 2223, + [2224] = 2224, + [2225] = 2038, + [2226] = 2045, + [2227] = 2218, + [2228] = 2107, + [2229] = 2125, [2230] = 2230, - [2231] = 2071, - [2232] = 2074, - [2233] = 2075, - [2234] = 2043, - [2235] = 2009, - [2236] = 2081, + [2231] = 1994, + [2232] = 2232, + [2233] = 2233, + [2234] = 2234, + [2235] = 2235, + [2236] = 2236, [2237] = 2237, [2238] = 2238, [2239] = 2239, [2240] = 2240, [2241] = 2241, - [2242] = 2242, - [2243] = 2243, - [2244] = 2244, - [2245] = 2245, - [2246] = 2243, - [2247] = 2247, + [2242] = 2232, + [2243] = 1960, + [2244] = 1915, + [2245] = 2233, + [2246] = 1951, + [2247] = 986, [2248] = 2248, - [2249] = 2244, + [2249] = 2249, [2250] = 2250, [2251] = 2251, - [2252] = 1967, - [2253] = 2253, - [2254] = 2250, + [2252] = 2252, + [2253] = 2236, + [2254] = 2150, [2255] = 2255, - [2256] = 2240, + [2256] = 2256, [2257] = 2257, [2258] = 2258, [2259] = 2259, @@ -5050,529 +5043,517 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2263] = 2263, [2264] = 2264, [2265] = 2265, - [2266] = 625, - [2267] = 2267, - [2268] = 2268, - [2269] = 2164, - [2270] = 2245, + [2266] = 2266, + [2267] = 1893, + [2268] = 2240, + [2269] = 2269, + [2270] = 2270, [2271] = 2271, - [2272] = 2272, + [2272] = 1979, [2273] = 2273, - [2274] = 2274, + [2274] = 2113, [2275] = 2275, - [2276] = 2276, - [2277] = 1575, - [2278] = 1972, - [2279] = 2279, - [2280] = 1951, - [2281] = 2281, - [2282] = 1953, + [2276] = 2234, + [2277] = 1959, + [2278] = 2278, + [2279] = 2237, + [2280] = 2280, + [2281] = 976, + [2282] = 2240, [2283] = 2283, - [2284] = 2247, - [2285] = 2248, - [2286] = 2189, - [2287] = 628, - [2288] = 2245, - [2289] = 629, - [2290] = 2290, - [2291] = 2291, - [2292] = 2292, - [2293] = 2250, - [2294] = 2167, - [2295] = 2291, - [2296] = 2241, - [2297] = 2242, - [2298] = 2245, - [2299] = 2299, + [2284] = 2234, + [2285] = 2241, + [2286] = 2232, + [2287] = 2280, + [2288] = 2233, + [2289] = 2283, + [2290] = 2248, + [2291] = 1889, + [2292] = 2250, + [2293] = 2293, + [2294] = 2251, + [2295] = 2252, + [2296] = 2296, + [2297] = 2236, + [2298] = 2298, + [2299] = 1891, [2300] = 2300, - [2301] = 2247, - [2302] = 2248, - [2303] = 2303, - [2304] = 2250, - [2305] = 2262, - [2306] = 2306, + [2301] = 2301, + [2302] = 2302, + [2303] = 2258, + [2304] = 2260, + [2305] = 2150, + [2306] = 2261, [2307] = 2307, - [2308] = 2251, - [2309] = 2255, + [2308] = 2262, + [2309] = 2263, [2310] = 2257, - [2311] = 2283, - [2312] = 2258, - [2313] = 2259, - [2314] = 2241, - [2315] = 2261, - [2316] = 2261, - [2317] = 2260, - [2318] = 2189, - [2319] = 2319, + [2311] = 2230, + [2312] = 2175, + [2313] = 2106, + [2314] = 2264, + [2315] = 1970, + [2316] = 2273, + [2317] = 2317, + [2318] = 2238, + [2319] = 2270, [2320] = 2320, [2321] = 2321, - [2322] = 2322, - [2323] = 2268, - [2324] = 2271, - [2325] = 2255, - [2326] = 2272, - [2327] = 2327, - [2328] = 2273, - [2329] = 2257, - [2330] = 2275, - [2331] = 2163, - [2332] = 2164, - [2333] = 2167, - [2334] = 2258, - [2335] = 2259, - [2336] = 2281, - [2337] = 2271, - [2338] = 2338, - [2339] = 2339, - [2340] = 1894, - [2341] = 2290, - [2342] = 642, - [2343] = 2292, - [2344] = 2290, - [2345] = 1984, - [2346] = 2241, - [2347] = 2242, - [2348] = 2261, - [2349] = 2245, - [2350] = 2142, - [2351] = 2247, - [2352] = 2248, - [2353] = 2250, - [2354] = 2153, - [2355] = 2255, - [2356] = 2272, - [2357] = 2257, - [2358] = 2258, - [2359] = 2259, - [2360] = 2273, - [2361] = 2361, - [2362] = 1010, - [2363] = 623, - [2364] = 2264, - [2365] = 2290, - [2366] = 2366, - [2367] = 2275, - [2368] = 2292, - [2369] = 2241, - [2370] = 2242, - [2371] = 2371, - [2372] = 2245, - [2373] = 2292, - [2374] = 2248, - [2375] = 2250, - [2376] = 1575, - [2377] = 2292, - [2378] = 2255, - [2379] = 2257, - [2380] = 2258, - [2381] = 2259, - [2382] = 1905, - [2383] = 1912, - [2384] = 1916, - [2385] = 2163, - [2386] = 2299, - [2387] = 2253, - [2388] = 2303, - [2389] = 2292, - [2390] = 2390, - [2391] = 2241, - [2392] = 2392, - [2393] = 2245, - [2394] = 2268, - [2395] = 2247, - [2396] = 2248, - [2397] = 2397, - [2398] = 2250, - [2399] = 2255, - [2400] = 2257, - [2401] = 2258, - [2402] = 2259, - [2403] = 2255, - [2404] = 2404, - [2405] = 2253, - [2406] = 2406, - [2407] = 2292, - [2408] = 2408, - [2409] = 2242, - [2410] = 2322, - [2411] = 2189, - [2412] = 2292, - [2413] = 2241, - [2414] = 2170, - [2415] = 2245, - [2416] = 2268, - [2417] = 2247, - [2418] = 2248, - [2419] = 2419, - [2420] = 2250, - [2421] = 2421, - [2422] = 2255, - [2423] = 1008, - [2424] = 2257, - [2425] = 2258, - [2426] = 2259, - [2427] = 2427, - [2428] = 2173, - [2429] = 2429, - [2430] = 2250, - [2431] = 2258, - [2432] = 2259, - [2433] = 2290, - [2434] = 1984, - [2435] = 2250, - [2436] = 2258, - [2437] = 2259, - [2438] = 2257, - [2439] = 2439, - [2440] = 1984, - [2441] = 2164, - [2442] = 2241, - [2443] = 2443, - [2444] = 2271, - [2445] = 2272, - [2446] = 2273, - [2447] = 2281, - [2448] = 2421, - [2449] = 2408, - [2450] = 2275, - [2451] = 2279, - [2452] = 1938, - [2453] = 2338, - [2454] = 2239, - [2455] = 2320, - [2456] = 2456, - [2457] = 2244, - [2458] = 2322, - [2459] = 1586, - [2460] = 2274, - [2461] = 2461, - [2462] = 2327, - [2463] = 2408, - [2464] = 2279, - [2465] = 2243, - [2466] = 2466, - [2467] = 2258, - [2468] = 2259, - [2469] = 1967, - [2470] = 2470, - [2471] = 2247, - [2472] = 2281, - [2473] = 1575, - [2474] = 2300, - [2475] = 2220, - [2476] = 2339, - [2477] = 2238, - [2478] = 1967, - [2479] = 2248, - [2480] = 2404, - [2481] = 2456, - [2482] = 2461, + [2322] = 2273, + [2323] = 2323, + [2324] = 2234, + [2325] = 2239, + [2326] = 2326, + [2327] = 2237, + [2328] = 2328, + [2329] = 2329, + [2330] = 2240, + [2331] = 2258, + [2332] = 2241, + [2333] = 2232, + [2334] = 2334, + [2335] = 2233, + [2336] = 2248, + [2337] = 2248, + [2338] = 2250, + [2339] = 2174, + [2340] = 2251, + [2341] = 2252, + [2342] = 2250, + [2343] = 2328, + [2344] = 2344, + [2345] = 2334, + [2346] = 2346, + [2347] = 2320, + [2348] = 2348, + [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] = 2433, + [2434] = 2346, + [2435] = 2435, + [2436] = 2436, + [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] = 2174, - [2485] = 2274, - [2486] = 2242, - [2487] = 2466, - [2488] = 2290, - [2489] = 1576, - [2490] = 2406, - [2491] = 2319, - [2492] = 2247, + [2484] = 2484, + [2485] = 2485, + [2486] = 2486, + [2487] = 1597, + [2488] = 618, + [2489] = 2489, + [2490] = 2490, + [2491] = 2491, + [2492] = 2492, [2493] = 2493, [2494] = 2494, - [2495] = 625, + [2495] = 2495, [2496] = 2496, [2497] = 2497, [2498] = 2498, [2499] = 2499, - [2500] = 2500, + [2500] = 2484, [2501] = 2501, - [2502] = 2502, + [2502] = 2486, [2503] = 2503, [2504] = 2504, [2505] = 2505, - [2506] = 2506, + [2506] = 2483, [2507] = 2507, - [2508] = 2494, + [2508] = 2486, [2509] = 2509, - [2510] = 629, - [2511] = 2511, + [2510] = 2489, + [2511] = 2484, [2512] = 2512, - [2513] = 2513, + [2513] = 2486, [2514] = 2514, [2515] = 2515, - [2516] = 2497, - [2517] = 2499, - [2518] = 2518, - [2519] = 2519, + [2516] = 2516, + [2517] = 2489, + [2518] = 2323, + [2519] = 660, [2520] = 2520, - [2521] = 2521, - [2522] = 2063, - [2523] = 2494, - [2524] = 628, - [2525] = 2502, + [2521] = 2496, + [2522] = 2496, + [2523] = 2021, + [2524] = 2524, + [2525] = 2482, [2526] = 2526, - [2527] = 1586, - [2528] = 2509, - [2529] = 2529, + [2527] = 2021, + [2528] = 2528, + [2529] = 2507, [2530] = 2530, - [2531] = 2502, + [2531] = 1602, [2532] = 2532, [2533] = 2533, - [2534] = 2526, + [2534] = 2534, [2535] = 2535, - [2536] = 2519, - [2537] = 1592, - [2538] = 2263, + [2536] = 2536, + [2537] = 643, + [2538] = 2538, [2539] = 2539, [2540] = 2540, [2541] = 2541, - [2542] = 2502, + [2542] = 1593, [2543] = 2543, - [2544] = 2544, - [2545] = 2545, - [2546] = 2546, + [2544] = 2503, + [2545] = 1584, + [2546] = 1597, [2547] = 2547, - [2548] = 2063, - [2549] = 2549, - [2550] = 2509, - [2551] = 2545, - [2552] = 2497, - [2553] = 1587, - [2554] = 2063, - [2555] = 2540, - [2556] = 2556, - [2557] = 2237, - [2558] = 2558, + [2548] = 2548, + [2549] = 2021, + [2550] = 2494, + [2551] = 2543, + [2552] = 2548, + [2553] = 2540, + [2554] = 2514, + [2555] = 2555, + [2556] = 2496, + [2557] = 2557, + [2558] = 1602, [2559] = 2559, - [2560] = 2560, - [2561] = 1592, - [2562] = 2562, + [2560] = 656, + [2561] = 2561, + [2562] = 621, [2563] = 2563, - [2564] = 2521, - [2565] = 2543, - [2566] = 2499, - [2567] = 2567, - [2568] = 623, + [2564] = 2433, + [2565] = 1593, + [2566] = 2566, + [2567] = 2489, + [2568] = 2440, [2569] = 2569, - [2570] = 1588, - [2571] = 2571, - [2572] = 2361, - [2573] = 2558, - [2574] = 2574, + [2570] = 2482, + [2571] = 2569, + [2572] = 2572, + [2573] = 2573, + [2574] = 2507, [2575] = 2575, - [2576] = 1588, - [2577] = 2577, - [2578] = 2578, - [2579] = 2509, - [2580] = 2559, - [2581] = 2519, - [2582] = 2539, - [2583] = 2497, + [2576] = 2515, + [2577] = 2569, + [2578] = 2497, + [2579] = 2579, + [2580] = 2484, + [2581] = 2572, + [2582] = 2582, + [2583] = 2583, [2584] = 2584, - [2585] = 642, - [2586] = 2521, - [2587] = 2546, + [2585] = 2585, + [2586] = 2586, + [2587] = 2587, [2588] = 2588, - [2589] = 2499, - [2590] = 2556, - [2591] = 2588, - [2592] = 1587, + [2589] = 2589, + [2590] = 2590, + [2591] = 2591, + [2592] = 2592, [2593] = 2593, [2594] = 2594, - [2595] = 2595, + [2595] = 2584, [2596] = 2596, [2597] = 2597, [2598] = 2598, - [2599] = 2599, - [2600] = 2600, - [2601] = 2601, - [2602] = 2602, - [2603] = 2603, - [2604] = 2597, + [2599] = 2584, + [2600] = 2590, + [2601] = 2591, + [2602] = 2589, + [2603] = 2598, + [2604] = 2582, [2605] = 2605, - [2606] = 2597, - [2607] = 2607, + [2606] = 2606, + [2607] = 2584, [2608] = 2608, - [2609] = 2609, - [2610] = 2598, + [2609] = 2593, + [2610] = 2610, [2611] = 2611, - [2612] = 2602, - [2613] = 2607, - [2614] = 2614, + [2612] = 2612, + [2613] = 2613, + [2614] = 2592, [2615] = 2615, - [2616] = 2599, - [2617] = 2594, - [2618] = 2618, - [2619] = 2603, - [2620] = 2603, - [2621] = 2621, - [2622] = 2614, + [2616] = 2585, + [2617] = 2617, + [2618] = 2598, + [2619] = 2619, + [2620] = 2617, + [2621] = 2593, + [2622] = 2590, [2623] = 2623, - [2624] = 2624, - [2625] = 2614, - [2626] = 2595, + [2624] = 2608, + [2625] = 2625, + [2626] = 2626, [2627] = 2627, - [2628] = 2594, - [2629] = 2629, - [2630] = 2608, - [2631] = 2599, - [2632] = 2632, + [2628] = 2612, + [2629] = 2596, + [2630] = 2598, + [2631] = 2631, + [2632] = 2596, [2633] = 2633, - [2634] = 2618, + [2634] = 2634, [2635] = 2635, - [2636] = 2598, + [2636] = 2636, [2637] = 2637, - [2638] = 2638, - [2639] = 2595, - [2640] = 2608, - [2641] = 2641, - [2642] = 2629, + [2638] = 2585, + [2639] = 2597, + [2640] = 2598, + [2641] = 2589, + [2642] = 2588, [2643] = 2643, - [2644] = 2644, - [2645] = 2645, - [2646] = 2595, - [2647] = 2647, - [2648] = 2633, - [2649] = 2649, - [2650] = 2608, - [2651] = 2615, - [2652] = 2614, - [2653] = 2599, - [2654] = 2629, - [2655] = 2655, - [2656] = 2599, - [2657] = 2599, - [2658] = 2609, - [2659] = 2659, - [2660] = 2603, - [2661] = 2615, - [2662] = 2609, - [2663] = 2602, - [2664] = 2664, - [2665] = 2665, - [2666] = 2621, - [2667] = 2603, - [2668] = 2599, - [2669] = 2611, - [2670] = 2670, - [2671] = 2608, - [2672] = 2602, - [2673] = 2647, + [2644] = 2596, + [2645] = 2585, + [2646] = 2598, + [2647] = 2589, + [2648] = 2648, + [2649] = 2610, + [2650] = 2585, + [2651] = 2651, + [2652] = 2597, + [2653] = 2590, + [2654] = 2654, + [2655] = 2615, + [2656] = 2637, + [2657] = 2592, + [2658] = 2658, + [2659] = 2589, + [2660] = 2593, + [2661] = 2591, + [2662] = 2662, + [2663] = 2623, + [2664] = 2648, + [2665] = 2596, + [2666] = 2592, + [2667] = 2667, + [2668] = 2597, + [2669] = 2669, + [2670] = 2598, + [2671] = 2662, + [2672] = 2593, + [2673] = 2611, [2674] = 2674, - [2675] = 2603, - [2676] = 2615, - [2677] = 2597, - [2678] = 2665, - [2679] = 2607, - [2680] = 2680, - [2681] = 2681, - [2682] = 2682, - [2683] = 2597, - [2684] = 2684, - [2685] = 2600, - [2686] = 2607, - [2687] = 2623, - [2688] = 2688, - [2689] = 2689, - [2690] = 2690, - [2691] = 2670, - [2692] = 2608, - [2693] = 2608, - [2694] = 2608, - [2695] = 2597, - [2696] = 2597, - [2697] = 2598, - [2698] = 2698, - [2699] = 2618, - [2700] = 2598, - [2701] = 2701, - [2702] = 2614, - [2703] = 2609, - [2704] = 2704, - [2705] = 2611, - [2706] = 2602, - [2707] = 2614, - [2708] = 2708, + [2675] = 2594, + [2676] = 2676, + [2677] = 2606, + [2678] = 2648, + [2679] = 2587, + [2680] = 2631, + [2681] = 2590, + [2682] = 2591, + [2683] = 2596, + [2684] = 2597, + [2685] = 2591, + [2686] = 2591, + [2687] = 2593, + [2688] = 2598, + [2689] = 2592, + [2690] = 2667, + [2691] = 2617, + [2692] = 2582, + [2693] = 2590, + [2694] = 2694, + [2695] = 2669, + [2696] = 2605, + [2697] = 2591, + [2698] = 2585, + [2699] = 2593, + [2700] = 2592, + [2701] = 2584, + [2702] = 2676, + [2703] = 2669, + [2704] = 2582, + [2705] = 2587, + [2706] = 2605, + [2707] = 2707, + [2708] = 2582, [2709] = 2615, - [2710] = 2618, - [2711] = 2614, - [2712] = 2595, - [2713] = 2594, - [2714] = 2680, - [2715] = 2603, - [2716] = 2689, - [2717] = 2615, - [2718] = 2701, - [2719] = 2614, - [2720] = 2594, - [2721] = 2598, - [2722] = 2615, - [2723] = 2597, - [2724] = 2595, - [2725] = 2602, - [2726] = 2708, - [2727] = 2727, - [2728] = 2728, - [2729] = 2629, - [2730] = 2594, - [2731] = 2611, - [2732] = 2607, - [2733] = 2611, - [2734] = 2602, - [2735] = 2607, - [2736] = 2688, - [2737] = 2615, - [2738] = 2738, - [2739] = 2739, - [2740] = 2608, - [2741] = 2598, - [2742] = 2596, - [2743] = 2664, - [2744] = 2594, - [2745] = 2603, - [2746] = 2746, - [2747] = 2609, - [2748] = 2701, - [2749] = 2607, - [2750] = 2602, - [2751] = 2751, - [2752] = 2751, - [2753] = 2689, - [2754] = 2727, - [2755] = 2688, - [2756] = 2633, - [2757] = 2632, - [2758] = 2688, - [2759] = 2607, - [2760] = 2760, - [2761] = 2618, - [2762] = 2598, - [2763] = 2763, - [2764] = 2680, - [2765] = 2596, - [2766] = 2599, - [2767] = 2611, - [2768] = 2633, - [2769] = 2682, - [2770] = 2596, - [2771] = 2611, - [2772] = 2595, - [2773] = 2635, - [2774] = 2684, - [2775] = 2775, - [2776] = 2629, - [2777] = 2601, - [2778] = 2645, - [2779] = 2690, - [2780] = 2704, - [2781] = 2728, - [2782] = 2637, - [2783] = 2594, - [2784] = 2644, - [2785] = 2637, - [2786] = 2608, - [2787] = 2595, - [2788] = 2611, + [2710] = 2605, + [2711] = 2711, + [2712] = 2589, + [2713] = 2582, + [2714] = 2714, + [2715] = 2584, + [2716] = 2585, + [2717] = 2658, + [2718] = 2648, + [2719] = 2592, + [2720] = 2720, + [2721] = 2593, + [2722] = 2722, + [2723] = 2605, + [2724] = 2605, + [2725] = 2596, + [2726] = 2615, + [2727] = 2608, + [2728] = 2597, + [2729] = 2585, + [2730] = 2654, + [2731] = 2731, + [2732] = 2598, + [2733] = 2584, + [2734] = 2582, + [2735] = 2617, + [2736] = 2720, + [2737] = 2589, + [2738] = 2598, + [2739] = 2590, + [2740] = 2596, + [2741] = 2588, + [2742] = 2635, + [2743] = 2589, + [2744] = 2605, + [2745] = 2745, + [2746] = 2658, + [2747] = 2747, + [2748] = 2651, + [2749] = 2749, + [2750] = 2608, + [2751] = 2597, + [2752] = 2590, + [2753] = 2591, + [2754] = 2617, + [2755] = 2755, + [2756] = 2615, + [2757] = 2582, + [2758] = 2605, + [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] = { @@ -5841,239 +5822,237 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(56); - if (lookahead == '\r') SKIP(53); - if (lookahead == '!') ADVANCE(21); - if (lookahead == '#') ADVANCE(160); - if (lookahead == '%') ADVANCE(96); - if (lookahead == '&') ADVANCE(100); - if (lookahead == '(') ADVANCE(60); - if (lookahead == ')') ADVANCE(61); - if (lookahead == '*') ADVANCE(64); - if (lookahead == '+') ADVANCE(92); - if (lookahead == ',') ADVANCE(62); - if (lookahead == '-') ADVANCE(86); - if (lookahead == '.') ADVANCE(59); - if (lookahead == '/') ADVANCE(93); - if (lookahead == '0') ADVANCE(138); - if (lookahead == ':') ADVANCE(71); - if (lookahead == ';') ADVANCE(57); - if (lookahead == '<') ADVANCE(106); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(112); - if (lookahead == '@') ADVANCE(83); - if (lookahead == '[') ADVANCE(80); - if (lookahead == '\\') ADVANCE(132); - if (lookahead == ']') ADVANCE(81); - if (lookahead == '^') ADVANCE(102); - if (lookahead == 'e') ADVANCE(157); - if (lookahead == '{') ADVANCE(89); - if (lookahead == '|') ADVANCE(88); - if (lookahead == '}') ADVANCE(90); - if (lookahead == '~') ADVANCE(105); + if (eof) ADVANCE(54); + if (lookahead == '\r') SKIP(51); + if (lookahead == '!') ADVANCE(20); + 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(53); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); + lookahead == 0xfeff) SKIP(51); + 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(161); + if (lookahead == '\n') ADVANCE(155); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(129); + if (lookahead == '\n') ADVANCE(127); END_STATE(); case 3: if (lookahead == '\n') SKIP(3); - if (lookahead == '\r') ADVANCE(134); - if (lookahead == '#') ADVANCE(135); - if (lookahead == '\\') ADVANCE(133); - if (lookahead == '{') ADVANCE(89); - if (lookahead == '}') ADVANCE(90); + 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(134); - if (lookahead != 0) ADVANCE(135); + lookahead == 0xfeff) ADVANCE(132); + if (lookahead != 0) ADVANCE(133); END_STATE(); case 4: if (lookahead == '\r') SKIP(4); - if (lookahead == '!') ADVANCE(20); - if (lookahead == '#') ADVANCE(160); - if (lookahead == '%') ADVANCE(96); - if (lookahead == '&') ADVANCE(100); - if (lookahead == '(') ADVANCE(60); - if (lookahead == '*') ADVANCE(64); - if (lookahead == '+') ADVANCE(92); - if (lookahead == ',') ADVANCE(62); - if (lookahead == '-') ADVANCE(85); - if (lookahead == '.') ADVANCE(59); - if (lookahead == '/') ADVANCE(93); - if (lookahead == '0') ADVANCE(138); - if (lookahead == ':') ADVANCE(71); - if (lookahead == ';') ADVANCE(57); - if (lookahead == '<') ADVANCE(106); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(112); - if (lookahead == '@') ADVANCE(83); - if (lookahead == '[') ADVANCE(80); + if (lookahead == '!') ADVANCE(19); + 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(102); - if (lookahead == 'e') ADVANCE(158); - if (lookahead == '{') ADVANCE(89); - if (lookahead == '|') ADVANCE(88); - if (lookahead == '~') ADVANCE(105); + 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(139); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); + 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(21); - if (lookahead == '#') ADVANCE(160); - if (lookahead == '%') ADVANCE(95); - if (lookahead == '&') ADVANCE(99); - if (lookahead == '(') ADVANCE(60); - if (lookahead == ')') ADVANCE(61); - if (lookahead == '*') ADVANCE(65); - if (lookahead == '+') ADVANCE(91); - if (lookahead == ',') ADVANCE(62); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '.') ADVANCE(59); - if (lookahead == '/') ADVANCE(94); - if (lookahead == '0') ADVANCE(138); - if (lookahead == ':') ADVANCE(71); - if (lookahead == ';') ADVANCE(57); - if (lookahead == '<') ADVANCE(107); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(113); - if (lookahead == '@') ADVANCE(82); - if (lookahead == '[') ADVANCE(80); + if (lookahead == '!') ADVANCE(20); + 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(81); - if (lookahead == '^') ADVANCE(101); - if (lookahead == 'e') ADVANCE(158); - if (lookahead == '{') ADVANCE(89); - if (lookahead == '|') ADVANCE(87); - if (lookahead == '}') ADVANCE(90); - if (lookahead == '~') ADVANCE(105); + 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(139); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); + 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(160); - if (lookahead == '%') ADVANCE(22); - if (lookahead == '&') ADVANCE(23); - if (lookahead == '(') ADVANCE(60); - if (lookahead == '*') ADVANCE(66); - if (lookahead == '+') ADVANCE(92); - if (lookahead == '-') ADVANCE(85); - if (lookahead == '.') ADVANCE(16); - if (lookahead == '/') ADVANCE(18); - if (lookahead == '0') ADVANCE(138); - if (lookahead == ':') ADVANCE(70); - if (lookahead == ';') ADVANCE(57); - if (lookahead == '<') ADVANCE(19); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(32); - if (lookahead == '@') ADVANCE(24); - if (lookahead == '[') ADVANCE(80); + if (lookahead == '#') ADVANCE(154); + if (lookahead == '%') ADVANCE(21); + if (lookahead == '&') ADVANCE(22); + 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(136); + if (lookahead == ':') ADVANCE(68); + if (lookahead == ';') ADVANCE(55); + if (lookahead == '<') ADVANCE(18); + if (lookahead == '=') ADVANCE(74); + if (lookahead == '>') ADVANCE(31); + if (lookahead == '@') ADVANCE(23); + if (lookahead == '[') ADVANCE(76); if (lookahead == '\\') ADVANCE(10); - if (lookahead == '^') ADVANCE(25); - if (lookahead == 'e') ADVANCE(158); - if (lookahead == '{') ADVANCE(89); - if (lookahead == '|') ADVANCE(26); - if (lookahead == '~') ADVANCE(105); + if (lookahead == '^') ADVANCE(24); + if (lookahead == '{') ADVANCE(85); + if (lookahead == '|') ADVANCE(25); + if (lookahead == '~') ADVANCE(101); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(6); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); + 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(20); - if (lookahead == '#') ADVANCE(160); - if (lookahead == '%') ADVANCE(96); - if (lookahead == '&') ADVANCE(100); - if (lookahead == '(') ADVANCE(60); - if (lookahead == ')') ADVANCE(61); - if (lookahead == '*') ADVANCE(64); - if (lookahead == '+') ADVANCE(92); - if (lookahead == ',') ADVANCE(62); - if (lookahead == '-') ADVANCE(85); - if (lookahead == '.') ADVANCE(58); - if (lookahead == '/') ADVANCE(93); - if (lookahead == ':') ADVANCE(71); - if (lookahead == ';') ADVANCE(57); - if (lookahead == '<') ADVANCE(106); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(112); - if (lookahead == '@') ADVANCE(83); - if (lookahead == '[') ADVANCE(80); + if (lookahead == '!') ADVANCE(19); + 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(81); - if (lookahead == '^') ADVANCE(102); - if (lookahead == '|') ADVANCE(88); - if (lookahead == '}') ADVANCE(90); + 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, 685, lookahead)) ADVANCE(159); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(153); END_STATE(); case 8: if (lookahead == '\r') SKIP(8); - if (lookahead == '!') ADVANCE(20); - if (lookahead == '#') ADVANCE(160); - if (lookahead == '%') ADVANCE(96); - if (lookahead == '&') ADVANCE(100); - if (lookahead == '(') ADVANCE(60); - if (lookahead == '*') ADVANCE(64); - if (lookahead == '+') ADVANCE(92); - if (lookahead == ',') ADVANCE(62); - if (lookahead == '-') ADVANCE(85); - if (lookahead == '.') ADVANCE(58); - if (lookahead == '/') ADVANCE(93); - if (lookahead == ':') ADVANCE(71); - if (lookahead == ';') ADVANCE(57); - if (lookahead == '<') ADVANCE(106); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(112); - if (lookahead == '@') ADVANCE(83); - if (lookahead == '[') ADVANCE(80); + if (lookahead == '!') ADVANCE(19); + 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(102); - if (lookahead == 'e') ADVANCE(158); - if (lookahead == '|') ADVANCE(88); + 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, 685, lookahead)) ADVANCE(159); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(153); END_STATE(); case 9: if (lookahead == '\r') SKIP(9); - if (lookahead == '#') ADVANCE(160); - if (lookahead == '-') ADVANCE(31); - if (lookahead == ':') ADVANCE(70); + if (lookahead == '#') ADVANCE(154); + if (lookahead == '-') ADVANCE(30); + if (lookahead == ':') ADVANCE(68); if (lookahead == '\\') ADVANCE(10); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || @@ -6084,285 +6063,255 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 10: if (lookahead == '\r') ADVANCE(1); if ((!eof && lookahead == 00) || - lookahead == '\n') ADVANCE(161); + lookahead == '\n') ADVANCE(155); END_STATE(); case 11: if (lookahead == '\r') SKIP(11); - if (lookahead == '!') ADVANCE(20); - if (lookahead == '#') ADVANCE(160); - if (lookahead == '%') ADVANCE(96); - if (lookahead == '&') ADVANCE(100); - if (lookahead == '(') ADVANCE(60); - if (lookahead == '*') ADVANCE(64); - if (lookahead == '+') ADVANCE(92); - if (lookahead == ',') ADVANCE(62); - if (lookahead == '-') ADVANCE(85); - if (lookahead == '.') ADVANCE(59); - if (lookahead == '/') ADVANCE(93); - if (lookahead == '0') ADVANCE(138); - if (lookahead == ':') ADVANCE(70); - if (lookahead == ';') ADVANCE(57); - if (lookahead == '<') ADVANCE(106); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(112); - if (lookahead == '@') ADVANCE(83); - if (lookahead == '[') ADVANCE(80); + if (lookahead == '!') ADVANCE(19); + 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(102); - if (lookahead == 'e') ADVANCE(158); - if (lookahead == '{') ADVANCE(89); - if (lookahead == '|') ADVANCE(88); - if (lookahead == '~') ADVANCE(105); + 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(139); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); + 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(21); - if (lookahead == '#') ADVANCE(160); - if (lookahead == '%') ADVANCE(95); - if (lookahead == '&') ADVANCE(99); - if (lookahead == '(') ADVANCE(60); - if (lookahead == ')') ADVANCE(61); - if (lookahead == '*') ADVANCE(65); - if (lookahead == '+') ADVANCE(91); - if (lookahead == ',') ADVANCE(62); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '.') ADVANCE(59); - if (lookahead == '/') ADVANCE(94); - if (lookahead == '0') ADVANCE(138); - if (lookahead == ':') ADVANCE(70); - if (lookahead == ';') ADVANCE(57); - if (lookahead == '<') ADVANCE(107); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(113); - if (lookahead == '@') ADVANCE(82); - if (lookahead == '[') ADVANCE(80); + if (lookahead == '!') ADVANCE(20); + 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(81); - if (lookahead == '^') ADVANCE(101); - if (lookahead == 'e') ADVANCE(158); - if (lookahead == '{') ADVANCE(89); - if (lookahead == '|') ADVANCE(87); - if (lookahead == '}') ADVANCE(90); - if (lookahead == '~') ADVANCE(105); + 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(139); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); + 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(21); - if (lookahead == '#') ADVANCE(160); - if (lookahead == '%') ADVANCE(96); - if (lookahead == '&') ADVANCE(100); - if (lookahead == '(') ADVANCE(60); - if (lookahead == ')') ADVANCE(61); - if (lookahead == '*') ADVANCE(64); - if (lookahead == '+') ADVANCE(92); - if (lookahead == ',') ADVANCE(62); - if (lookahead == '-') ADVANCE(85); - if (lookahead == '.') ADVANCE(58); - if (lookahead == '/') ADVANCE(93); - if (lookahead == ':') ADVANCE(70); - if (lookahead == ';') ADVANCE(57); - if (lookahead == '<') ADVANCE(106); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(112); - if (lookahead == '@') ADVANCE(83); - if (lookahead == '[') ADVANCE(80); + if (lookahead == '!') ADVANCE(20); + 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(81); - if (lookahead == '^') ADVANCE(102); - if (lookahead == '|') ADVANCE(88); - if (lookahead == '}') ADVANCE(90); + 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, 685, lookahead)) ADVANCE(159); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(153); END_STATE(); case 14: if (lookahead == '\r') SKIP(14); - if (lookahead == '!') ADVANCE(21); - if (lookahead == '#') ADVANCE(160); - if (lookahead == '%') ADVANCE(95); - if (lookahead == '&') ADVANCE(99); - if (lookahead == '(') ADVANCE(60); - if (lookahead == ')') ADVANCE(61); - if (lookahead == '*') ADVANCE(65); - if (lookahead == '+') ADVANCE(91); - if (lookahead == ',') ADVANCE(62); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '.') ADVANCE(58); - if (lookahead == '/') ADVANCE(94); - if (lookahead == ':') ADVANCE(70); - if (lookahead == ';') ADVANCE(57); - if (lookahead == '<') ADVANCE(107); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(113); - if (lookahead == '@') ADVANCE(82); - if (lookahead == '[') ADVANCE(80); + if (lookahead == '!') ADVANCE(20); + 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(81); - if (lookahead == '^') ADVANCE(101); - if (lookahead == '|') ADVANCE(87); - if (lookahead == '}') ADVANCE(90); + 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, 685, lookahead)) ADVANCE(159); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(153); END_STATE(); case 15: - if (lookahead == '\r') SKIP(15); - if (lookahead == '!') ADVANCE(21); - if (lookahead == '#') ADVANCE(160); - if (lookahead == '%') ADVANCE(95); - if (lookahead == '&') ADVANCE(99); - if (lookahead == '(') ADVANCE(60); - if (lookahead == ')') ADVANCE(61); - if (lookahead == '*') ADVANCE(65); - if (lookahead == '+') ADVANCE(91); - if (lookahead == ',') ADVANCE(62); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '.') ADVANCE(58); - if (lookahead == '/') ADVANCE(94); - if (lookahead == ':') ADVANCE(71); - if (lookahead == ';') ADVANCE(57); - if (lookahead == '<') ADVANCE(107); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(113); - if (lookahead == '@') ADVANCE(82); - if (lookahead == '[') ADVANCE(80); - if (lookahead == '\\') ADVANCE(10); - if (lookahead == ']') ADVANCE(81); - if (lookahead == '^') ADVANCE(101); - if (lookahead == '|') ADVANCE(87); - if (lookahead == '}') ADVANCE(90); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ' || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(15); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); + if (lookahead == '.') ADVANCE(16); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(143); END_STATE(); case 16: - if (lookahead == '.') ADVANCE(17); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(145); + if (lookahead == '.') ADVANCE(126); END_STATE(); case 17: - if (lookahead == '.') ADVANCE(128); + if (lookahead == '/') ADVANCE(27); + if (lookahead == '=') ADVANCE(116); END_STATE(); case 18: - if (lookahead == '/') ADVANCE(28); - if (lookahead == '=') ADVANCE(118); + if (lookahead == '<') ADVANCE(28); END_STATE(); case 19: - if (lookahead == '<') ADVANCE(29); + if (lookahead == '=') ADVANCE(107); END_STATE(); case 20: - if (lookahead == '=') ADVANCE(110); + if (lookahead == '=') ADVANCE(107); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(134); END_STATE(); case 21: - if (lookahead == '=') ADVANCE(110); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(136); + if (lookahead == '=') ADVANCE(119); END_STATE(); case 22: - if (lookahead == '=') ADVANCE(121); + if (lookahead == '=') ADVANCE(123); END_STATE(); case 23: - if (lookahead == '=') ADVANCE(125); + if (lookahead == '=') ADVANCE(117); END_STATE(); case 24: - if (lookahead == '=') ADVANCE(119); + if (lookahead == '=') ADVANCE(124); END_STATE(); case 25: - if (lookahead == '=') ADVANCE(126); + if (lookahead == '=') ADVANCE(125); END_STATE(); case 26: - if (lookahead == '=') ADVANCE(127); + if (lookahead == '=') ADVANCE(120); END_STATE(); case 27: - if (lookahead == '=') ADVANCE(122); + if (lookahead == '=') ADVANCE(118); END_STATE(); case 28: - if (lookahead == '=') ADVANCE(120); + if (lookahead == '=') ADVANCE(122); END_STATE(); case 29: - if (lookahead == '=') ADVANCE(124); + if (lookahead == '=') ADVANCE(121); END_STATE(); case 30: - if (lookahead == '=') ADVANCE(123); + if (lookahead == '>') ADVANCE(71); END_STATE(); case 31: - if (lookahead == '>') ADVANCE(75); + if (lookahead == '>') ADVANCE(29); END_STATE(); case 32: - if (lookahead == '>') ADVANCE(30); + if (lookahead == '_') ADVANCE(38); + if (lookahead == '0' || + lookahead == '1') ADVANCE(139); END_STATE(); case 33: if (lookahead == '_') ADVANCE(39); - if (lookahead == '0' || - lookahead == '1') ADVANCE(141); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(140); END_STATE(); case 34: - if (lookahead == '_') ADVANCE(40); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(142); - END_STATE(); - case 35: - if (lookahead == '_') ADVANCE(43); + if (lookahead == '_') ADVANCE(42); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(143); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(141); + END_STATE(); + case 35: + if (lookahead == '{') ADVANCE(50); END_STATE(); case 36: - if (lookahead == '{') ADVANCE(52); + if (lookahead == '}') ADVANCE(127); + if (lookahead != 0) ADVANCE(36); END_STATE(); case 37: - if (lookahead == '}') ADVANCE(129); - if (lookahead != 0) ADVANCE(37); + if (lookahead == '+' || + lookahead == '-') ADVANCE(40); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(144); END_STATE(); case 38: - if (lookahead == '+' || - lookahead == '-') ADVANCE(41); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(146); + if (lookahead == '0' || + lookahead == '1') ADVANCE(139); END_STATE(); case 39: - if (lookahead == '0' || - lookahead == '1') ADVANCE(141); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(140); END_STATE(); case 40: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(142); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(144); END_STATE(); case 41: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(146); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(127); END_STATE(); case 42: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(129); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(141); END_STATE(); case 43: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(143); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); END_STATE(); case 44: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(42); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43); END_STATE(); case 45: if (('0' <= lookahead && lookahead <= '9') || @@ -6390,607 +6339,580 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(48); END_STATE(); case 50: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(49); - END_STATE(); - case 51: - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(136); - END_STATE(); - case 52: if (lookahead != 0 && - lookahead != '}') ADVANCE(37); + lookahead != '}') ADVANCE(36); END_STATE(); - case 53: - if (eof) ADVANCE(56); - if (lookahead == '\r') SKIP(53); - if (lookahead == '!') ADVANCE(21); - if (lookahead == '#') ADVANCE(160); - if (lookahead == '%') ADVANCE(96); - if (lookahead == '&') ADVANCE(100); - if (lookahead == '(') ADVANCE(60); - if (lookahead == ')') ADVANCE(61); - if (lookahead == '*') ADVANCE(64); - if (lookahead == '+') ADVANCE(92); - if (lookahead == ',') ADVANCE(62); - if (lookahead == '-') ADVANCE(86); - if (lookahead == '.') ADVANCE(59); - if (lookahead == '/') ADVANCE(93); - if (lookahead == '0') ADVANCE(138); - if (lookahead == ':') ADVANCE(71); - if (lookahead == ';') ADVANCE(57); - if (lookahead == '<') ADVANCE(106); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(112); - if (lookahead == '@') ADVANCE(83); - if (lookahead == '[') ADVANCE(80); + case 51: + if (eof) ADVANCE(54); + if (lookahead == '\r') SKIP(51); + if (lookahead == '!') ADVANCE(20); + 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(81); - if (lookahead == '^') ADVANCE(102); - if (lookahead == 'e') ADVANCE(157); - if (lookahead == '{') ADVANCE(89); - if (lookahead == '|') ADVANCE(88); - if (lookahead == '}') ADVANCE(90); - if (lookahead == '~') ADVANCE(105); + 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(53); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); + lookahead == 0xfeff) SKIP(51); + 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(56); - if (lookahead == '\r') SKIP(54); - if (lookahead == '!') ADVANCE(51); - if (lookahead == '#') ADVANCE(160); - if (lookahead == '(') ADVANCE(60); - if (lookahead == ')') ADVANCE(61); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '+') ADVANCE(91); - if (lookahead == ',') ADVANCE(62); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '.') ADVANCE(16); - if (lookahead == '0') ADVANCE(138); - if (lookahead == ':') ADVANCE(70); - if (lookahead == ';') ADVANCE(57); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '@') ADVANCE(82); - if (lookahead == '[') ADVANCE(80); + case 52: + if (eof) ADVANCE(54); + if (lookahead == '\r') SKIP(52); + if (lookahead == '!') ADVANCE(20); + 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(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(81); - if (lookahead == 'e') ADVANCE(158); - if (lookahead == '{') ADVANCE(89); - if (lookahead == '|') ADVANCE(87); - if (lookahead == '}') ADVANCE(90); - if (lookahead == '~') ADVANCE(105); + 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(54); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); + lookahead == 0xfeff) SKIP(52); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(137); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(153); END_STATE(); - case 55: - if (eof) ADVANCE(56); - if (lookahead == '\r') SKIP(55); - if (lookahead == '#') ADVANCE(160); - if (lookahead == '(') ADVANCE(60); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '+') ADVANCE(91); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '.') ADVANCE(16); - if (lookahead == '0') ADVANCE(138); - if (lookahead == '@') ADVANCE(82); - if (lookahead == '[') ADVANCE(80); + case 53: + if (eof) ADVANCE(54); + if (lookahead == '\r') SKIP(53); + if (lookahead == '#') ADVANCE(154); + if (lookahead == '(') ADVANCE(58); + if (lookahead == '*') ADVANCE(61); + if (lookahead == '+') ADVANCE(87); + if (lookahead == '-') ADVANCE(80); + if (lookahead == '.') ADVANCE(15); + if (lookahead == '0') ADVANCE(136); + if (lookahead == '@') ADVANCE(78); + if (lookahead == '[') ADVANCE(76); if (lookahead == '\\') ADVANCE(10); - if (lookahead == 'e') ADVANCE(157); - if (lookahead == '{') ADVANCE(89); - if (lookahead == '~') ADVANCE(105); + 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(55); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(159); + lookahead == 0xfeff) SKIP(53); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(137); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(153); END_STATE(); - case 56: + case 54: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 57: + case 55: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 58: + case 56: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 59: + case 57: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(17); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(145); + if (lookahead == '.') ADVANCE(16); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(143); END_STATE(); - case 60: + case 58: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 61: + case 59: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 62: + case 60: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); + case 61: + 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(72); END_STATE(); case 64: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(77); - if (lookahead == '=') ADVANCE(117); + if (lookahead == '*') ADVANCE(26); + if (lookahead == '=') ADVANCE(115); END_STATE(); case 65: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(76); + ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); case 66: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(27); - if (lookahead == '=') ADVANCE(117); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(121); END_STATE(); case 67: - ACCEPT_TOKEN(anon_sym_GT_GT); + ACCEPT_TOKEN(anon_sym_COLON_EQ); END_STATE(); case 68: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(123); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 69: - ACCEPT_TOKEN(anon_sym_COLON_EQ); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '=') ADVANCE(67); END_STATE(); case 70: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_except_STAR); END_STATE(); case 71: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '=') ADVANCE(69); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 72: - ACCEPT_TOKEN(anon_sym_except); - if (lookahead == '*') ADVANCE(74); - if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 73: - ACCEPT_TOKEN(anon_sym_except); - if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(120); END_STATE(); case 74: - ACCEPT_TOKEN(anon_sym_except_STAR); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 75: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(106); END_STATE(); case 76: - ACCEPT_TOKEN(anon_sym_STAR_STAR); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 77: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(122); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 78: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 79: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(109); + ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == '=') ADVANCE(117); END_STATE(); case 80: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 81: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(114); END_STATE(); case 82: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(114); + if (lookahead == '>') ADVANCE(71); END_STATE(); case 83: - ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == '=') ADVANCE(119); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 84: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(125); END_STATE(); case 85: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(116); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 86: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(116); - if (lookahead == '>') ADVANCE(75); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 87: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 88: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(127); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(113); END_STATE(); case 89: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(94); + if (lookahead == '=') ADVANCE(116); END_STATE(); case 90: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(93); END_STATE(); case 91: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 92: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(115); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(119); END_STATE(); case 93: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(98); - if (lookahead == '=') ADVANCE(118); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); case 94: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(97); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + if (lookahead == '=') ADVANCE(118); END_STATE(); case 95: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 96: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(121); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '=') ADVANCE(123); END_STATE(); case 97: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 98: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == '=') ADVANCE(120); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(124); END_STATE(); case 99: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 100: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '=') ADVANCE(125); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(122); END_STATE(); case 101: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(126); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(100); + if (lookahead == '=') ADVANCE(105); + if (lookahead == '>') ADVANCE(112); END_STATE(); case 103: - ACCEPT_TOKEN(anon_sym_LT_LT); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(99); + if (lookahead == '=') ADVANCE(105); + if (lookahead == '>') ADVANCE(112); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(124); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(105); + if (lookahead == '>') ADVANCE(112); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 106: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '=') ADVANCE(108); - if (lookahead == '>') ADVANCE(114); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(103); - if (lookahead == '=') ADVANCE(108); - if (lookahead == '>') ADVANCE(114); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 108: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(108); END_STATE(); case 110: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(108); + if (lookahead == '>') ADVANCE(66); END_STATE(); case 111: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(108); + if (lookahead == '>') ADVANCE(65); END_STATE(); case 112: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(111); - if (lookahead == '>') ADVANCE(68); + ACCEPT_TOKEN(anon_sym_LT_GT); END_STATE(); case 113: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(111); - if (lookahead == '>') ADVANCE(67); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_LT_GT); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 115: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 116: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 117: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_AT_EQ); END_STATE(); case 118: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH_EQ); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_AT_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 120: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 122: - ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(sym_ellipsis); END_STATE(); case 127: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); case 128: - ACCEPT_TOKEN(sym_ellipsis); + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(127); END_STATE(); case 129: ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(128); END_STATE(); case 130: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(129); - END_STATE(); - case 131: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); - END_STATE(); - case 132: ACCEPT_TOKEN(anon_sym_BSLASH); ADVANCE_MAP( - 0, 161, - '\n', 129, + 0, 155, + '\n', 127, '\r', 2, - 'N', 36, - 'U', 50, - 'u', 46, - 'x', 44, - '"', 129, - '\'', 129, - '\\', 129, - 'a', 129, - 'b', 129, - 'f', 129, - 'n', 129, - 'r', 129, - 't', 129, - 'v', 129, + 'N', 35, + 'U', 49, + 'u', 45, + 'x', 43, + '"', 127, + '\'', 127, + '\\', 127, + 'a', 127, + 'b', 127, + 'f', 127, + 'n', 127, + 'r', 127, + 't', 127, + 'v', 127, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(131); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(129); END_STATE(); - case 133: + case 131: ACCEPT_TOKEN(aux_sym_format_specifier_token1); - if ((!eof && lookahead == 00)) ADVANCE(135); - if (lookahead == '\r') ADVANCE(135); + if ((!eof && lookahead == 00)) ADVANCE(133); + if (lookahead == '\r') ADVANCE(133); if (lookahead != 0 && lookahead != '\n' && lookahead != '{' && - lookahead != '}') ADVANCE(135); + lookahead != '}') ADVANCE(133); END_STATE(); - case 134: + case 132: ACCEPT_TOKEN(aux_sym_format_specifier_token1); ADVANCE_MAP( - '\r', 134, - '#', 135, - '\\', 133, - '\t', 134, - 0x0b, 134, - '\f', 134, - ' ', 134, - 0x200b, 134, - 0x2060, 134, - 0xfeff, 134, + '\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(135); + lookahead != '}') ADVANCE(133); END_STATE(); - case 135: + case 133: ACCEPT_TOKEN(aux_sym_format_specifier_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '{' && - lookahead != '}') ADVANCE(135); + lookahead != '}') ADVANCE(133); END_STATE(); - case 136: + case 134: ACCEPT_TOKEN(sym_type_conversion); END_STATE(); - case 137: + case 135: ACCEPT_TOKEN(sym_integer); END_STATE(); - case 138: + case 136: ACCEPT_TOKEN(sym_integer); ADVANCE_MAP( - '.', 147, - '_', 140, - 'B', 33, - 'b', 33, - 'E', 38, - 'e', 38, - 'O', 34, - 'o', 34, - 'X', 35, - 'x', 35, - 'J', 137, - 'L', 137, - 'j', 137, - 'l', 137, + '.', 145, + '_', 138, + 'B', 32, + 'b', 32, + 'E', 37, + 'e', 37, + 'O', 33, + 'o', 33, + 'X', 34, + 'x', 34, + 'J', 135, + 'L', 135, + 'j', 135, + 'l', 135, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(139); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(137); END_STATE(); - case 139: + case 137: ACCEPT_TOKEN(sym_integer); ADVANCE_MAP( - '.', 147, - '_', 140, - 'E', 38, - 'e', 38, - 'J', 137, - 'L', 137, - 'j', 137, - 'l', 137, + '.', 145, + '_', 138, + 'E', 37, + 'e', 37, + 'J', 135, + 'L', 135, + 'j', 135, + 'l', 135, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(139); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(137); END_STATE(); - case 140: + case 138: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(147); + if (lookahead == '.') ADVANCE(145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(38); + lookahead == 'e') ADVANCE(37); if (lookahead == 'J' || lookahead == 'L' || lookahead == 'j' || - lookahead == 'l') ADVANCE(137); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(139); + lookahead == 'l') ADVANCE(135); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(137); END_STATE(); - case 141: + case 139: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(39); + if (lookahead == '_') ADVANCE(38); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(137); + lookahead == 'l') ADVANCE(135); if (lookahead == '0' || - lookahead == '1') ADVANCE(141); + lookahead == '1') ADVANCE(139); END_STATE(); - case 142: + case 140: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(40); + if (lookahead == '_') ADVANCE(39); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(137); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(142); + lookahead == 'l') ADVANCE(135); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(140); END_STATE(); - case 143: + case 141: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(43); + if (lookahead == '_') ADVANCE(42); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(137); + lookahead == 'l') ADVANCE(135); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(143); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(141); END_STATE(); - case 144: + case 142: ACCEPT_TOKEN(sym_float); END_STATE(); - case 145: + case 143: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(147); + if (lookahead == '_') ADVANCE(145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(38); + lookahead == 'e') ADVANCE(37); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(144); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(145); + lookahead == 'j') ADVANCE(142); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(143); END_STATE(); - case 146: + case 144: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(148); + if (lookahead == '_') ADVANCE(146); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(144); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(146); + lookahead == 'j') ADVANCE(142); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(144); END_STATE(); - case 147: + case 145: ACCEPT_TOKEN(sym_float); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(38); + lookahead == 'e') ADVANCE(37); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(144); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(145); + lookahead == 'j') ADVANCE(142); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(143); END_STATE(); - case 148: + case 146: ACCEPT_TOKEN(sym_float); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(144); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(146); + lookahead == 'j') ADVANCE(142); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(144); + END_STATE(); + case 147: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '*') ADVANCE(70); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(153); + END_STATE(); + case 148: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(149); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(153); END_STATE(); case 149: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(151); - if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); + if (lookahead == 'e') ADVANCE(150); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(153); END_STATE(); case 150: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(152); - if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); + if (lookahead == 'p') ADVANCE(151); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(153); END_STATE(); case 151: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(153); - if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); + if (lookahead == 't') ADVANCE(147); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(153); END_STATE(); case 152: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(154); - if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); + if (lookahead == 'x') ADVANCE(148); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(153); END_STATE(); case 153: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(155); - if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(153); END_STATE(); case 154: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(156); - if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); - END_STATE(); - case 155: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(72); - if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); - END_STATE(); - case 156: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(73); - if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); - END_STATE(); - case 157: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'x') ADVANCE(149); - if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); - END_STATE(); - case 158: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'x') ADVANCE(150); - if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); - END_STATE(); - case 159: - ACCEPT_TOKEN(sym_identifier); - if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(159); - END_STATE(); - case 160: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(160); + lookahead != '\n') ADVANCE(154); END_STATE(); - case 161: + case 155: ACCEPT_TOKEN(sym_line_continuation); END_STATE(); default: @@ -7153,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); @@ -7180,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); @@ -7262,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: @@ -7529,78 +7464,78 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [2] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [3] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [4] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [5] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [6] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [7] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [8] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [9] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [10] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [11] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [12] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [13] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [14] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [15] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [16] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 2}, - [17] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [18] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [19] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [20] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [21] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [22] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [23] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [24] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [25] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [26] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [27] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [28] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [29] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [30] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [31] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [32] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [33] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [34] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [35] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [36] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [37] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [38] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [39] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [40] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [41] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [42] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [43] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [44] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [45] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [46] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [47] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 2}, - [48] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [49] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [50] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [51] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [52] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [53] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [54] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [55] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [56] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [57] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [58] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [59] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [60] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [61] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [62] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [63] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [64] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [65] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 2}, - [66] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [67] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 2}, - [68] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [69] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [70] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, + [1] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [7] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [8] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [9] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [10] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [11] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [12] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 2}, + [13] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [14] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [15] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [16] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [17] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [18] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [19] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [20] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [21] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [22] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [23] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [24] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [25] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [26] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [27] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [28] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [29] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [30] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [31] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [32] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [33] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [34] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [35] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [36] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [37] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [38] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [39] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [40] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [41] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [42] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [43] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [44] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [45] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [46] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [47] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [48] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [49] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [50] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [51] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 2}, + [52] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [53] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [54] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [55] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [56] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [57] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [58] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [59] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [60] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [61] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [62] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [63] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [64] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 2}, + [65] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [66] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [67] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 2}, + [68] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [69] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [70] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, [71] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, - [72] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [72] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, [73] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, [74] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, [75] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, @@ -7608,2715 +7543,2703 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [77] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, [78] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, [79] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, - [80] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, + [80] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, [81] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, [82] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, [83] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, - [84] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, - [85] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [86] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [87] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [88] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [89] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [90] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [91] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [92] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [93] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [94] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [95] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [96] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 3}, - [97] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [98] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [99] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [100] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [101] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [102] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [103] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [104] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [105] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [106] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [107] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [108] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [109] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [110] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [111] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [112] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [113] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [114] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [115] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [116] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [117] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [118] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [119] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [120] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [121] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [122] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [123] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [124] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [125] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [126] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [127] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [128] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [129] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [130] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [131] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [132] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [133] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 1}, - [134] = {.lex_state = 54, .external_lex_state = 5, .reserved_word_set_id = 3}, - [135] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, - [136] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, - [137] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 3}, - [138] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 3}, - [139] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 3}, - [140] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 3}, - [141] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, - [142] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, - [143] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, - [144] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, - [145] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, - [146] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, - [147] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [148] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, - [149] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, - [150] = {.lex_state = 11, .external_lex_state = 4, .reserved_word_set_id = 4}, - [151] = {.lex_state = 5, .external_lex_state = 4, .reserved_word_set_id = 5}, - [152] = {.lex_state = 12, .external_lex_state = 4, .reserved_word_set_id = 5}, - [153] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 4}, - [154] = {.lex_state = 12, .external_lex_state = 4, .reserved_word_set_id = 5}, - [155] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [156] = {.lex_state = 12, .external_lex_state = 6, .reserved_word_set_id = 6}, - [157] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 7}, - [158] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [84] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [85] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [86] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [87] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [88] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [89] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [90] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [91] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [92] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [93] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [94] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [95] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [96] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [97] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [98] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [99] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [100] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [101] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [102] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [103] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [104] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [105] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 3}, + [106] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [107] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [108] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [109] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [110] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 3}, + [111] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [112] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [113] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [114] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [115] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [116] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [117] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [118] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [119] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [120] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [121] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [122] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [123] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [124] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [125] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [126] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [127] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [128] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [129] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [130] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [131] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [132] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [133] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, + [134] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 3}, + [135] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 3}, + [136] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 3}, + [137] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 3}, + [138] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 1}, + [139] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 1}, + [140] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 1}, + [141] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 1}, + [142] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 1}, + [143] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 1}, + [144] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [145] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [146] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [147] = {.lex_state = 11, .external_lex_state = 4, .reserved_word_set_id = 4}, + [148] = {.lex_state = 5, .external_lex_state = 4, .reserved_word_set_id = 5}, + [149] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 4}, + [150] = {.lex_state = 12, .external_lex_state = 4, .reserved_word_set_id = 5}, + [151] = {.lex_state = 12, .external_lex_state = 6, .reserved_word_set_id = 6}, + [152] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [153] = {.lex_state = 12, .external_lex_state = 4, .reserved_word_set_id = 5}, + [154] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 6}, + [155] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 7}, + [156] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 4}, + [157] = {.lex_state = 12, .external_lex_state = 8, .reserved_word_set_id = 6}, + [158] = {.lex_state = 12, .external_lex_state = 6, .reserved_word_set_id = 4}, [159] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 6}, - [160] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 6}, - [161] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 6}, - [162] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 4}, - [163] = {.lex_state = 12, .external_lex_state = 7, .reserved_word_set_id = 6}, + [160] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 6}, + [161] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 6}, + [162] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [163] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 6}, [164] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 6}, - [165] = {.lex_state = 12, .external_lex_state = 6, .reserved_word_set_id = 4}, - [166] = {.lex_state = 12, .external_lex_state = 6, .reserved_word_set_id = 6}, - [167] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [168] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 6}, - [169] = {.lex_state = 12, .external_lex_state = 8, .reserved_word_set_id = 6}, - [170] = {.lex_state = 11, .external_lex_state = 4, .reserved_word_set_id = 1}, - [171] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 6}, - [172] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [173] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 7}, - [174] = {.lex_state = 12, .external_lex_state = 8, .reserved_word_set_id = 6}, - [175] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 4}, - [176] = {.lex_state = 12, .external_lex_state = 7, .reserved_word_set_id = 4}, - [177] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [178] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 7}, - [179] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 6}, - [180] = {.lex_state = 12, .external_lex_state = 8, .reserved_word_set_id = 4}, - [181] = {.lex_state = 11, .external_lex_state = 2, .reserved_word_set_id = 1}, - [182] = {.lex_state = 11, .external_lex_state = 2, .reserved_word_set_id = 1}, - [183] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [184] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, - [185] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, - [186] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, - [187] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, - [188] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [165] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [166] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 7}, + [167] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [168] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [169] = {.lex_state = 11, .external_lex_state = 4, .reserved_word_set_id = 1}, + [170] = {.lex_state = 12, .external_lex_state = 6, .reserved_word_set_id = 6}, + [171] = {.lex_state = 12, .external_lex_state = 7, .reserved_word_set_id = 6}, + [172] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 7}, + [173] = {.lex_state = 12, .external_lex_state = 7, .reserved_word_set_id = 6}, + [174] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 4}, + [175] = {.lex_state = 12, .external_lex_state = 8, .reserved_word_set_id = 4}, + [176] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 6}, + [177] = {.lex_state = 12, .external_lex_state = 7, .reserved_word_set_id = 4}, + [178] = {.lex_state = 11, .external_lex_state = 2, .reserved_word_set_id = 1}, + [179] = {.lex_state = 11, .external_lex_state = 2, .reserved_word_set_id = 1}, + [180] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [181] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [182] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, + [183] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, + [184] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [185] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, + [186] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, + [187] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, + [188] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, [189] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, - [190] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, - [191] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, - [192] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, - [193] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [190] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, + [191] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, + [192] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, + [193] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, [194] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, - [195] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, - [196] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [197] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, - [198] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, - [199] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, + [195] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, + [196] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, + [197] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, + [198] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, + [199] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, [200] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, - [201] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, - [202] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, - [203] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, - [204] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, - [205] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, - [206] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, - [207] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, - [208] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, - [209] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, - [210] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, - [211] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, - [212] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [213] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [214] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, - [215] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, - [216] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, - [217] = {.lex_state = 6, .external_lex_state = 4, .reserved_word_set_id = 1}, - [218] = {.lex_state = 6, .external_lex_state = 4, .reserved_word_set_id = 1}, - [219] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [220] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [221] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [222] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [223] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [224] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [225] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [226] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [227] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [228] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [229] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, - [230] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [231] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, - [232] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [233] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, - [234] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [235] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, - [236] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [201] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, + [202] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, + [203] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, + [204] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, + [205] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, + [206] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, + [207] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, + [208] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, + [209] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, + [210] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, + [211] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, + [212] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, + [213] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, + [214] = {.lex_state = 6, .external_lex_state = 4, .reserved_word_set_id = 1}, + [215] = {.lex_state = 6, .external_lex_state = 4, .reserved_word_set_id = 1}, + [216] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [217] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [218] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [219] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [220] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [221] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [222] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [223] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [224] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [225] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [226] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, + [227] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, + [228] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, + [229] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [230] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, + [231] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [232] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [233] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, + [234] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [235] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [236] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, [237] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, [238] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [239] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [240] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, - [241] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, - [242] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [243] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [239] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [240] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [241] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [242] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [243] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, [244] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, [245] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [246] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [247] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [246] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [247] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, [248] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [249] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, - [250] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [249] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [250] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, [251] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [252] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, + [252] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, [253] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [254] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [255] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [256] = {.lex_state = 54, .external_lex_state = 6, .reserved_word_set_id = 10}, + [254] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [255] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [256] = {.lex_state = 52, .external_lex_state = 6, .reserved_word_set_id = 10}, [257] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, - [258] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, - [259] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [260] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, - [261] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [258] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [259] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, + [260] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [261] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, [262] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [263] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [264] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [265] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [266] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, - [267] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [268] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 8}, - [269] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 8}, - [270] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 8}, - [271] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 8}, - [272] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 8}, - [273] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, - [274] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [275] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [276] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [277] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [278] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [279] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [280] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 8}, - [281] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 8}, - [282] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, - [283] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [284] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [285] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [286] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [287] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 8}, - [288] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 8}, - [289] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, - [290] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [291] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, - [292] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [293] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [294] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [295] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [296] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [297] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [298] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 8}, - [299] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 8}, - [300] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, - [301] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [302] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [303] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [304] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [305] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [306] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 8}, - [307] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 8}, - [308] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [309] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [310] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [311] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [312] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 8}, - [313] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 8}, - [314] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [315] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [316] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [317] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [318] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 8}, - [319] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 8}, - [320] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [321] = {.lex_state = 12, .external_lex_state = 6, .reserved_word_set_id = 1}, - [322] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, - [323] = {.lex_state = 54, .external_lex_state = 6, .reserved_word_set_id = 1}, - [324] = {.lex_state = 54, .external_lex_state = 6, .reserved_word_set_id = 1}, - [325] = {.lex_state = 54, .external_lex_state = 6, .reserved_word_set_id = 1}, - [326] = {.lex_state = 54, .external_lex_state = 6, .reserved_word_set_id = 1}, - [327] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [328] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, - [329] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, - [330] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, - [331] = {.lex_state = 54, .external_lex_state = 6, .reserved_word_set_id = 1}, - [332] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, - [333] = {.lex_state = 54, .external_lex_state = 6, .reserved_word_set_id = 9}, - [334] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, - [335] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, - [336] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, - [337] = {.lex_state = 54, .external_lex_state = 6, .reserved_word_set_id = 9}, - [338] = {.lex_state = 54, .external_lex_state = 6, .reserved_word_set_id = 1}, - [339] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, - [340] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, - [341] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, - [342] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, - [343] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [263] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, + [264] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, + [265] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, + [266] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [267] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [268] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 8}, + [269] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 8}, + [270] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [271] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [272] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [273] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [274] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 8}, + [275] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 8}, + [276] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 8}, + [277] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [278] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [279] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [280] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [281] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 8}, + [282] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 8}, + [283] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, + [284] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [285] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [286] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [287] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [288] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 8}, + [289] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 8}, + [290] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, + [291] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [292] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [293] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [294] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 8}, + [295] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 8}, + [296] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, + [297] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [298] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [299] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [300] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [301] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 8}, + [302] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 8}, + [303] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 8}, + [304] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [305] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [306] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [307] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [308] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 8}, + [309] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 8}, + [310] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 8}, + [311] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [312] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [313] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [314] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [315] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [316] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [317] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [318] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, + [319] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, + [320] = {.lex_state = 12, .external_lex_state = 6, .reserved_word_set_id = 1}, + [321] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, + [322] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, + [323] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, + [324] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, + [325] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, + [326] = {.lex_state = 52, .external_lex_state = 6, .reserved_word_set_id = 1}, + [327] = {.lex_state = 52, .external_lex_state = 6, .reserved_word_set_id = 1}, + [328] = {.lex_state = 52, .external_lex_state = 6, .reserved_word_set_id = 1}, + [329] = {.lex_state = 52, .external_lex_state = 6, .reserved_word_set_id = 1}, + [330] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [331] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, + [332] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, + [333] = {.lex_state = 52, .external_lex_state = 6, .reserved_word_set_id = 9}, + [334] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, + [335] = {.lex_state = 52, .external_lex_state = 6, .reserved_word_set_id = 9}, + [336] = {.lex_state = 52, .external_lex_state = 6, .reserved_word_set_id = 1}, + [337] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, + [338] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, + [339] = {.lex_state = 52, .external_lex_state = 6, .reserved_word_set_id = 1}, + [340] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 1}, + [341] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [342] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [343] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, [344] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [345] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [346] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [347] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [345] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [346] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, + [347] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, [348] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, [349] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, [350] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [351] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [352] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, + [351] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 1}, + [352] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, [353] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [354] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [354] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, [355] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, [356] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, [357] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [358] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, + [358] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, [359] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [360] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, + [360] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, [361] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, [362] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [363] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, - [364] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [365] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, - [366] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, - [367] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, - [368] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, - [369] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, - [370] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, - [371] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, - [372] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, - [373] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, - [374] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, - [375] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, - [376] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 10}, - [377] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, - [378] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, - [379] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, - [380] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, - [381] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, - [382] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, - [383] = {.lex_state = 12, .external_lex_state = 7, .reserved_word_set_id = 1}, - [384] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, - [385] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, - [386] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, - [387] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, - [388] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, - [389] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, - [390] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, - [391] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, - [392] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, - [393] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, - [394] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, - [395] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [396] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, - [397] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, - [398] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, - [399] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, - [400] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, - [401] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 9}, - [402] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 10}, - [403] = {.lex_state = 12, .external_lex_state = 7, .reserved_word_set_id = 1}, - [404] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [405] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [406] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, - [407] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, - [408] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, - [409] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, - [410] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, - [411] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 1}, - [412] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [413] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [414] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, - [415] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, - [416] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [417] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, - [418] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [419] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, - [420] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [421] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [422] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [423] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, - [424] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [425] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, - [426] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, - [427] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [428] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 1}, - [429] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [430] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [431] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [432] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [433] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [434] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [435] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, - [436] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [437] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [438] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, - [439] = {.lex_state = 54, .external_lex_state = 4, .reserved_word_set_id = 1}, - [440] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [441] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [442] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [443] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [444] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [445] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [446] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [447] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [448] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [449] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [450] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [451] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [452] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [453] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [454] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [455] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [456] = {.lex_state = 7, .external_lex_state = 9}, - [457] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [458] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [459] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [460] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [461] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [462] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [463] = {.lex_state = 7, .external_lex_state = 9}, - [464] = {.lex_state = 8, .external_lex_state = 4, .reserved_word_set_id = 1}, - [465] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [466] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [467] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [468] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [469] = {.lex_state = 8, .external_lex_state = 4, .reserved_word_set_id = 1}, - [470] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [471] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [472] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [473] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [474] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [475] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [476] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [477] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [478] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [479] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [480] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [481] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [482] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [483] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [484] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [485] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [486] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [487] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [488] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [489] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [490] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [491] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [492] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [493] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [494] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [495] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [496] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [497] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [498] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [499] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 1}, - [500] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [501] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [502] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [503] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [504] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [505] = {.lex_state = 55, .external_lex_state = 3, .reserved_word_set_id = 1}, - [506] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [507] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [508] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [509] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [510] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [511] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [512] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [513] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [514] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 1}, - [515] = {.lex_state = 55, .external_lex_state = 2, .reserved_word_set_id = 1}, - [516] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 1}, - [517] = {.lex_state = 55, .external_lex_state = 3, .reserved_word_set_id = 1}, - [518] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [519] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [520] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [521] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [522] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [523] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [524] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [525] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [526] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [527] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [528] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [529] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [530] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [531] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [532] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [533] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [534] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [535] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [536] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [537] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [538] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [539] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [540] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [541] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [542] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [543] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [544] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [545] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [546] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [547] = {.lex_state = 55, .external_lex_state = 2, .reserved_word_set_id = 1}, - [548] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [549] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [550] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [551] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [552] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [553] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [554] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [555] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [556] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [557] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [558] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [559] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [560] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [561] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [562] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [563] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [564] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [565] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [566] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [567] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [568] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [569] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [570] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [571] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [572] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [573] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [574] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [575] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [576] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [577] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [578] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [579] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [580] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [581] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [582] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [583] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [584] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [585] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [586] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [587] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [588] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [589] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [590] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [591] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [592] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [593] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [594] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [595] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 1}, - [596] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [597] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [598] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [599] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [600] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [601] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [602] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [603] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [604] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 9}, - [605] = {.lex_state = 7, .external_lex_state = 9}, - [606] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [607] = {.lex_state = 7, .external_lex_state = 9}, - [608] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [609] = {.lex_state = 7, .external_lex_state = 9}, - [610] = {.lex_state = 7, .external_lex_state = 9}, - [611] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [612] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 1}, - [613] = {.lex_state = 55, .external_lex_state = 3, .reserved_word_set_id = 1}, - [614] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [615] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [616] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 1}, - [617] = {.lex_state = 55, .external_lex_state = 2, .reserved_word_set_id = 1}, - [618] = {.lex_state = 7, .external_lex_state = 9}, - [619] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [620] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [621] = {.lex_state = 7, .external_lex_state = 9}, - [622] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [623] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 11}, - [624] = {.lex_state = 13, .external_lex_state = 9}, - [625] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 11}, - [626] = {.lex_state = 13, .external_lex_state = 9}, - [627] = {.lex_state = 13, .external_lex_state = 9}, - [628] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 11}, - [629] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 11}, - [630] = {.lex_state = 13, .external_lex_state = 9}, - [631] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [632] = {.lex_state = 13, .external_lex_state = 9}, - [633] = {.lex_state = 13, .external_lex_state = 9}, - [634] = {.lex_state = 13, .external_lex_state = 9}, - [635] = {.lex_state = 13, .external_lex_state = 9}, - [636] = {.lex_state = 13, .external_lex_state = 9}, - [637] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [638] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 11}, - [639] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 11}, - [640] = {.lex_state = 13, .external_lex_state = 9}, - [641] = {.lex_state = 13, .external_lex_state = 9}, - [642] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 11}, - [643] = {.lex_state = 13, .external_lex_state = 9}, - [644] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 11}, - [645] = {.lex_state = 13, .external_lex_state = 9}, - [646] = {.lex_state = 13, .external_lex_state = 9}, - [647] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 11}, - [648] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 11}, - [649] = {.lex_state = 13, .external_lex_state = 9}, - [650] = {.lex_state = 13, .external_lex_state = 9}, - [651] = {.lex_state = 13, .external_lex_state = 9}, - [652] = {.lex_state = 13, .external_lex_state = 9}, - [653] = {.lex_state = 13, .external_lex_state = 9}, - [654] = {.lex_state = 55, .external_lex_state = 2, .reserved_word_set_id = 1}, - [655] = {.lex_state = 55, .external_lex_state = 2, .reserved_word_set_id = 1}, - [656] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 1}, - [657] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 1}, - [658] = {.lex_state = 55, .external_lex_state = 3, .reserved_word_set_id = 1}, - [659] = {.lex_state = 55, .external_lex_state = 3, .reserved_word_set_id = 1}, - [660] = {.lex_state = 55, .external_lex_state = 2, .reserved_word_set_id = 1}, - [661] = {.lex_state = 55, .external_lex_state = 3, .reserved_word_set_id = 1}, - [662] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 1}, - [663] = {.lex_state = 55, .external_lex_state = 3, .reserved_word_set_id = 1}, - [664] = {.lex_state = 55, .external_lex_state = 3, .reserved_word_set_id = 1}, - [665] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 1}, - [666] = {.lex_state = 55, .external_lex_state = 3, .reserved_word_set_id = 1}, - [667] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 1}, - [668] = {.lex_state = 54, .external_lex_state = 6, .reserved_word_set_id = 1}, - [669] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 1}, - [670] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 1}, - [671] = {.lex_state = 55, .external_lex_state = 2, .reserved_word_set_id = 1}, - [672] = {.lex_state = 55, .external_lex_state = 3, .reserved_word_set_id = 1}, - [673] = {.lex_state = 54, .external_lex_state = 6, .reserved_word_set_id = 1}, - [674] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 1}, - [675] = {.lex_state = 54, .external_lex_state = 10, .reserved_word_set_id = 1}, - [676] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 1}, - [677] = {.lex_state = 55, .external_lex_state = 2, .reserved_word_set_id = 1}, - [678] = {.lex_state = 55, .external_lex_state = 2, .reserved_word_set_id = 1}, - [679] = {.lex_state = 55, .external_lex_state = 3, .reserved_word_set_id = 1}, - [680] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 1}, - [681] = {.lex_state = 55, .external_lex_state = 3, .reserved_word_set_id = 1}, - [682] = {.lex_state = 54, .external_lex_state = 11, .reserved_word_set_id = 1}, - [683] = {.lex_state = 55, .external_lex_state = 2, .reserved_word_set_id = 1}, - [684] = {.lex_state = 55, .external_lex_state = 2, .reserved_word_set_id = 1}, - [685] = {.lex_state = 55, .external_lex_state = 2, .reserved_word_set_id = 1}, - [686] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [687] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [688] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [689] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [690] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [691] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [692] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [693] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [694] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [695] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [696] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [697] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [698] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [699] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [700] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [701] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [702] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [703] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [704] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [705] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [706] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [707] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [708] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 12}, - [709] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, - [710] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 12}, - [711] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, - [712] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 12}, - [713] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 12}, - [714] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [715] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [716] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [717] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [718] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [719] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [720] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [721] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [722] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [723] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [724] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [725] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [726] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [727] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [728] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [729] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [730] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [731] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [732] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [733] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [734] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [735] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [736] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [737] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [738] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [739] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [740] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [741] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [742] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [743] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [744] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [745] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [746] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [747] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [748] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [749] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [750] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, - [751] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [752] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [753] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [754] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [755] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [756] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [757] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [758] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [759] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [760] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [761] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [762] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [763] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [764] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [765] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [766] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [767] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [768] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [769] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [770] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [771] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, - [772] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [773] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [774] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [775] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [776] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [777] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [778] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [779] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [780] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [781] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [782] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [783] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [784] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [785] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [786] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [787] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [788] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, - [789] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [790] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [791] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [792] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [793] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [794] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [795] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [796] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [797] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [798] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [799] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [800] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [801] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [802] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [803] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [804] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [805] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [806] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [807] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [808] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [809] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [810] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [811] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [812] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [813] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [814] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [815] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [816] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [817] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [818] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [819] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [820] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [821] = {.lex_state = 54, .external_lex_state = 8, .reserved_word_set_id = 1}, - [822] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [823] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [824] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [825] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [826] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [827] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [828] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [829] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [830] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [831] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [832] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [833] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [834] = {.lex_state = 54, .external_lex_state = 3, .reserved_word_set_id = 1}, - [835] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [836] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [837] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [838] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [839] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [840] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [841] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [842] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [843] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [844] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [845] = {.lex_state = 54, .external_lex_state = 7, .reserved_word_set_id = 1}, - [846] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 13}, - [847] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 13}, - [848] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 13}, - [849] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 13}, - [850] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 13}, - [851] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 13}, - [852] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 13}, - [853] = {.lex_state = 14, .external_lex_state = 9}, - [854] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 13}, - [855] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [856] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [857] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [858] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [859] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [860] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [861] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [862] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [863] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [864] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [865] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [866] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [867] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [868] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [869] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [870] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [871] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [872] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [873] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [874] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [875] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [876] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [877] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [878] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [879] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [880] = {.lex_state = 14, .external_lex_state = 12}, - [881] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [882] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [883] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [884] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [885] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [886] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [887] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [888] = {.lex_state = 14, .external_lex_state = 12}, - [889] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [890] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [891] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [892] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [893] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [894] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [895] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [896] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [897] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [898] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [899] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [900] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [901] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [902] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [903] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [904] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [905] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [906] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [907] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [908] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [909] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [910] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [911] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [912] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [913] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [914] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [915] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [916] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [917] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [918] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [919] = {.lex_state = 14, .external_lex_state = 13}, - [920] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [921] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [922] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [923] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [924] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [925] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [926] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [927] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [928] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [929] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [930] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [931] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [932] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [933] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [934] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [935] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [936] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [937] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [938] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [939] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [940] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [941] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [942] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [943] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [944] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [945] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [946] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [947] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [948] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [949] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 14}, - [950] = {.lex_state = 14, .external_lex_state = 4}, - [951] = {.lex_state = 14, .external_lex_state = 9}, - [952] = {.lex_state = 14, .external_lex_state = 14}, - [953] = {.lex_state = 14, .external_lex_state = 4}, - [954] = {.lex_state = 14, .external_lex_state = 4}, - [955] = {.lex_state = 14, .external_lex_state = 15}, - [956] = {.lex_state = 14, .external_lex_state = 14}, - [957] = {.lex_state = 14, .external_lex_state = 9}, - [958] = {.lex_state = 14, .external_lex_state = 9}, - [959] = {.lex_state = 14, .external_lex_state = 9}, - [960] = {.lex_state = 14, .external_lex_state = 9}, - [961] = {.lex_state = 14, .external_lex_state = 6}, - [962] = {.lex_state = 14, .external_lex_state = 6}, - [963] = {.lex_state = 14, .external_lex_state = 6}, - [964] = {.lex_state = 14, .external_lex_state = 9}, - [965] = {.lex_state = 14, .external_lex_state = 9}, - [966] = {.lex_state = 14, .external_lex_state = 9}, - [967] = {.lex_state = 14, .external_lex_state = 6}, - [968] = {.lex_state = 14, .external_lex_state = 9}, - [969] = {.lex_state = 14, .external_lex_state = 8}, - [970] = {.lex_state = 14, .external_lex_state = 8}, - [971] = {.lex_state = 14, .external_lex_state = 6}, - [972] = {.lex_state = 14, .external_lex_state = 13}, - [973] = {.lex_state = 14, .external_lex_state = 6}, - [974] = {.lex_state = 14, .external_lex_state = 8}, - [975] = {.lex_state = 14, .external_lex_state = 9}, - [976] = {.lex_state = 14, .external_lex_state = 9}, - [977] = {.lex_state = 14, .external_lex_state = 7}, - [978] = {.lex_state = 14, .external_lex_state = 12}, - [979] = {.lex_state = 14, .external_lex_state = 12}, - [980] = {.lex_state = 14, .external_lex_state = 12}, - [981] = {.lex_state = 14, .external_lex_state = 12}, - [982] = {.lex_state = 14, .external_lex_state = 12}, - [983] = {.lex_state = 14, .external_lex_state = 12}, - [984] = {.lex_state = 14, .external_lex_state = 14}, - [985] = {.lex_state = 14, .external_lex_state = 7}, - [986] = {.lex_state = 14, .external_lex_state = 7}, - [987] = {.lex_state = 14, .external_lex_state = 7}, - [988] = {.lex_state = 14, .external_lex_state = 13}, - [989] = {.lex_state = 14, .external_lex_state = 2}, - [990] = {.lex_state = 15, .external_lex_state = 9}, - [991] = {.lex_state = 14, .external_lex_state = 7}, - [992] = {.lex_state = 14, .external_lex_state = 13}, - [993] = {.lex_state = 14, .external_lex_state = 13}, - [994] = {.lex_state = 14, .external_lex_state = 7}, - [995] = {.lex_state = 14, .external_lex_state = 13}, - [996] = {.lex_state = 14, .external_lex_state = 13}, - [997] = {.lex_state = 14, .external_lex_state = 13}, - [998] = {.lex_state = 14, .external_lex_state = 13}, - [999] = {.lex_state = 14, .external_lex_state = 13}, - [1000] = {.lex_state = 14, .external_lex_state = 13}, - [1001] = {.lex_state = 14, .external_lex_state = 13}, - [1002] = {.lex_state = 14, .external_lex_state = 13}, - [1003] = {.lex_state = 14, .external_lex_state = 2}, - [1004] = {.lex_state = 15, .external_lex_state = 13}, - [1005] = {.lex_state = 15, .external_lex_state = 13}, - [1006] = {.lex_state = 14, .external_lex_state = 12}, - [1007] = {.lex_state = 14, .external_lex_state = 12}, - [1008] = {.lex_state = 14, .external_lex_state = 4}, - [1009] = {.lex_state = 15, .external_lex_state = 9}, - [1010] = {.lex_state = 14, .external_lex_state = 4}, - [1011] = {.lex_state = 14, .external_lex_state = 12}, - [1012] = {.lex_state = 14, .external_lex_state = 12}, - [1013] = {.lex_state = 14, .external_lex_state = 12}, - [1014] = {.lex_state = 14, .external_lex_state = 12}, - [1015] = {.lex_state = 14, .external_lex_state = 12}, - [1016] = {.lex_state = 14, .external_lex_state = 12}, - [1017] = {.lex_state = 14, .external_lex_state = 12}, - [1018] = {.lex_state = 14, .external_lex_state = 12}, - [1019] = {.lex_state = 14, .external_lex_state = 12}, - [1020] = {.lex_state = 14, .external_lex_state = 12}, - [1021] = {.lex_state = 14, .external_lex_state = 12}, - [1022] = {.lex_state = 15, .external_lex_state = 9}, - [1023] = {.lex_state = 14, .external_lex_state = 2}, - [1024] = {.lex_state = 14, .external_lex_state = 12}, - [1025] = {.lex_state = 14, .external_lex_state = 12}, - [1026] = {.lex_state = 14, .external_lex_state = 12}, - [1027] = {.lex_state = 14, .external_lex_state = 12}, - [1028] = {.lex_state = 14, .external_lex_state = 12}, - [1029] = {.lex_state = 14, .external_lex_state = 12}, - [1030] = {.lex_state = 14, .external_lex_state = 12}, + [363] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, + [364] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, + [365] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, + [366] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, + [367] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, + [368] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, + [369] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, + [370] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, + [371] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 10}, + [372] = {.lex_state = 12, .external_lex_state = 8, .reserved_word_set_id = 1}, + [373] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [374] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 1}, + [375] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, + [376] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, + [377] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, + [378] = {.lex_state = 12, .external_lex_state = 8, .reserved_word_set_id = 1}, + [379] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 10}, + [380] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, + [381] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, + [382] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, + [383] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, + [384] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, + [385] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, + [386] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, + [387] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, + [388] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, + [389] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, + [390] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, + [391] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, + [392] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, + [393] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, + [394] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, + [395] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, + [396] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, + [397] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, + [398] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, + [399] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, + [400] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, + [401] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [402] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [403] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [404] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, + [405] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [406] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 1}, + [407] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, + [408] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [409] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [410] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [411] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [412] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [413] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [414] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, + [415] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [416] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, + [417] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [418] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [419] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [420] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [421] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [422] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [423] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, + [424] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [425] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [426] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [427] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [428] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [429] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 1}, + [430] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [431] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [432] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [433] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [434] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, + [435] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, + [436] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [437] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 1}, + [438] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [439] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [440] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [441] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, + [442] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 1}, + [443] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 1}, + [444] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [445] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [446] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [447] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 1}, + [448] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [449] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, + [450] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [451] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [452] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [453] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [454] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [455] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [456] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [457] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [458] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 1}, + [459] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 1}, + [460] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [461] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [462] = {.lex_state = 7, .external_lex_state = 4, .reserved_word_set_id = 1}, + [463] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [464] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [465] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [466] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [467] = {.lex_state = 7, .external_lex_state = 4, .reserved_word_set_id = 1}, + [468] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [469] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [470] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [471] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [472] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [473] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [474] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [475] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [476] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [477] = {.lex_state = 7, .external_lex_state = 11}, + [478] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [479] = {.lex_state = 7, .external_lex_state = 11}, + [480] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [481] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [482] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [483] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [484] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [485] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [486] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [487] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [488] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [489] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [490] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [491] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [492] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [493] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [494] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [495] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [496] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [497] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [498] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [499] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [500] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [501] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [502] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [503] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [504] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [505] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [506] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [507] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [508] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [509] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [510] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [511] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [512] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [513] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [514] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [515] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [516] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [517] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [518] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [519] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [520] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [521] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [522] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [523] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [524] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [525] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [526] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [527] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [528] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [529] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [530] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [531] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [532] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [533] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [534] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [535] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [536] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [537] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [538] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [539] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [540] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [541] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [542] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [543] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [544] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [545] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [546] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [547] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [548] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [549] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [550] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [551] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [552] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [553] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [554] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [555] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [556] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [557] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [558] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [559] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [560] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [561] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [562] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [563] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [564] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [565] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [566] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [567] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [568] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [569] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [570] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [571] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [572] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [573] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [574] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [575] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [576] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [577] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [578] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [579] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [580] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [581] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [582] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [583] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [584] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [585] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [586] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [587] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [588] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [589] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [590] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [591] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [592] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [593] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [594] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [595] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [596] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, + [597] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [598] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [599] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [600] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [601] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [602] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [603] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [604] = {.lex_state = 7, .external_lex_state = 11}, + [605] = {.lex_state = 7, .external_lex_state = 11}, + [606] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [607] = {.lex_state = 7, .external_lex_state = 11}, + [608] = {.lex_state = 7, .external_lex_state = 11}, + [609] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [610] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [611] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [612] = {.lex_state = 7, .external_lex_state = 11}, + [613] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [614] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [615] = {.lex_state = 7, .external_lex_state = 11}, + [616] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [617] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [618] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [619] = {.lex_state = 8, .external_lex_state = 11}, + [620] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [621] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [622] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [623] = {.lex_state = 8, .external_lex_state = 11}, + [624] = {.lex_state = 8, .external_lex_state = 11}, + [625] = {.lex_state = 8, .external_lex_state = 11}, + [626] = {.lex_state = 8, .external_lex_state = 11}, + [627] = {.lex_state = 8, .external_lex_state = 11}, + [628] = {.lex_state = 8, .external_lex_state = 11}, + [629] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [630] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [631] = {.lex_state = 8, .external_lex_state = 11}, + [632] = {.lex_state = 8, .external_lex_state = 11}, + [633] = {.lex_state = 8, .external_lex_state = 11}, + [634] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [635] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [636] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [637] = {.lex_state = 8, .external_lex_state = 11}, + [638] = {.lex_state = 8, .external_lex_state = 11}, + [639] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [640] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [641] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [642] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [643] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [644] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [645] = {.lex_state = 8, .external_lex_state = 11}, + [646] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [647] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [648] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [649] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [650] = {.lex_state = 8, .external_lex_state = 11}, + [651] = {.lex_state = 8, .external_lex_state = 11}, + [652] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [653] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [654] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [655] = {.lex_state = 8, .external_lex_state = 11}, + [656] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [657] = {.lex_state = 8, .external_lex_state = 11}, + [658] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [659] = {.lex_state = 8, .external_lex_state = 11}, + [660] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [661] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [662] = {.lex_state = 8, .external_lex_state = 11}, + [663] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [664] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [665] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [666] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [667] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [668] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [669] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 11}, + [670] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 11}, + [671] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 11}, + [672] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 11}, + [673] = {.lex_state = 52, .external_lex_state = 6, .reserved_word_set_id = 1}, + [674] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 11}, + [675] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 11}, + [676] = {.lex_state = 52, .external_lex_state = 6, .reserved_word_set_id = 1}, + [677] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 11}, + [678] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 11}, + [679] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 11}, + [680] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 11}, + [681] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [682] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [683] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [684] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [685] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [686] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [687] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [688] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [689] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [690] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [691] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [692] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [693] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [694] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [695] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [696] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [697] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [698] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [699] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [700] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [701] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [702] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [703] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [704] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [705] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [706] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [707] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 12}, + [708] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, + [709] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 12}, + [710] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 12}, + [711] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 12}, + [712] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, + [713] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [714] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [715] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [716] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [717] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [718] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [719] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [720] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [721] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [722] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [723] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [724] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [725] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [726] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [727] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [728] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [729] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [730] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [731] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [732] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, + [733] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [734] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [735] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [736] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [737] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [738] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [739] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [740] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [741] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [742] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [743] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [744] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [745] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [746] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [747] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [748] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [749] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [750] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [751] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [752] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [753] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [754] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [755] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [756] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [757] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [758] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [759] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [760] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [761] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [762] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [763] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [764] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [765] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [766] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [767] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [768] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [769] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [770] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [771] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [772] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [773] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [774] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [775] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, + [776] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [777] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [778] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [779] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, + [780] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [781] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [782] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [783] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [784] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [785] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [786] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [787] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [788] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [789] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [790] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [791] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [792] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [793] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [794] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [795] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [796] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [797] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [798] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [799] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [800] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [801] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [802] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [803] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [804] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [805] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [806] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [807] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [808] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [809] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [810] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [811] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [812] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [813] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [814] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [815] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [816] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [817] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [818] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [819] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [820] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [821] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [822] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [823] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [824] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [825] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [826] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [827] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [828] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [829] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [830] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [831] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [832] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [833] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [834] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [835] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [836] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, + [837] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [838] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [839] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [840] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [841] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [842] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [843] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, + [844] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [845] = {.lex_state = 13, .external_lex_state = 11}, + [846] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 13}, + [847] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 13}, + [848] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 13}, + [849] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 13}, + [850] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 13}, + [851] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 13}, + [852] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 13}, + [853] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 13}, + [854] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [855] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [856] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [857] = {.lex_state = 13, .external_lex_state = 12}, + [858] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [859] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [860] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [861] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [862] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [863] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [864] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [865] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [866] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [867] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [868] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [869] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [870] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [871] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [872] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [873] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [874] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [875] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [876] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [877] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [878] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [879] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [880] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [881] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [882] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [883] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [884] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [885] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [886] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [887] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [888] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [889] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [890] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [891] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [892] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [893] = {.lex_state = 13, .external_lex_state = 13}, + [894] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [895] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [896] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [897] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [898] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [899] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [900] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [901] = {.lex_state = 13, .external_lex_state = 13}, + [902] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [903] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [904] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [905] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [906] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [907] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [908] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [909] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [910] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [911] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [912] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [913] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [914] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [915] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [916] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [917] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [918] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [919] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [920] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [921] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [922] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [923] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [924] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [925] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [926] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [927] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [928] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [929] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [930] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [931] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [932] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [933] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [934] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [935] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [936] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [937] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [938] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [939] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [940] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [941] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [942] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [943] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [944] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [945] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [946] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [947] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [948] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, + [949] = {.lex_state = 13, .external_lex_state = 11}, + [950] = {.lex_state = 13, .external_lex_state = 14}, + [951] = {.lex_state = 13, .external_lex_state = 4}, + [952] = {.lex_state = 13, .external_lex_state = 15}, + [953] = {.lex_state = 13, .external_lex_state = 14}, + [954] = {.lex_state = 13, .external_lex_state = 4}, + [955] = {.lex_state = 13, .external_lex_state = 4}, + [956] = {.lex_state = 13, .external_lex_state = 11}, + [957] = {.lex_state = 13, .external_lex_state = 11}, + [958] = {.lex_state = 13, .external_lex_state = 6}, + [959] = {.lex_state = 13, .external_lex_state = 11}, + [960] = {.lex_state = 13, .external_lex_state = 6}, + [961] = {.lex_state = 13, .external_lex_state = 7}, + [962] = {.lex_state = 13, .external_lex_state = 11}, + [963] = {.lex_state = 13, .external_lex_state = 12}, + [964] = {.lex_state = 13, .external_lex_state = 6}, + [965] = {.lex_state = 13, .external_lex_state = 11}, + [966] = {.lex_state = 13, .external_lex_state = 11}, + [967] = {.lex_state = 13, .external_lex_state = 11}, + [968] = {.lex_state = 13, .external_lex_state = 7}, + [969] = {.lex_state = 13, .external_lex_state = 7}, + [970] = {.lex_state = 13, .external_lex_state = 6}, + [971] = {.lex_state = 13, .external_lex_state = 6}, + [972] = {.lex_state = 13, .external_lex_state = 11}, + [973] = {.lex_state = 13, .external_lex_state = 11}, + [974] = {.lex_state = 13, .external_lex_state = 11}, + [975] = {.lex_state = 13, .external_lex_state = 6}, + [976] = {.lex_state = 13, .external_lex_state = 4}, + [977] = {.lex_state = 13, .external_lex_state = 13}, + [978] = {.lex_state = 13, .external_lex_state = 8}, + [979] = {.lex_state = 13, .external_lex_state = 13}, + [980] = {.lex_state = 14, .external_lex_state = 11}, + [981] = {.lex_state = 13, .external_lex_state = 8}, + [982] = {.lex_state = 13, .external_lex_state = 12}, + [983] = {.lex_state = 13, .external_lex_state = 13}, + [984] = {.lex_state = 13, .external_lex_state = 2}, + [985] = {.lex_state = 13, .external_lex_state = 8}, + [986] = {.lex_state = 13, .external_lex_state = 4}, + [987] = {.lex_state = 13, .external_lex_state = 13}, + [988] = {.lex_state = 13, .external_lex_state = 13}, + [989] = {.lex_state = 13, .external_lex_state = 13}, + [990] = {.lex_state = 13, .external_lex_state = 13}, + [991] = {.lex_state = 13, .external_lex_state = 12}, + [992] = {.lex_state = 13, .external_lex_state = 8}, + [993] = {.lex_state = 13, .external_lex_state = 13}, + [994] = {.lex_state = 13, .external_lex_state = 14}, + [995] = {.lex_state = 13, .external_lex_state = 8}, + [996] = {.lex_state = 13, .external_lex_state = 13}, + [997] = {.lex_state = 13, .external_lex_state = 12}, + [998] = {.lex_state = 13, .external_lex_state = 8}, + [999] = {.lex_state = 13, .external_lex_state = 12}, + [1000] = {.lex_state = 13, .external_lex_state = 13}, + [1001] = {.lex_state = 13, .external_lex_state = 12}, + [1002] = {.lex_state = 14, .external_lex_state = 12}, + [1003] = {.lex_state = 13, .external_lex_state = 13}, + [1004] = {.lex_state = 13, .external_lex_state = 13}, + [1005] = {.lex_state = 13, .external_lex_state = 13}, + [1006] = {.lex_state = 13, .external_lex_state = 2}, + [1007] = {.lex_state = 13, .external_lex_state = 12}, + [1008] = {.lex_state = 13, .external_lex_state = 13}, + [1009] = {.lex_state = 13, .external_lex_state = 12}, + [1010] = {.lex_state = 13, .external_lex_state = 13}, + [1011] = {.lex_state = 13, .external_lex_state = 13}, + [1012] = {.lex_state = 14, .external_lex_state = 11}, + [1013] = {.lex_state = 13, .external_lex_state = 2}, + [1014] = {.lex_state = 13, .external_lex_state = 13}, + [1015] = {.lex_state = 13, .external_lex_state = 13}, + [1016] = {.lex_state = 13, .external_lex_state = 12}, + [1017] = {.lex_state = 13, .external_lex_state = 13}, + [1018] = {.lex_state = 14, .external_lex_state = 11}, + [1019] = {.lex_state = 13, .external_lex_state = 13}, + [1020] = {.lex_state = 13, .external_lex_state = 13}, + [1021] = {.lex_state = 13, .external_lex_state = 13}, + [1022] = {.lex_state = 13, .external_lex_state = 13}, + [1023] = {.lex_state = 13, .external_lex_state = 12}, + [1024] = {.lex_state = 13, .external_lex_state = 12}, + [1025] = {.lex_state = 13, .external_lex_state = 12}, + [1026] = {.lex_state = 13, .external_lex_state = 13}, + [1027] = {.lex_state = 13, .external_lex_state = 13}, + [1028] = {.lex_state = 13, .external_lex_state = 13}, + [1029] = {.lex_state = 13, .external_lex_state = 13}, + [1030] = {.lex_state = 13, .external_lex_state = 13}, [1031] = {.lex_state = 14, .external_lex_state = 12}, - [1032] = {.lex_state = 14, .external_lex_state = 12}, - [1033] = {.lex_state = 14, .external_lex_state = 9}, - [1034] = {.lex_state = 14, .external_lex_state = 9}, - [1035] = {.lex_state = 14, .external_lex_state = 9}, - [1036] = {.lex_state = 14, .external_lex_state = 9}, - [1037] = {.lex_state = 14, .external_lex_state = 9}, - [1038] = {.lex_state = 14, .external_lex_state = 14}, - [1039] = {.lex_state = 14, .external_lex_state = 14}, - [1040] = {.lex_state = 15, .external_lex_state = 12}, - [1041] = {.lex_state = 14, .external_lex_state = 9}, + [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 = 9}, - [1044] = {.lex_state = 14, .external_lex_state = 9}, - [1045] = {.lex_state = 15, .external_lex_state = 14}, - [1046] = {.lex_state = 15, .external_lex_state = 14}, - [1047] = {.lex_state = 14, .external_lex_state = 14}, - [1048] = {.lex_state = 14, .external_lex_state = 14}, - [1049] = {.lex_state = 14, .external_lex_state = 9}, - [1050] = {.lex_state = 14, .external_lex_state = 9}, - [1051] = {.lex_state = 14, .external_lex_state = 9}, - [1052] = {.lex_state = 14, .external_lex_state = 9}, - [1053] = {.lex_state = 15, .external_lex_state = 9}, - [1054] = {.lex_state = 14, .external_lex_state = 9}, - [1055] = {.lex_state = 14, .external_lex_state = 9}, - [1056] = {.lex_state = 14, .external_lex_state = 9}, - [1057] = {.lex_state = 15, .external_lex_state = 13}, - [1058] = {.lex_state = 15, .external_lex_state = 13}, - [1059] = {.lex_state = 14, .external_lex_state = 15}, - [1060] = {.lex_state = 14, .external_lex_state = 15}, - [1061] = {.lex_state = 14, .external_lex_state = 15}, - [1062] = {.lex_state = 14, .external_lex_state = 15}, - [1063] = {.lex_state = 14, .external_lex_state = 6}, - [1064] = {.lex_state = 14, .external_lex_state = 6}, - [1065] = {.lex_state = 14, .external_lex_state = 15}, - [1066] = {.lex_state = 14, .external_lex_state = 14}, - [1067] = {.lex_state = 15, .external_lex_state = 9}, - [1068] = {.lex_state = 14, .external_lex_state = 9}, - [1069] = {.lex_state = 14, .external_lex_state = 9}, - [1070] = {.lex_state = 14, .external_lex_state = 9}, - [1071] = {.lex_state = 14, .external_lex_state = 8}, - [1072] = {.lex_state = 14, .external_lex_state = 14}, - [1073] = {.lex_state = 15, .external_lex_state = 12}, - [1074] = {.lex_state = 15, .external_lex_state = 12}, - [1075] = {.lex_state = 14, .external_lex_state = 14}, - [1076] = {.lex_state = 14, .external_lex_state = 9}, - [1077] = {.lex_state = 14, .external_lex_state = 14}, - [1078] = {.lex_state = 14, .external_lex_state = 9}, - [1079] = {.lex_state = 14, .external_lex_state = 14}, - [1080] = {.lex_state = 14, .external_lex_state = 9}, - [1081] = {.lex_state = 14, .external_lex_state = 14}, - [1082] = {.lex_state = 14, .external_lex_state = 9}, - [1083] = {.lex_state = 14, .external_lex_state = 14}, - [1084] = {.lex_state = 14, .external_lex_state = 9}, - [1085] = {.lex_state = 14, .external_lex_state = 9}, - [1086] = {.lex_state = 15, .external_lex_state = 12}, - [1087] = {.lex_state = 15, .external_lex_state = 12}, - [1088] = {.lex_state = 15, .external_lex_state = 12}, - [1089] = {.lex_state = 15, .external_lex_state = 14}, - [1090] = {.lex_state = 14, .external_lex_state = 9}, - [1091] = {.lex_state = 14, .external_lex_state = 8}, - [1092] = {.lex_state = 14, .external_lex_state = 9}, - [1093] = {.lex_state = 14, .external_lex_state = 9}, - [1094] = {.lex_state = 14, .external_lex_state = 15}, - [1095] = {.lex_state = 14, .external_lex_state = 9}, - [1096] = {.lex_state = 14, .external_lex_state = 15}, - [1097] = {.lex_state = 14, .external_lex_state = 14}, - [1098] = {.lex_state = 14, .external_lex_state = 8}, - [1099] = {.lex_state = 14, .external_lex_state = 9}, - [1100] = {.lex_state = 15, .external_lex_state = 12}, - [1101] = {.lex_state = 15, .external_lex_state = 12}, - [1102] = {.lex_state = 15, .external_lex_state = 12}, - [1103] = {.lex_state = 14, .external_lex_state = 9}, - [1104] = {.lex_state = 15, .external_lex_state = 14}, - [1105] = {.lex_state = 14, .external_lex_state = 15}, - [1106] = {.lex_state = 15, .external_lex_state = 14}, - [1107] = {.lex_state = 14, .external_lex_state = 6}, - [1108] = {.lex_state = 15, .external_lex_state = 13}, - [1109] = {.lex_state = 15, .external_lex_state = 13}, - [1110] = {.lex_state = 15, .external_lex_state = 13}, - [1111] = {.lex_state = 14, .external_lex_state = 15}, - [1112] = {.lex_state = 14, .external_lex_state = 9}, - [1113] = {.lex_state = 14, .external_lex_state = 15}, - [1114] = {.lex_state = 14, .external_lex_state = 14}, - [1115] = {.lex_state = 14, .external_lex_state = 14}, - [1116] = {.lex_state = 14, .external_lex_state = 14}, - [1117] = {.lex_state = 15, .external_lex_state = 13}, - [1118] = {.lex_state = 14, .external_lex_state = 14}, - [1119] = {.lex_state = 15, .external_lex_state = 12}, - [1120] = {.lex_state = 15, .external_lex_state = 12}, - [1121] = {.lex_state = 15, .external_lex_state = 12}, - [1122] = {.lex_state = 14, .external_lex_state = 6}, - [1123] = {.lex_state = 14, .external_lex_state = 9}, - [1124] = {.lex_state = 14, .external_lex_state = 14}, - [1125] = {.lex_state = 14, .external_lex_state = 14}, - [1126] = {.lex_state = 14, .external_lex_state = 8}, - [1127] = {.lex_state = 14, .external_lex_state = 8}, - [1128] = {.lex_state = 14, .external_lex_state = 9}, - [1129] = {.lex_state = 14, .external_lex_state = 9}, - [1130] = {.lex_state = 14, .external_lex_state = 9}, - [1131] = {.lex_state = 14, .external_lex_state = 9}, - [1132] = {.lex_state = 14, .external_lex_state = 14}, - [1133] = {.lex_state = 14, .external_lex_state = 12}, - [1134] = {.lex_state = 14, .external_lex_state = 13}, - [1135] = {.lex_state = 14, .external_lex_state = 13}, - [1136] = {.lex_state = 14, .external_lex_state = 12}, - [1137] = {.lex_state = 14, .external_lex_state = 12}, - [1138] = {.lex_state = 14, .external_lex_state = 12}, - [1139] = {.lex_state = 14, .external_lex_state = 12}, - [1140] = {.lex_state = 14, .external_lex_state = 13}, - [1141] = {.lex_state = 14, .external_lex_state = 12}, - [1142] = {.lex_state = 14, .external_lex_state = 12}, - [1143] = {.lex_state = 14, .external_lex_state = 12}, - [1144] = {.lex_state = 14, .external_lex_state = 12}, - [1145] = {.lex_state = 14, .external_lex_state = 12}, - [1146] = {.lex_state = 14, .external_lex_state = 14}, - [1147] = {.lex_state = 14, .external_lex_state = 14}, - [1148] = {.lex_state = 14, .external_lex_state = 13}, - [1149] = {.lex_state = 14, .external_lex_state = 7}, - [1150] = {.lex_state = 15, .external_lex_state = 13}, - [1151] = {.lex_state = 15, .external_lex_state = 14}, - [1152] = {.lex_state = 15, .external_lex_state = 14}, - [1153] = {.lex_state = 15, .external_lex_state = 14}, - [1154] = {.lex_state = 15, .external_lex_state = 13}, - [1155] = {.lex_state = 14, .external_lex_state = 12}, - [1156] = {.lex_state = 14, .external_lex_state = 13}, - [1157] = {.lex_state = 14, .external_lex_state = 13}, - [1158] = {.lex_state = 14, .external_lex_state = 13}, - [1159] = {.lex_state = 15, .external_lex_state = 14}, - [1160] = {.lex_state = 14, .external_lex_state = 12}, - [1161] = {.lex_state = 15, .external_lex_state = 15}, - [1162] = {.lex_state = 15, .external_lex_state = 15}, - [1163] = {.lex_state = 15, .external_lex_state = 15}, - [1164] = {.lex_state = 14, .external_lex_state = 14}, - [1165] = {.lex_state = 14, .external_lex_state = 12}, - [1166] = {.lex_state = 14, .external_lex_state = 13}, - [1167] = {.lex_state = 14, .external_lex_state = 13}, - [1168] = {.lex_state = 14, .external_lex_state = 13}, - [1169] = {.lex_state = 14, .external_lex_state = 13}, - [1170] = {.lex_state = 15, .external_lex_state = 15}, - [1171] = {.lex_state = 14, .external_lex_state = 13}, - [1172] = {.lex_state = 14, .external_lex_state = 13}, - [1173] = {.lex_state = 14, .external_lex_state = 7}, - [1174] = {.lex_state = 14, .external_lex_state = 13}, - [1175] = {.lex_state = 14, .external_lex_state = 12}, - [1176] = {.lex_state = 15, .external_lex_state = 13}, - [1177] = {.lex_state = 14, .external_lex_state = 13}, - [1178] = {.lex_state = 14, .external_lex_state = 13}, - [1179] = {.lex_state = 14, .external_lex_state = 13}, - [1180] = {.lex_state = 14, .external_lex_state = 13}, - [1181] = {.lex_state = 14, .external_lex_state = 13}, - [1182] = {.lex_state = 14, .external_lex_state = 13}, - [1183] = {.lex_state = 14, .external_lex_state = 13}, - [1184] = {.lex_state = 14, .external_lex_state = 13}, - [1185] = {.lex_state = 14, .external_lex_state = 13}, - [1186] = {.lex_state = 14, .external_lex_state = 13}, - [1187] = {.lex_state = 14, .external_lex_state = 13}, - [1188] = {.lex_state = 14, .external_lex_state = 13}, - [1189] = {.lex_state = 14, .external_lex_state = 12}, - [1190] = {.lex_state = 14, .external_lex_state = 12}, - [1191] = {.lex_state = 14, .external_lex_state = 12}, - [1192] = {.lex_state = 15, .external_lex_state = 13}, - [1193] = {.lex_state = 14, .external_lex_state = 12}, - [1194] = {.lex_state = 14, .external_lex_state = 12}, - [1195] = {.lex_state = 14, .external_lex_state = 12}, - [1196] = {.lex_state = 14, .external_lex_state = 12}, - [1197] = {.lex_state = 14, .external_lex_state = 12}, - [1198] = {.lex_state = 14, .external_lex_state = 12}, - [1199] = {.lex_state = 14, .external_lex_state = 13}, - [1200] = {.lex_state = 14, .external_lex_state = 2}, - [1201] = {.lex_state = 15, .external_lex_state = 14}, - [1202] = {.lex_state = 15, .external_lex_state = 14}, - [1203] = {.lex_state = 15, .external_lex_state = 14}, - [1204] = {.lex_state = 14, .external_lex_state = 12}, - [1205] = {.lex_state = 14, .external_lex_state = 12}, - [1206] = {.lex_state = 14, .external_lex_state = 12}, - [1207] = {.lex_state = 14, .external_lex_state = 12}, - [1208] = {.lex_state = 14, .external_lex_state = 12}, - [1209] = {.lex_state = 14, .external_lex_state = 7}, - [1210] = {.lex_state = 14, .external_lex_state = 12}, - [1211] = {.lex_state = 14, .external_lex_state = 12}, - [1212] = {.lex_state = 14, .external_lex_state = 12}, - [1213] = {.lex_state = 14, .external_lex_state = 12}, - [1214] = {.lex_state = 14, .external_lex_state = 12}, - [1215] = {.lex_state = 15, .external_lex_state = 14}, - [1216] = {.lex_state = 15, .external_lex_state = 14}, - [1217] = {.lex_state = 14, .external_lex_state = 13}, - [1218] = {.lex_state = 15, .external_lex_state = 14}, - [1219] = {.lex_state = 15, .external_lex_state = 13}, - [1220] = {.lex_state = 14, .external_lex_state = 12}, - [1221] = {.lex_state = 14, .external_lex_state = 13}, - [1222] = {.lex_state = 14, .external_lex_state = 12}, - [1223] = {.lex_state = 14, .external_lex_state = 12}, - [1224] = {.lex_state = 14, .external_lex_state = 13}, + [1043] = {.lex_state = 14, .external_lex_state = 14}, + [1044] = {.lex_state = 13, .external_lex_state = 11}, + [1045] = {.lex_state = 14, .external_lex_state = 12}, + [1046] = {.lex_state = 13, .external_lex_state = 7}, + [1047] = {.lex_state = 13, .external_lex_state = 11}, + [1048] = {.lex_state = 13, .external_lex_state = 7}, + [1049] = {.lex_state = 14, .external_lex_state = 11}, + [1050] = {.lex_state = 14, .external_lex_state = 11}, + [1051] = {.lex_state = 13, .external_lex_state = 14}, + [1052] = {.lex_state = 13, .external_lex_state = 6}, + [1053] = {.lex_state = 14, .external_lex_state = 12}, + [1054] = {.lex_state = 14, .external_lex_state = 12}, + [1055] = {.lex_state = 14, .external_lex_state = 12}, + [1056] = {.lex_state = 13, .external_lex_state = 14}, + [1057] = {.lex_state = 13, .external_lex_state = 11}, + [1058] = {.lex_state = 14, .external_lex_state = 14}, + [1059] = {.lex_state = 14, .external_lex_state = 14}, + [1060] = {.lex_state = 13, .external_lex_state = 11}, + [1061] = {.lex_state = 13, .external_lex_state = 11}, + [1062] = {.lex_state = 13, .external_lex_state = 6}, + [1063] = {.lex_state = 13, .external_lex_state = 11}, + [1064] = {.lex_state = 14, .external_lex_state = 12}, + [1065] = {.lex_state = 14, .external_lex_state = 12}, + [1066] = {.lex_state = 13, .external_lex_state = 11}, + [1067] = {.lex_state = 13, .external_lex_state = 11}, + [1068] = {.lex_state = 13, .external_lex_state = 11}, + [1069] = {.lex_state = 13, .external_lex_state = 6}, + [1070] = {.lex_state = 13, .external_lex_state = 14}, + [1071] = {.lex_state = 13, .external_lex_state = 14}, + [1072] = {.lex_state = 13, .external_lex_state = 6}, + [1073] = {.lex_state = 13, .external_lex_state = 14}, + [1074] = {.lex_state = 13, .external_lex_state = 14}, + [1075] = {.lex_state = 13, .external_lex_state = 14}, + [1076] = {.lex_state = 13, .external_lex_state = 14}, + [1077] = {.lex_state = 13, .external_lex_state = 14}, + [1078] = {.lex_state = 13, .external_lex_state = 14}, + [1079] = {.lex_state = 13, .external_lex_state = 14}, + [1080] = {.lex_state = 13, .external_lex_state = 14}, + [1081] = {.lex_state = 13, .external_lex_state = 7}, + [1082] = {.lex_state = 14, .external_lex_state = 13}, + [1083] = {.lex_state = 14, .external_lex_state = 13}, + [1084] = {.lex_state = 14, .external_lex_state = 13}, + [1085] = {.lex_state = 13, .external_lex_state = 14}, + [1086] = {.lex_state = 13, .external_lex_state = 7}, + [1087] = {.lex_state = 13, .external_lex_state = 14}, + [1088] = {.lex_state = 13, .external_lex_state = 7}, + [1089] = {.lex_state = 13, .external_lex_state = 14}, + [1090] = {.lex_state = 13, .external_lex_state = 14}, + [1091] = {.lex_state = 13, .external_lex_state = 14}, + [1092] = {.lex_state = 13, .external_lex_state = 14}, + [1093] = {.lex_state = 13, .external_lex_state = 14}, + [1094] = {.lex_state = 13, .external_lex_state = 14}, + [1095] = {.lex_state = 13, .external_lex_state = 11}, + [1096] = {.lex_state = 13, .external_lex_state = 11}, + [1097] = {.lex_state = 13, .external_lex_state = 11}, + [1098] = {.lex_state = 13, .external_lex_state = 11}, + [1099] = {.lex_state = 13, .external_lex_state = 11}, + [1100] = {.lex_state = 13, .external_lex_state = 11}, + [1101] = {.lex_state = 13, .external_lex_state = 11}, + [1102] = {.lex_state = 13, .external_lex_state = 11}, + [1103] = {.lex_state = 13, .external_lex_state = 11}, + [1104] = {.lex_state = 13, .external_lex_state = 11}, + [1105] = {.lex_state = 13, .external_lex_state = 11}, + [1106] = {.lex_state = 13, .external_lex_state = 11}, + [1107] = {.lex_state = 13, .external_lex_state = 11}, + [1108] = {.lex_state = 14, .external_lex_state = 13}, + [1109] = {.lex_state = 14, .external_lex_state = 13}, + [1110] = {.lex_state = 13, .external_lex_state = 11}, + [1111] = {.lex_state = 13, .external_lex_state = 11}, + [1112] = {.lex_state = 14, .external_lex_state = 13}, + [1113] = {.lex_state = 14, .external_lex_state = 13}, + [1114] = {.lex_state = 14, .external_lex_state = 13}, + [1115] = {.lex_state = 13, .external_lex_state = 15}, + [1116] = {.lex_state = 13, .external_lex_state = 15}, + [1117] = {.lex_state = 13, .external_lex_state = 11}, + [1118] = {.lex_state = 14, .external_lex_state = 13}, + [1119] = {.lex_state = 14, .external_lex_state = 13}, + [1120] = {.lex_state = 14, .external_lex_state = 13}, + [1121] = {.lex_state = 13, .external_lex_state = 11}, + [1122] = {.lex_state = 13, .external_lex_state = 11}, + [1123] = {.lex_state = 13, .external_lex_state = 15}, + [1124] = {.lex_state = 13, .external_lex_state = 15}, + [1125] = {.lex_state = 13, .external_lex_state = 15}, + [1126] = {.lex_state = 13, .external_lex_state = 15}, + [1127] = {.lex_state = 13, .external_lex_state = 15}, + [1128] = {.lex_state = 13, .external_lex_state = 15}, + [1129] = {.lex_state = 13, .external_lex_state = 15}, + [1130] = {.lex_state = 13, .external_lex_state = 15}, + [1131] = {.lex_state = 13, .external_lex_state = 11}, + [1132] = {.lex_state = 13, .external_lex_state = 12}, + [1133] = {.lex_state = 13, .external_lex_state = 12}, + [1134] = {.lex_state = 13, .external_lex_state = 13}, + [1135] = {.lex_state = 13, .external_lex_state = 13}, + [1136] = {.lex_state = 13, .external_lex_state = 13}, + [1137] = {.lex_state = 13, .external_lex_state = 12}, + [1138] = {.lex_state = 13, .external_lex_state = 12}, + [1139] = {.lex_state = 14, .external_lex_state = 14}, + [1140] = {.lex_state = 13, .external_lex_state = 12}, + [1141] = {.lex_state = 14, .external_lex_state = 15}, + [1142] = {.lex_state = 13, .external_lex_state = 12}, + [1143] = {.lex_state = 14, .external_lex_state = 15}, + [1144] = {.lex_state = 13, .external_lex_state = 13}, + [1145] = {.lex_state = 13, .external_lex_state = 12}, + [1146] = {.lex_state = 13, .external_lex_state = 12}, + [1147] = {.lex_state = 13, .external_lex_state = 13}, + [1148] = {.lex_state = 13, .external_lex_state = 13}, + [1149] = {.lex_state = 13, .external_lex_state = 12}, + [1150] = {.lex_state = 13, .external_lex_state = 12}, + [1151] = {.lex_state = 13, .external_lex_state = 13}, + [1152] = {.lex_state = 13, .external_lex_state = 13}, + [1153] = {.lex_state = 13, .external_lex_state = 13}, + [1154] = {.lex_state = 13, .external_lex_state = 13}, + [1155] = {.lex_state = 13, .external_lex_state = 12}, + [1156] = {.lex_state = 13, .external_lex_state = 8}, + [1157] = {.lex_state = 13, .external_lex_state = 12}, + [1158] = {.lex_state = 14, .external_lex_state = 14}, + [1159] = {.lex_state = 14, .external_lex_state = 12}, + [1160] = {.lex_state = 13, .external_lex_state = 13}, + [1161] = {.lex_state = 13, .external_lex_state = 13}, + [1162] = {.lex_state = 13, .external_lex_state = 13}, + [1163] = {.lex_state = 13, .external_lex_state = 13}, + [1164] = {.lex_state = 13, .external_lex_state = 13}, + [1165] = {.lex_state = 13, .external_lex_state = 13}, + [1166] = {.lex_state = 13, .external_lex_state = 13}, + [1167] = {.lex_state = 13, .external_lex_state = 13}, + [1168] = {.lex_state = 13, .external_lex_state = 13}, + [1169] = {.lex_state = 13, .external_lex_state = 13}, + [1170] = {.lex_state = 13, .external_lex_state = 12}, + [1171] = {.lex_state = 13, .external_lex_state = 13}, + [1172] = {.lex_state = 13, .external_lex_state = 13}, + [1173] = {.lex_state = 13, .external_lex_state = 12}, + [1174] = {.lex_state = 13, .external_lex_state = 12}, + [1175] = {.lex_state = 13, .external_lex_state = 12}, + [1176] = {.lex_state = 13, .external_lex_state = 12}, + [1177] = {.lex_state = 13, .external_lex_state = 12}, + [1178] = {.lex_state = 13, .external_lex_state = 12}, + [1179] = {.lex_state = 13, .external_lex_state = 13}, + [1180] = {.lex_state = 13, .external_lex_state = 13}, + [1181] = {.lex_state = 13, .external_lex_state = 13}, + [1182] = {.lex_state = 14, .external_lex_state = 14}, + [1183] = {.lex_state = 13, .external_lex_state = 13}, + [1184] = {.lex_state = 14, .external_lex_state = 14}, + [1185] = {.lex_state = 13, .external_lex_state = 13}, + [1186] = {.lex_state = 13, .external_lex_state = 13}, + [1187] = {.lex_state = 13, .external_lex_state = 13}, + [1188] = {.lex_state = 13, .external_lex_state = 13}, + [1189] = {.lex_state = 13, .external_lex_state = 13}, + [1190] = {.lex_state = 13, .external_lex_state = 13}, + [1191] = {.lex_state = 13, .external_lex_state = 13}, + [1192] = {.lex_state = 13, .external_lex_state = 13}, + [1193] = {.lex_state = 13, .external_lex_state = 13}, + [1194] = {.lex_state = 13, .external_lex_state = 12}, + [1195] = {.lex_state = 13, .external_lex_state = 8}, + [1196] = {.lex_state = 13, .external_lex_state = 13}, + [1197] = {.lex_state = 13, .external_lex_state = 13}, + [1198] = {.lex_state = 14, .external_lex_state = 14}, + [1199] = {.lex_state = 14, .external_lex_state = 14}, + [1200] = {.lex_state = 14, .external_lex_state = 14}, + [1201] = {.lex_state = 13, .external_lex_state = 12}, + [1202] = {.lex_state = 13, .external_lex_state = 12}, + [1203] = {.lex_state = 13, .external_lex_state = 14}, + [1204] = {.lex_state = 14, .external_lex_state = 14}, + [1205] = {.lex_state = 13, .external_lex_state = 13}, + [1206] = {.lex_state = 13, .external_lex_state = 8}, + [1207] = {.lex_state = 13, .external_lex_state = 13}, + [1208] = {.lex_state = 13, .external_lex_state = 13}, + [1209] = {.lex_state = 13, .external_lex_state = 13}, + [1210] = {.lex_state = 13, .external_lex_state = 12}, + [1211] = {.lex_state = 13, .external_lex_state = 12}, + [1212] = {.lex_state = 13, .external_lex_state = 12}, + [1213] = {.lex_state = 13, .external_lex_state = 12}, + [1214] = {.lex_state = 13, .external_lex_state = 12}, + [1215] = {.lex_state = 13, .external_lex_state = 12}, + [1216] = {.lex_state = 13, .external_lex_state = 12}, + [1217] = {.lex_state = 13, .external_lex_state = 12}, + [1218] = {.lex_state = 13, .external_lex_state = 13}, + [1219] = {.lex_state = 13, .external_lex_state = 13}, + [1220] = {.lex_state = 13, .external_lex_state = 12}, + [1221] = {.lex_state = 13, .external_lex_state = 12}, + [1222] = {.lex_state = 13, .external_lex_state = 8}, + [1223] = {.lex_state = 13, .external_lex_state = 13}, + [1224] = {.lex_state = 13, .external_lex_state = 13}, [1225] = {.lex_state = 14, .external_lex_state = 12}, [1226] = {.lex_state = 14, .external_lex_state = 12}, - [1227] = {.lex_state = 14, .external_lex_state = 12}, - [1228] = {.lex_state = 14, .external_lex_state = 13}, - [1229] = {.lex_state = 14, .external_lex_state = 12}, - [1230] = {.lex_state = 14, .external_lex_state = 12}, - [1231] = {.lex_state = 14, .external_lex_state = 12}, - [1232] = {.lex_state = 14, .external_lex_state = 12}, - [1233] = {.lex_state = 14, .external_lex_state = 12}, - [1234] = {.lex_state = 14, .external_lex_state = 12}, - [1235] = {.lex_state = 14, .external_lex_state = 12}, - [1236] = {.lex_state = 14, .external_lex_state = 12}, - [1237] = {.lex_state = 14, .external_lex_state = 12}, - [1238] = {.lex_state = 14, .external_lex_state = 12}, - [1239] = {.lex_state = 14, .external_lex_state = 13}, - [1240] = {.lex_state = 14, .external_lex_state = 12}, - [1241] = {.lex_state = 14, .external_lex_state = 12}, - [1242] = {.lex_state = 14, .external_lex_state = 12}, - [1243] = {.lex_state = 14, .external_lex_state = 13}, - [1244] = {.lex_state = 14, .external_lex_state = 13}, - [1245] = {.lex_state = 14, .external_lex_state = 13}, - [1246] = {.lex_state = 15, .external_lex_state = 14}, - [1247] = {.lex_state = 14, .external_lex_state = 12}, - [1248] = {.lex_state = 14, .external_lex_state = 12}, - [1249] = {.lex_state = 14, .external_lex_state = 13}, - [1250] = {.lex_state = 14, .external_lex_state = 13}, - [1251] = {.lex_state = 14, .external_lex_state = 12}, - [1252] = {.lex_state = 15, .external_lex_state = 14}, + [1227] = {.lex_state = 14, .external_lex_state = 14}, + [1228] = {.lex_state = 14, .external_lex_state = 15}, + [1229] = {.lex_state = 13, .external_lex_state = 12}, + [1230] = {.lex_state = 13, .external_lex_state = 13}, + [1231] = {.lex_state = 13, .external_lex_state = 14}, + [1232] = {.lex_state = 14, .external_lex_state = 15}, + [1233] = {.lex_state = 13, .external_lex_state = 13}, + [1234] = {.lex_state = 14, .external_lex_state = 14}, + [1235] = {.lex_state = 14, .external_lex_state = 14}, + [1236] = {.lex_state = 14, .external_lex_state = 14}, + [1237] = {.lex_state = 13, .external_lex_state = 14}, + [1238] = {.lex_state = 13, .external_lex_state = 14}, + [1239] = {.lex_state = 13, .external_lex_state = 14}, + [1240] = {.lex_state = 14, .external_lex_state = 15}, + [1241] = {.lex_state = 13, .external_lex_state = 12}, + [1242] = {.lex_state = 13, .external_lex_state = 13}, + [1243] = {.lex_state = 13, .external_lex_state = 13}, + [1244] = {.lex_state = 13, .external_lex_state = 13}, + [1245] = {.lex_state = 13, .external_lex_state = 13}, + [1246] = {.lex_state = 13, .external_lex_state = 13}, + [1247] = {.lex_state = 13, .external_lex_state = 14}, + [1248] = {.lex_state = 13, .external_lex_state = 14}, + [1249] = {.lex_state = 13, .external_lex_state = 12}, + [1250] = {.lex_state = 13, .external_lex_state = 13}, + [1251] = {.lex_state = 13, .external_lex_state = 12}, + [1252] = {.lex_state = 13, .external_lex_state = 12}, [1253] = {.lex_state = 14, .external_lex_state = 12}, - [1254] = {.lex_state = 14, .external_lex_state = 13}, - [1255] = {.lex_state = 14, .external_lex_state = 12}, - [1256] = {.lex_state = 14, .external_lex_state = 7}, - [1257] = {.lex_state = 14, .external_lex_state = 14}, - [1258] = {.lex_state = 14, .external_lex_state = 12}, - [1259] = {.lex_state = 14, .external_lex_state = 12}, - [1260] = {.lex_state = 15, .external_lex_state = 15}, - [1261] = {.lex_state = 14, .external_lex_state = 12}, - [1262] = {.lex_state = 14, .external_lex_state = 14}, + [1254] = {.lex_state = 13, .external_lex_state = 2}, + [1255] = {.lex_state = 13, .external_lex_state = 13}, + [1256] = {.lex_state = 13, .external_lex_state = 13}, + [1257] = {.lex_state = 13, .external_lex_state = 13}, + [1258] = {.lex_state = 13, .external_lex_state = 13}, + [1259] = {.lex_state = 13, .external_lex_state = 13}, + [1260] = {.lex_state = 13, .external_lex_state = 13}, + [1261] = {.lex_state = 13, .external_lex_state = 13}, + [1262] = {.lex_state = 13, .external_lex_state = 13}, [1263] = {.lex_state = 14, .external_lex_state = 12}, [1264] = {.lex_state = 14, .external_lex_state = 12}, - [1265] = {.lex_state = 14, .external_lex_state = 14}, - [1266] = {.lex_state = 14, .external_lex_state = 12}, - [1267] = {.lex_state = 14, .external_lex_state = 2}, - [1268] = {.lex_state = 14, .external_lex_state = 13}, - [1269] = {.lex_state = 14, .external_lex_state = 12}, - [1270] = {.lex_state = 14, .external_lex_state = 14}, - [1271] = {.lex_state = 14, .external_lex_state = 13}, - [1272] = {.lex_state = 14, .external_lex_state = 12}, - [1273] = {.lex_state = 14, .external_lex_state = 12}, - [1274] = {.lex_state = 14, .external_lex_state = 13}, - [1275] = {.lex_state = 14, .external_lex_state = 13}, - [1276] = {.lex_state = 14, .external_lex_state = 12}, - [1277] = {.lex_state = 14, .external_lex_state = 12}, - [1278] = {.lex_state = 14, .external_lex_state = 12}, - [1279] = {.lex_state = 14, .external_lex_state = 13}, - [1280] = {.lex_state = 14, .external_lex_state = 13}, - [1281] = {.lex_state = 14, .external_lex_state = 12}, - [1282] = {.lex_state = 14, .external_lex_state = 13}, - [1283] = {.lex_state = 14, .external_lex_state = 13}, - [1284] = {.lex_state = 14, .external_lex_state = 13}, - [1285] = {.lex_state = 15, .external_lex_state = 13}, - [1286] = {.lex_state = 14, .external_lex_state = 15}, - [1287] = {.lex_state = 14, .external_lex_state = 14}, - [1288] = {.lex_state = 14, .external_lex_state = 14}, - [1289] = {.lex_state = 14, .external_lex_state = 14}, - [1290] = {.lex_state = 15, .external_lex_state = 13}, - [1291] = {.lex_state = 14, .external_lex_state = 14}, - [1292] = {.lex_state = 14, .external_lex_state = 14}, - [1293] = {.lex_state = 14, .external_lex_state = 14}, - [1294] = {.lex_state = 14, .external_lex_state = 14}, - [1295] = {.lex_state = 14, .external_lex_state = 14}, - [1296] = {.lex_state = 14, .external_lex_state = 15}, - [1297] = {.lex_state = 14, .external_lex_state = 14}, - [1298] = {.lex_state = 14, .external_lex_state = 8}, - [1299] = {.lex_state = 14, .external_lex_state = 14}, - [1300] = {.lex_state = 14, .external_lex_state = 15}, - [1301] = {.lex_state = 14, .external_lex_state = 14}, - [1302] = {.lex_state = 14, .external_lex_state = 15}, - [1303] = {.lex_state = 14, .external_lex_state = 14}, - [1304] = {.lex_state = 14, .external_lex_state = 15}, - [1305] = {.lex_state = 14, .external_lex_state = 9}, - [1306] = {.lex_state = 14, .external_lex_state = 14}, - [1307] = {.lex_state = 14, .external_lex_state = 14}, - [1308] = {.lex_state = 14, .external_lex_state = 14}, - [1309] = {.lex_state = 14, .external_lex_state = 15}, - [1310] = {.lex_state = 14, .external_lex_state = 14}, - [1311] = {.lex_state = 15, .external_lex_state = 14}, - [1312] = {.lex_state = 14, .external_lex_state = 15}, - [1313] = {.lex_state = 14, .external_lex_state = 14}, - [1314] = {.lex_state = 14, .external_lex_state = 14}, - [1315] = {.lex_state = 14, .external_lex_state = 14}, - [1316] = {.lex_state = 14, .external_lex_state = 14}, - [1317] = {.lex_state = 14, .external_lex_state = 14}, - [1318] = {.lex_state = 14, .external_lex_state = 14}, - [1319] = {.lex_state = 14, .external_lex_state = 14}, - [1320] = {.lex_state = 14, .external_lex_state = 14}, - [1321] = {.lex_state = 15, .external_lex_state = 14}, - [1322] = {.lex_state = 13, .external_lex_state = 9}, + [1265] = {.lex_state = 13, .external_lex_state = 12}, + [1266] = {.lex_state = 13, .external_lex_state = 13}, + [1267] = {.lex_state = 13, .external_lex_state = 13}, + [1268] = {.lex_state = 13, .external_lex_state = 2}, + [1269] = {.lex_state = 13, .external_lex_state = 13}, + [1270] = {.lex_state = 13, .external_lex_state = 12}, + [1271] = {.lex_state = 13, .external_lex_state = 12}, + [1272] = {.lex_state = 13, .external_lex_state = 13}, + [1273] = {.lex_state = 13, .external_lex_state = 13}, + [1274] = {.lex_state = 13, .external_lex_state = 12}, + [1275] = {.lex_state = 13, .external_lex_state = 13}, + [1276] = {.lex_state = 13, .external_lex_state = 13}, + [1277] = {.lex_state = 13, .external_lex_state = 12}, + [1278] = {.lex_state = 13, .external_lex_state = 12}, + [1279] = {.lex_state = 13, .external_lex_state = 13}, + [1280] = {.lex_state = 13, .external_lex_state = 12}, + [1281] = {.lex_state = 13, .external_lex_state = 12}, + [1282] = {.lex_state = 13, .external_lex_state = 13}, + [1283] = {.lex_state = 13, .external_lex_state = 12}, + [1284] = {.lex_state = 13, .external_lex_state = 12}, + [1285] = {.lex_state = 13, .external_lex_state = 15}, + [1286] = {.lex_state = 13, .external_lex_state = 14}, + [1287] = {.lex_state = 13, .external_lex_state = 14}, + [1288] = {.lex_state = 13, .external_lex_state = 14}, + [1289] = {.lex_state = 13, .external_lex_state = 14}, + [1290] = {.lex_state = 13, .external_lex_state = 14}, + [1291] = {.lex_state = 13, .external_lex_state = 14}, + [1292] = {.lex_state = 13, .external_lex_state = 14}, + [1293] = {.lex_state = 13, .external_lex_state = 14}, + [1294] = {.lex_state = 13, .external_lex_state = 14}, + [1295] = {.lex_state = 13, .external_lex_state = 15}, + [1296] = {.lex_state = 13, .external_lex_state = 14}, + [1297] = {.lex_state = 13, .external_lex_state = 14}, + [1298] = {.lex_state = 13, .external_lex_state = 15}, + [1299] = {.lex_state = 13, .external_lex_state = 15}, + [1300] = {.lex_state = 13, .external_lex_state = 15}, + [1301] = {.lex_state = 13, .external_lex_state = 14}, + [1302] = {.lex_state = 13, .external_lex_state = 15}, + [1303] = {.lex_state = 13, .external_lex_state = 15}, + [1304] = {.lex_state = 13, .external_lex_state = 14}, + [1305] = {.lex_state = 13, .external_lex_state = 14}, + [1306] = {.lex_state = 13, .external_lex_state = 14}, + [1307] = {.lex_state = 13, .external_lex_state = 14}, + [1308] = {.lex_state = 13, .external_lex_state = 14}, + [1309] = {.lex_state = 13, .external_lex_state = 14}, + [1310] = {.lex_state = 13, .external_lex_state = 14}, + [1311] = {.lex_state = 13, .external_lex_state = 14}, + [1312] = {.lex_state = 13, .external_lex_state = 14}, + [1313] = {.lex_state = 13, .external_lex_state = 14}, + [1314] = {.lex_state = 13, .external_lex_state = 14}, + [1315] = {.lex_state = 13, .external_lex_state = 14}, + [1316] = {.lex_state = 13, .external_lex_state = 15}, + [1317] = {.lex_state = 13, .external_lex_state = 14}, + [1318] = {.lex_state = 13, .external_lex_state = 14}, + [1319] = {.lex_state = 13, .external_lex_state = 14}, + [1320] = {.lex_state = 13, .external_lex_state = 14}, + [1321] = {.lex_state = 13, .external_lex_state = 14}, + [1322] = {.lex_state = 14, .external_lex_state = 14}, [1323] = {.lex_state = 14, .external_lex_state = 14}, - [1324] = {.lex_state = 14, .external_lex_state = 15}, - [1325] = {.lex_state = 14, .external_lex_state = 14}, - [1326] = {.lex_state = 14, .external_lex_state = 15}, - [1327] = {.lex_state = 14, .external_lex_state = 14}, - [1328] = {.lex_state = 14, .external_lex_state = 15}, - [1329] = {.lex_state = 15, .external_lex_state = 13}, - [1330] = {.lex_state = 14, .external_lex_state = 14}, - [1331] = {.lex_state = 14, .external_lex_state = 15}, - [1332] = {.lex_state = 14, .external_lex_state = 15}, - [1333] = {.lex_state = 14, .external_lex_state = 15}, - [1334] = {.lex_state = 14, .external_lex_state = 15}, - [1335] = {.lex_state = 14, .external_lex_state = 15}, - [1336] = {.lex_state = 14, .external_lex_state = 15}, - [1337] = {.lex_state = 14, .external_lex_state = 15}, - [1338] = {.lex_state = 14, .external_lex_state = 14}, - [1339] = {.lex_state = 14, .external_lex_state = 15}, - [1340] = {.lex_state = 14, .external_lex_state = 15}, - [1341] = {.lex_state = 13, .external_lex_state = 9}, - [1342] = {.lex_state = 14, .external_lex_state = 14}, - [1343] = {.lex_state = 14, .external_lex_state = 14}, - [1344] = {.lex_state = 14, .external_lex_state = 14}, - [1345] = {.lex_state = 14, .external_lex_state = 14}, - [1346] = {.lex_state = 15, .external_lex_state = 13}, - [1347] = {.lex_state = 14, .external_lex_state = 14}, - [1348] = {.lex_state = 14, .external_lex_state = 14}, - [1349] = {.lex_state = 14, .external_lex_state = 14}, - [1350] = {.lex_state = 14, .external_lex_state = 15}, - [1351] = {.lex_state = 14, .external_lex_state = 13}, - [1352] = {.lex_state = 14, .external_lex_state = 14}, - [1353] = {.lex_state = 14, .external_lex_state = 14}, - [1354] = {.lex_state = 14, .external_lex_state = 14}, - [1355] = {.lex_state = 14, .external_lex_state = 13}, - [1356] = {.lex_state = 14, .external_lex_state = 14}, - [1357] = {.lex_state = 14, .external_lex_state = 14}, - [1358] = {.lex_state = 14, .external_lex_state = 13}, - [1359] = {.lex_state = 14, .external_lex_state = 14}, - [1360] = {.lex_state = 14, .external_lex_state = 14}, - [1361] = {.lex_state = 14, .external_lex_state = 14}, - [1362] = {.lex_state = 14, .external_lex_state = 14}, - [1363] = {.lex_state = 14, .external_lex_state = 15}, - [1364] = {.lex_state = 14, .external_lex_state = 14}, - [1365] = {.lex_state = 14, .external_lex_state = 14}, - [1366] = {.lex_state = 13, .external_lex_state = 9}, - [1367] = {.lex_state = 14, .external_lex_state = 14}, - [1368] = {.lex_state = 14, .external_lex_state = 14}, - [1369] = {.lex_state = 14, .external_lex_state = 15}, - [1370] = {.lex_state = 14, .external_lex_state = 14}, - [1371] = {.lex_state = 14, .external_lex_state = 14}, - [1372] = {.lex_state = 13, .external_lex_state = 9}, - [1373] = {.lex_state = 13, .external_lex_state = 9}, - [1374] = {.lex_state = 14, .external_lex_state = 14}, - [1375] = {.lex_state = 14, .external_lex_state = 14}, - [1376] = {.lex_state = 14, .external_lex_state = 14}, - [1377] = {.lex_state = 14, .external_lex_state = 15}, - [1378] = {.lex_state = 14, .external_lex_state = 15}, - [1379] = {.lex_state = 14, .external_lex_state = 15}, - [1380] = {.lex_state = 14, .external_lex_state = 14}, - [1381] = {.lex_state = 14, .external_lex_state = 14}, - [1382] = {.lex_state = 14, .external_lex_state = 15}, - [1383] = {.lex_state = 14, .external_lex_state = 14}, - [1384] = {.lex_state = 14, .external_lex_state = 14}, - [1385] = {.lex_state = 14, .external_lex_state = 14}, - [1386] = {.lex_state = 14, .external_lex_state = 14}, - [1387] = {.lex_state = 14, .external_lex_state = 15}, - [1388] = {.lex_state = 14, .external_lex_state = 15}, - [1389] = {.lex_state = 13, .external_lex_state = 9}, - [1390] = {.lex_state = 14, .external_lex_state = 14}, - [1391] = {.lex_state = 14, .external_lex_state = 14}, - [1392] = {.lex_state = 14, .external_lex_state = 15}, - [1393] = {.lex_state = 14, .external_lex_state = 15}, - [1394] = {.lex_state = 15, .external_lex_state = 14}, - [1395] = {.lex_state = 14, .external_lex_state = 15}, - [1396] = {.lex_state = 14, .external_lex_state = 13}, - [1397] = {.lex_state = 14, .external_lex_state = 15}, - [1398] = {.lex_state = 14, .external_lex_state = 15}, - [1399] = {.lex_state = 14, .external_lex_state = 14}, - [1400] = {.lex_state = 14, .external_lex_state = 14}, - [1401] = {.lex_state = 14, .external_lex_state = 15}, - [1402] = {.lex_state = 14, .external_lex_state = 14}, - [1403] = {.lex_state = 14, .external_lex_state = 14}, - [1404] = {.lex_state = 14, .external_lex_state = 15}, - [1405] = {.lex_state = 14, .external_lex_state = 8}, - [1406] = {.lex_state = 14, .external_lex_state = 14}, - [1407] = {.lex_state = 14, .external_lex_state = 14}, - [1408] = {.lex_state = 14, .external_lex_state = 14}, - [1409] = {.lex_state = 14, .external_lex_state = 15}, - [1410] = {.lex_state = 14, .external_lex_state = 14}, - [1411] = {.lex_state = 14, .external_lex_state = 14}, - [1412] = {.lex_state = 14, .external_lex_state = 13}, - [1413] = {.lex_state = 15, .external_lex_state = 14}, - [1414] = {.lex_state = 15, .external_lex_state = 14}, - [1415] = {.lex_state = 14, .external_lex_state = 13}, - [1416] = {.lex_state = 14, .external_lex_state = 13}, - [1417] = {.lex_state = 14, .external_lex_state = 13}, - [1418] = {.lex_state = 14, .external_lex_state = 13}, - [1419] = {.lex_state = 14, .external_lex_state = 13}, - [1420] = {.lex_state = 14, .external_lex_state = 13}, - [1421] = {.lex_state = 14, .external_lex_state = 13}, - [1422] = {.lex_state = 14, .external_lex_state = 13}, - [1423] = {.lex_state = 14, .external_lex_state = 13}, - [1424] = {.lex_state = 14, .external_lex_state = 13}, - [1425] = {.lex_state = 14, .external_lex_state = 13}, - [1426] = {.lex_state = 14, .external_lex_state = 13}, - [1427] = {.lex_state = 14, .external_lex_state = 15}, - [1428] = {.lex_state = 14, .external_lex_state = 13}, - [1429] = {.lex_state = 14, .external_lex_state = 13}, - [1430] = {.lex_state = 14, .external_lex_state = 13}, - [1431] = {.lex_state = 14, .external_lex_state = 13}, - [1432] = {.lex_state = 15, .external_lex_state = 13}, - [1433] = {.lex_state = 14, .external_lex_state = 13}, - [1434] = {.lex_state = 14, .external_lex_state = 13}, - [1435] = {.lex_state = 14, .external_lex_state = 13}, - [1436] = {.lex_state = 14, .external_lex_state = 13}, - [1437] = {.lex_state = 14, .external_lex_state = 13}, - [1438] = {.lex_state = 14, .external_lex_state = 13}, - [1439] = {.lex_state = 14, .external_lex_state = 13}, - [1440] = {.lex_state = 14, .external_lex_state = 13}, - [1441] = {.lex_state = 14, .external_lex_state = 13}, - [1442] = {.lex_state = 14, .external_lex_state = 13}, - [1443] = {.lex_state = 14, .external_lex_state = 13}, - [1444] = {.lex_state = 14, .external_lex_state = 13}, - [1445] = {.lex_state = 15, .external_lex_state = 12}, - [1446] = {.lex_state = 15, .external_lex_state = 12}, - [1447] = {.lex_state = 15, .external_lex_state = 12}, - [1448] = {.lex_state = 14, .external_lex_state = 13}, - [1449] = {.lex_state = 14, .external_lex_state = 13}, - [1450] = {.lex_state = 14, .external_lex_state = 13}, + [1324] = {.lex_state = 14, .external_lex_state = 14}, + [1325] = {.lex_state = 13, .external_lex_state = 14}, + [1326] = {.lex_state = 13, .external_lex_state = 14}, + [1327] = {.lex_state = 13, .external_lex_state = 14}, + [1328] = {.lex_state = 13, .external_lex_state = 14}, + [1329] = {.lex_state = 8, .external_lex_state = 11}, + [1330] = {.lex_state = 8, .external_lex_state = 11}, + [1331] = {.lex_state = 13, .external_lex_state = 14}, + [1332] = {.lex_state = 13, .external_lex_state = 15}, + [1333] = {.lex_state = 13, .external_lex_state = 14}, + [1334] = {.lex_state = 13, .external_lex_state = 14}, + [1335] = {.lex_state = 13, .external_lex_state = 14}, + [1336] = {.lex_state = 13, .external_lex_state = 14}, + [1337] = {.lex_state = 13, .external_lex_state = 14}, + [1338] = {.lex_state = 13, .external_lex_state = 14}, + [1339] = {.lex_state = 13, .external_lex_state = 7}, + [1340] = {.lex_state = 13, .external_lex_state = 14}, + [1341] = {.lex_state = 13, .external_lex_state = 12}, + [1342] = {.lex_state = 13, .external_lex_state = 14}, + [1343] = {.lex_state = 13, .external_lex_state = 14}, + [1344] = {.lex_state = 13, .external_lex_state = 7}, + [1345] = {.lex_state = 8, .external_lex_state = 11}, + [1346] = {.lex_state = 8, .external_lex_state = 11}, + [1347] = {.lex_state = 8, .external_lex_state = 11}, + [1348] = {.lex_state = 13, .external_lex_state = 14}, + [1349] = {.lex_state = 13, .external_lex_state = 14}, + [1350] = {.lex_state = 8, .external_lex_state = 11}, + [1351] = {.lex_state = 13, .external_lex_state = 15}, + [1352] = {.lex_state = 13, .external_lex_state = 12}, + [1353] = {.lex_state = 13, .external_lex_state = 15}, + [1354] = {.lex_state = 13, .external_lex_state = 14}, + [1355] = {.lex_state = 13, .external_lex_state = 14}, + [1356] = {.lex_state = 13, .external_lex_state = 14}, + [1357] = {.lex_state = 13, .external_lex_state = 14}, + [1358] = {.lex_state = 13, .external_lex_state = 14}, + [1359] = {.lex_state = 13, .external_lex_state = 14}, + [1360] = {.lex_state = 13, .external_lex_state = 14}, + [1361] = {.lex_state = 13, .external_lex_state = 15}, + [1362] = {.lex_state = 13, .external_lex_state = 14}, + [1363] = {.lex_state = 13, .external_lex_state = 14}, + [1364] = {.lex_state = 13, .external_lex_state = 14}, + [1365] = {.lex_state = 13, .external_lex_state = 14}, + [1366] = {.lex_state = 13, .external_lex_state = 12}, + [1367] = {.lex_state = 13, .external_lex_state = 14}, + [1368] = {.lex_state = 13, .external_lex_state = 12}, + [1369] = {.lex_state = 13, .external_lex_state = 15}, + [1370] = {.lex_state = 13, .external_lex_state = 15}, + [1371] = {.lex_state = 13, .external_lex_state = 15}, + [1372] = {.lex_state = 13, .external_lex_state = 15}, + [1373] = {.lex_state = 13, .external_lex_state = 14}, + [1374] = {.lex_state = 13, .external_lex_state = 14}, + [1375] = {.lex_state = 13, .external_lex_state = 14}, + [1376] = {.lex_state = 13, .external_lex_state = 14}, + [1377] = {.lex_state = 13, .external_lex_state = 15}, + [1378] = {.lex_state = 13, .external_lex_state = 15}, + [1379] = {.lex_state = 13, .external_lex_state = 14}, + [1380] = {.lex_state = 13, .external_lex_state = 14}, + [1381] = {.lex_state = 13, .external_lex_state = 14}, + [1382] = {.lex_state = 13, .external_lex_state = 15}, + [1383] = {.lex_state = 13, .external_lex_state = 15}, + [1384] = {.lex_state = 13, .external_lex_state = 15}, + [1385] = {.lex_state = 13, .external_lex_state = 15}, + [1386] = {.lex_state = 13, .external_lex_state = 15}, + [1387] = {.lex_state = 13, .external_lex_state = 14}, + [1388] = {.lex_state = 13, .external_lex_state = 14}, + [1389] = {.lex_state = 13, .external_lex_state = 15}, + [1390] = {.lex_state = 13, .external_lex_state = 15}, + [1391] = {.lex_state = 14, .external_lex_state = 12}, + [1392] = {.lex_state = 13, .external_lex_state = 15}, + [1393] = {.lex_state = 13, .external_lex_state = 15}, + [1394] = {.lex_state = 13, .external_lex_state = 15}, + [1395] = {.lex_state = 14, .external_lex_state = 12}, + [1396] = {.lex_state = 13, .external_lex_state = 15}, + [1397] = {.lex_state = 14, .external_lex_state = 12}, + [1398] = {.lex_state = 13, .external_lex_state = 14}, + [1399] = {.lex_state = 13, .external_lex_state = 14}, + [1400] = {.lex_state = 13, .external_lex_state = 14}, + [1401] = {.lex_state = 13, .external_lex_state = 14}, + [1402] = {.lex_state = 13, .external_lex_state = 15}, + [1403] = {.lex_state = 13, .external_lex_state = 15}, + [1404] = {.lex_state = 13, .external_lex_state = 15}, + [1405] = {.lex_state = 13, .external_lex_state = 15}, + [1406] = {.lex_state = 13, .external_lex_state = 15}, + [1407] = {.lex_state = 13, .external_lex_state = 15}, + [1408] = {.lex_state = 13, .external_lex_state = 15}, + [1409] = {.lex_state = 13, .external_lex_state = 11}, + [1410] = {.lex_state = 13, .external_lex_state = 14}, + [1411] = {.lex_state = 13, .external_lex_state = 12}, + [1412] = {.lex_state = 13, .external_lex_state = 12}, + [1413] = {.lex_state = 14, .external_lex_state = 13}, + [1414] = {.lex_state = 13, .external_lex_state = 12}, + [1415] = {.lex_state = 13, .external_lex_state = 12}, + [1416] = {.lex_state = 13, .external_lex_state = 12}, + [1417] = {.lex_state = 13, .external_lex_state = 12}, + [1418] = {.lex_state = 13, .external_lex_state = 12}, + [1419] = {.lex_state = 13, .external_lex_state = 12}, + [1420] = {.lex_state = 13, .external_lex_state = 12}, + [1421] = {.lex_state = 14, .external_lex_state = 14}, + [1422] = {.lex_state = 13, .external_lex_state = 12}, + [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 = 15, .external_lex_state = 14}, - [1453] = {.lex_state = 15, .external_lex_state = 13}, - [1454] = {.lex_state = 15, .external_lex_state = 13}, - [1455] = {.lex_state = 14, .external_lex_state = 13}, - [1456] = {.lex_state = 14, .external_lex_state = 13}, - [1457] = {.lex_state = 14, .external_lex_state = 13}, - [1458] = {.lex_state = 14, .external_lex_state = 13}, - [1459] = {.lex_state = 13, .external_lex_state = 15}, - [1460] = {.lex_state = 13, .external_lex_state = 15}, - [1461] = {.lex_state = 13, .external_lex_state = 15}, - [1462] = {.lex_state = 13, .external_lex_state = 15}, - [1463] = {.lex_state = 13, .external_lex_state = 15}, - [1464] = {.lex_state = 13, .external_lex_state = 15}, - [1465] = {.lex_state = 13, .external_lex_state = 15}, - [1466] = {.lex_state = 13, .external_lex_state = 15}, - [1467] = {.lex_state = 13, .external_lex_state = 15}, - [1468] = {.lex_state = 13, .external_lex_state = 15}, - [1469] = {.lex_state = 13, .external_lex_state = 15}, - [1470] = {.lex_state = 14, .external_lex_state = 12}, - [1471] = {.lex_state = 13, .external_lex_state = 15}, - [1472] = {.lex_state = 13, .external_lex_state = 15}, - [1473] = {.lex_state = 13, .external_lex_state = 15}, - [1474] = {.lex_state = 14, .external_lex_state = 14}, - [1475] = {.lex_state = 14, .external_lex_state = 13}, - [1476] = {.lex_state = 13, .external_lex_state = 15}, - [1477] = {.lex_state = 13, .external_lex_state = 15}, + [1452] = {.lex_state = 14, .external_lex_state = 13}, + [1453] = {.lex_state = 13, .external_lex_state = 12}, + [1454] = {.lex_state = 13, .external_lex_state = 12}, + [1455] = {.lex_state = 13, .external_lex_state = 12}, + [1456] = {.lex_state = 13, .external_lex_state = 12}, + [1457] = {.lex_state = 13, .external_lex_state = 12}, + [1458] = {.lex_state = 13, .external_lex_state = 12}, + [1459] = {.lex_state = 8, .external_lex_state = 15}, + [1460] = {.lex_state = 8, .external_lex_state = 15}, + [1461] = {.lex_state = 8, .external_lex_state = 15}, + [1462] = {.lex_state = 8, .external_lex_state = 15}, + [1463] = {.lex_state = 8, .external_lex_state = 15}, + [1464] = {.lex_state = 8, .external_lex_state = 15}, + [1465] = {.lex_state = 8, .external_lex_state = 15}, + [1466] = {.lex_state = 8, .external_lex_state = 15}, + [1467] = {.lex_state = 8, .external_lex_state = 15}, + [1468] = {.lex_state = 8, .external_lex_state = 15}, + [1469] = {.lex_state = 8, .external_lex_state = 15}, + [1470] = {.lex_state = 8, .external_lex_state = 15}, + [1471] = {.lex_state = 8, .external_lex_state = 15}, + [1472] = {.lex_state = 13, .external_lex_state = 14}, + [1473] = {.lex_state = 13, .external_lex_state = 13}, + [1474] = {.lex_state = 8, .external_lex_state = 15}, + [1475] = {.lex_state = 8, .external_lex_state = 15}, + [1476] = {.lex_state = 8, .external_lex_state = 15}, + [1477] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 1}, [1478] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1479] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1479] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, [1480] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [1481] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, - [1482] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1483] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1481] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1482] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1483] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, [1484] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, [1485] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, [1486] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, [1487] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1488] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1488] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 15}, [1489] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, [1490] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1491] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1492] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1491] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1492] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, [1493] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, [1494] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1495] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [1496] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1497] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 15}, - [1498] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1495] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1496] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1497] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1498] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, [1499] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1500] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1501] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1502] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1503] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1504] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [1505] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [1506] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, - [1507] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1500] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1501] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1502] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 15}, + [1503] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, + [1504] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 15}, + [1505] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, + [1506] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 15}, + [1507] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 15}, [1508] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, - [1509] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 15}, - [1510] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, - [1511] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1512] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, - [1513] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 15}, - [1514] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, - [1515] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1509] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1510] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1511] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 15}, + [1512] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1513] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1514] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1515] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, [1516] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, [1517] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, [1518] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, [1519] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1520] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1520] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, [1521] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, [1522] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, [1523] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1524] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, + [1524] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, [1525] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, [1526] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, [1527] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1528] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1529] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1528] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, + [1529] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, [1530] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1531] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, - [1532] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1533] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1531] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1532] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, + [1533] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, [1534] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1535] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, + [1535] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, [1536] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, - [1537] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, + [1537] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, [1538] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, [1539] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1540] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1540] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, [1541] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, [1542] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, [1543] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1544] = {.lex_state = 13, .external_lex_state = 9}, - [1545] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1546] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1544] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1545] = {.lex_state = 8, .external_lex_state = 11}, + [1546] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 15}, [1547] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1548] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 15}, + [1548] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, [1549] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1550] = {.lex_state = 13, .external_lex_state = 9}, - [1551] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1552] = {.lex_state = 13, .external_lex_state = 13}, - [1553] = {.lex_state = 13, .external_lex_state = 13}, - [1554] = {.lex_state = 13, .external_lex_state = 14}, - [1555] = {.lex_state = 13, .external_lex_state = 14}, - [1556] = {.lex_state = 13, .external_lex_state = 15}, - [1557] = {.lex_state = 13, .external_lex_state = 15}, - [1558] = {.lex_state = 13, .external_lex_state = 12}, - [1559] = {.lex_state = 13, .external_lex_state = 12}, - [1560] = {.lex_state = 13, .external_lex_state = 13}, - [1561] = {.lex_state = 13, .external_lex_state = 12}, - [1562] = {.lex_state = 13, .external_lex_state = 13}, - [1563] = {.lex_state = 13, .external_lex_state = 12}, - [1564] = {.lex_state = 7, .external_lex_state = 14}, - [1565] = {.lex_state = 14, .external_lex_state = 12}, - [1566] = {.lex_state = 14, .external_lex_state = 12}, - [1567] = {.lex_state = 14, .external_lex_state = 12}, - [1568] = {.lex_state = 14, .external_lex_state = 12}, - [1569] = {.lex_state = 14, .external_lex_state = 12}, - [1570] = {.lex_state = 14, .external_lex_state = 12}, - [1571] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1572] = {.lex_state = 7, .external_lex_state = 14}, - [1573] = {.lex_state = 54, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1574] = {.lex_state = 14, .external_lex_state = 14}, - [1575] = {.lex_state = 11, .external_lex_state = 9}, - [1576] = {.lex_state = 11, .external_lex_state = 9}, - [1577] = {.lex_state = 14, .external_lex_state = 14}, - [1578] = {.lex_state = 14, .external_lex_state = 14}, - [1579] = {.lex_state = 14, .external_lex_state = 14}, - [1580] = {.lex_state = 14, .external_lex_state = 14}, - [1581] = {.lex_state = 14, .external_lex_state = 14}, - [1582] = {.lex_state = 14, .external_lex_state = 15}, - [1583] = {.lex_state = 14, .external_lex_state = 14}, - [1584] = {.lex_state = 14, .external_lex_state = 14}, - [1585] = {.lex_state = 14, .external_lex_state = 14}, - [1586] = {.lex_state = 11, .external_lex_state = 9}, - [1587] = {.lex_state = 11, .external_lex_state = 9}, - [1588] = {.lex_state = 11, .external_lex_state = 9}, - [1589] = {.lex_state = 14, .external_lex_state = 14}, - [1590] = {.lex_state = 14, .external_lex_state = 15}, - [1591] = {.lex_state = 14, .external_lex_state = 15}, - [1592] = {.lex_state = 11, .external_lex_state = 9}, - [1593] = {.lex_state = 14, .external_lex_state = 15}, - [1594] = {.lex_state = 14, .external_lex_state = 15}, - [1595] = {.lex_state = 14, .external_lex_state = 15}, - [1596] = {.lex_state = 14, .external_lex_state = 15}, - [1597] = {.lex_state = 14, .external_lex_state = 15}, - [1598] = {.lex_state = 14, .external_lex_state = 15}, - [1599] = {.lex_state = 14, .external_lex_state = 15}, - [1600] = {.lex_state = 14, .external_lex_state = 14}, - [1601] = {.lex_state = 14, .external_lex_state = 14}, - [1602] = {.lex_state = 14, .external_lex_state = 13}, - [1603] = {.lex_state = 14, .external_lex_state = 13}, - [1604] = {.lex_state = 14, .external_lex_state = 15}, - [1605] = {.lex_state = 14, .external_lex_state = 15}, - [1606] = {.lex_state = 14, .external_lex_state = 13}, - [1607] = {.lex_state = 14, .external_lex_state = 13}, - [1608] = {.lex_state = 14, .external_lex_state = 13}, - [1609] = {.lex_state = 14, .external_lex_state = 15}, - [1610] = {.lex_state = 14, .external_lex_state = 15}, - [1611] = {.lex_state = 14, .external_lex_state = 15}, - [1612] = {.lex_state = 14, .external_lex_state = 15}, - [1613] = {.lex_state = 14, .external_lex_state = 15}, - [1614] = {.lex_state = 14, .external_lex_state = 15}, - [1615] = {.lex_state = 14, .external_lex_state = 15}, - [1616] = {.lex_state = 14, .external_lex_state = 15}, - [1617] = {.lex_state = 14, .external_lex_state = 15}, - [1618] = {.lex_state = 14, .external_lex_state = 13}, - [1619] = {.lex_state = 14, .external_lex_state = 15}, + [1550] = {.lex_state = 8, .external_lex_state = 11}, + [1551] = {.lex_state = 8, .external_lex_state = 12}, + [1552] = {.lex_state = 8, .external_lex_state = 12}, + [1553] = {.lex_state = 8, .external_lex_state = 14}, + [1554] = {.lex_state = 8, .external_lex_state = 15}, + [1555] = {.lex_state = 8, .external_lex_state = 14}, + [1556] = {.lex_state = 8, .external_lex_state = 15}, + [1557] = {.lex_state = 52, .external_lex_state = 13}, + [1558] = {.lex_state = 52, .external_lex_state = 13}, + [1559] = {.lex_state = 8, .external_lex_state = 12}, + [1560] = {.lex_state = 52, .external_lex_state = 13}, + [1561] = {.lex_state = 52, .external_lex_state = 13}, + [1562] = {.lex_state = 8, .external_lex_state = 12}, + [1563] = {.lex_state = 13, .external_lex_state = 13}, + [1564] = {.lex_state = 52, .external_lex_state = 14}, + [1565] = {.lex_state = 13, .external_lex_state = 13}, + [1566] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1567] = {.lex_state = 13, .external_lex_state = 13}, + [1568] = {.lex_state = 52, .external_lex_state = 14}, + [1569] = {.lex_state = 13, .external_lex_state = 13}, + [1570] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1571] = {.lex_state = 13, .external_lex_state = 13}, + [1572] = {.lex_state = 13, .external_lex_state = 13}, + [1573] = {.lex_state = 13, .external_lex_state = 14}, + [1574] = {.lex_state = 11, .external_lex_state = 11}, + [1575] = {.lex_state = 13, .external_lex_state = 14}, + [1576] = {.lex_state = 11, .external_lex_state = 11}, + [1577] = {.lex_state = 13, .external_lex_state = 14}, + [1578] = {.lex_state = 13, .external_lex_state = 14}, + [1579] = {.lex_state = 13, .external_lex_state = 14}, + [1580] = {.lex_state = 13, .external_lex_state = 14}, + [1581] = {.lex_state = 13, .external_lex_state = 15}, + [1582] = {.lex_state = 13, .external_lex_state = 12}, + [1583] = {.lex_state = 13, .external_lex_state = 12}, + [1584] = {.lex_state = 11, .external_lex_state = 11}, + [1585] = {.lex_state = 13, .external_lex_state = 12}, + [1586] = {.lex_state = 13, .external_lex_state = 12}, + [1587] = {.lex_state = 13, .external_lex_state = 12}, + [1588] = {.lex_state = 13, .external_lex_state = 15}, + [1589] = {.lex_state = 13, .external_lex_state = 14}, + [1590] = {.lex_state = 13, .external_lex_state = 15}, + [1591] = {.lex_state = 13, .external_lex_state = 15}, + [1592] = {.lex_state = 13, .external_lex_state = 15}, + [1593] = {.lex_state = 11, .external_lex_state = 11}, + [1594] = {.lex_state = 13, .external_lex_state = 14}, + [1595] = {.lex_state = 13, .external_lex_state = 14}, + [1596] = {.lex_state = 13, .external_lex_state = 14}, + [1597] = {.lex_state = 11, .external_lex_state = 11}, + [1598] = {.lex_state = 13, .external_lex_state = 15}, + [1599] = {.lex_state = 13, .external_lex_state = 15}, + [1600] = {.lex_state = 13, .external_lex_state = 15}, + [1601] = {.lex_state = 13, .external_lex_state = 14}, + [1602] = {.lex_state = 11, .external_lex_state = 11}, + [1603] = {.lex_state = 13, .external_lex_state = 15}, + [1604] = {.lex_state = 13, .external_lex_state = 15}, + [1605] = {.lex_state = 13, .external_lex_state = 15}, + [1606] = {.lex_state = 13, .external_lex_state = 15}, + [1607] = {.lex_state = 13, .external_lex_state = 15}, + [1608] = {.lex_state = 13, .external_lex_state = 15}, + [1609] = {.lex_state = 13, .external_lex_state = 15}, + [1610] = {.lex_state = 13, .external_lex_state = 15}, + [1611] = {.lex_state = 13, .external_lex_state = 15}, + [1612] = {.lex_state = 13, .external_lex_state = 12}, + [1613] = {.lex_state = 13, .external_lex_state = 15}, + [1614] = {.lex_state = 13, .external_lex_state = 15}, + [1615] = {.lex_state = 13, .external_lex_state = 15}, + [1616] = {.lex_state = 13, .external_lex_state = 15}, + [1617] = {.lex_state = 13, .external_lex_state = 14}, + [1618] = {.lex_state = 13, .external_lex_state = 15}, + [1619] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, [1620] = {.lex_state = 11, .external_lex_state = 15}, - [1621] = {.lex_state = 11, .external_lex_state = 15}, + [1621] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, [1622] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, [1623] = {.lex_state = 11, .external_lex_state = 15}, - [1624] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1625] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1626] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1624] = {.lex_state = 11, .external_lex_state = 15}, + [1625] = {.lex_state = 11, .external_lex_state = 15}, + [1626] = {.lex_state = 11, .external_lex_state = 15}, [1627] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1628] = {.lex_state = 13, .external_lex_state = 15}, + [1628] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, [1629] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1630] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1631] = {.lex_state = 11, .external_lex_state = 9}, + [1630] = {.lex_state = 11, .external_lex_state = 15}, + [1631] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, [1632] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1633] = {.lex_state = 13, .external_lex_state = 15}, - [1634] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1635] = {.lex_state = 13, .external_lex_state = 15}, - [1636] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1637] = {.lex_state = 11, .external_lex_state = 15}, - [1638] = {.lex_state = 13, .external_lex_state = 15}, - [1639] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1633] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1634] = {.lex_state = 11, .external_lex_state = 11}, + [1635] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1636] = {.lex_state = 11, .external_lex_state = 15}, + [1637] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1638] = {.lex_state = 11, .external_lex_state = 15}, + [1639] = {.lex_state = 5, .external_lex_state = 14, .reserved_word_set_id = 1}, [1640] = {.lex_state = 5, .external_lex_state = 14, .reserved_word_set_id = 1}, - [1641] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1642] = {.lex_state = 5, .external_lex_state = 14, .reserved_word_set_id = 1}, - [1643] = {.lex_state = 5, .external_lex_state = 14, .reserved_word_set_id = 1}, - [1644] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1645] = {.lex_state = 11, .external_lex_state = 15}, - [1646] = {.lex_state = 13, .external_lex_state = 13}, + [1641] = {.lex_state = 5, .external_lex_state = 14, .reserved_word_set_id = 1}, + [1642] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1643] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1644] = {.lex_state = 11, .external_lex_state = 15}, + [1645] = {.lex_state = 8, .external_lex_state = 12}, + [1646] = {.lex_state = 5, .external_lex_state = 15, .reserved_word_set_id = 1}, [1647] = {.lex_state = 5, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1648] = {.lex_state = 5, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1649] = {.lex_state = 13, .external_lex_state = 9}, - [1650] = {.lex_state = 13, .external_lex_state = 12}, - [1651] = {.lex_state = 13, .external_lex_state = 9}, - [1652] = {.lex_state = 13, .external_lex_state = 9}, - [1653] = {.lex_state = 13, .external_lex_state = 9}, - [1654] = {.lex_state = 13, .external_lex_state = 12}, - [1655] = {.lex_state = 13, .external_lex_state = 9}, - [1656] = {.lex_state = 13, .external_lex_state = 9}, - [1657] = {.lex_state = 13, .external_lex_state = 9}, - [1658] = {.lex_state = 13, .external_lex_state = 9}, - [1659] = {.lex_state = 13, .external_lex_state = 9}, - [1660] = {.lex_state = 13, .external_lex_state = 12}, - [1661] = {.lex_state = 13, .external_lex_state = 12}, - [1662] = {.lex_state = 13, .external_lex_state = 12}, - [1663] = {.lex_state = 13, .external_lex_state = 12}, - [1664] = {.lex_state = 13, .external_lex_state = 12}, - [1665] = {.lex_state = 13, .external_lex_state = 12}, + [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 = 13, .external_lex_state = 13}, - [1668] = {.lex_state = 7, .external_lex_state = 14}, - [1669] = {.lex_state = 7, .external_lex_state = 13}, - [1670] = {.lex_state = 0, .external_lex_state = 16}, - [1671] = {.lex_state = 0, .external_lex_state = 16}, - [1672] = {.lex_state = 7, .external_lex_state = 14}, - [1673] = {.lex_state = 0, .external_lex_state = 16}, - [1674] = {.lex_state = 7, .external_lex_state = 14}, + [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 = 13, .external_lex_state = 13}, - [1677] = {.lex_state = 7, .external_lex_state = 14}, - [1678] = {.lex_state = 0, .external_lex_state = 16}, - [1679] = {.lex_state = 7, .external_lex_state = 14}, - [1680] = {.lex_state = 7, .external_lex_state = 14}, - [1681] = {.lex_state = 13, .external_lex_state = 9}, + [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 = 0, .external_lex_state = 16}, - [1684] = {.lex_state = 7, .external_lex_state = 14}, - [1685] = {.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 = 7, .external_lex_state = 14}, - [1688] = {.lex_state = 7, .external_lex_state = 14}, - [1689] = {.lex_state = 13, .external_lex_state = 13}, - [1690] = {.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 = 7, .external_lex_state = 14}, - [1693] = {.lex_state = 7, .external_lex_state = 14}, - [1694] = {.lex_state = 0, .external_lex_state = 16}, - [1695] = {.lex_state = 0, .external_lex_state = 16}, - [1696] = {.lex_state = 7, .external_lex_state = 14}, - [1697] = {.lex_state = 13, .external_lex_state = 13}, - [1698] = {.lex_state = 7, .external_lex_state = 14}, - [1699] = {.lex_state = 7, .external_lex_state = 14}, - [1700] = {.lex_state = 0, .external_lex_state = 16}, - [1701] = {.lex_state = 0, .external_lex_state = 16}, - [1702] = {.lex_state = 7, .external_lex_state = 14}, - [1703] = {.lex_state = 7, .external_lex_state = 14}, - [1704] = {.lex_state = 0, .external_lex_state = 16}, - [1705] = {.lex_state = 0, .external_lex_state = 16}, - [1706] = {.lex_state = 7, .external_lex_state = 13}, - [1707] = {.lex_state = 13, .external_lex_state = 13}, - [1708] = {.lex_state = 13, .external_lex_state = 13}, - [1709] = {.lex_state = 7, .external_lex_state = 13}, - [1710] = {.lex_state = 13, .external_lex_state = 13}, - [1711] = {.lex_state = 13, .external_lex_state = 13}, - [1712] = {.lex_state = 7, .external_lex_state = 13}, - [1713] = {.lex_state = 13, .external_lex_state = 13}, - [1714] = {.lex_state = 7, .external_lex_state = 13}, - [1715] = {.lex_state = 7, .external_lex_state = 13}, - [1716] = {.lex_state = 7, .external_lex_state = 13}, - [1717] = {.lex_state = 7, .external_lex_state = 13}, - [1718] = {.lex_state = 0, .external_lex_state = 16}, - [1719] = {.lex_state = 7, .external_lex_state = 14}, - [1720] = {.lex_state = 13, .external_lex_state = 14}, - [1721] = {.lex_state = 13, .external_lex_state = 14}, - [1722] = {.lex_state = 13, .external_lex_state = 15}, - [1723] = {.lex_state = 13, .external_lex_state = 14}, - [1724] = {.lex_state = 13, .external_lex_state = 15}, - [1725] = {.lex_state = 13, .external_lex_state = 15}, - [1726] = {.lex_state = 13, .external_lex_state = 15}, - [1727] = {.lex_state = 13, .external_lex_state = 15}, - [1728] = {.lex_state = 13, .external_lex_state = 15}, - [1729] = {.lex_state = 13, .external_lex_state = 15}, - [1730] = {.lex_state = 13, .external_lex_state = 15}, - [1731] = {.lex_state = 13, .external_lex_state = 9}, - [1732] = {.lex_state = 13, .external_lex_state = 14}, - [1733] = {.lex_state = 13, .external_lex_state = 14}, - [1734] = {.lex_state = 13, .external_lex_state = 12}, - [1735] = {.lex_state = 13, .external_lex_state = 12}, - [1736] = {.lex_state = 13, .external_lex_state = 14}, - [1737] = {.lex_state = 13, .external_lex_state = 15}, - [1738] = {.lex_state = 13, .external_lex_state = 14}, - [1739] = {.lex_state = 13, .external_lex_state = 14}, - [1740] = {.lex_state = 13, .external_lex_state = 14}, - [1741] = {.lex_state = 13, .external_lex_state = 14}, - [1742] = {.lex_state = 13, .external_lex_state = 13}, - [1743] = {.lex_state = 13, .external_lex_state = 13}, - [1744] = {.lex_state = 13, .external_lex_state = 12}, - [1745] = {.lex_state = 13, .external_lex_state = 13}, - [1746] = {.lex_state = 13, .external_lex_state = 13}, - [1747] = {.lex_state = 13, .external_lex_state = 13}, - [1748] = {.lex_state = 13, .external_lex_state = 13}, - [1749] = {.lex_state = 13, .external_lex_state = 13}, - [1750] = {.lex_state = 13, .external_lex_state = 13}, - [1751] = {.lex_state = 13, .external_lex_state = 12}, - [1752] = {.lex_state = 13, .external_lex_state = 12}, - [1753] = {.lex_state = 13, .external_lex_state = 12}, - [1754] = {.lex_state = 13, .external_lex_state = 13}, - [1755] = {.lex_state = 13, .external_lex_state = 12}, - [1756] = {.lex_state = 13, .external_lex_state = 15}, - [1757] = {.lex_state = 13, .external_lex_state = 13}, - [1758] = {.lex_state = 13, .external_lex_state = 15}, - [1759] = {.lex_state = 13, .external_lex_state = 12}, - [1760] = {.lex_state = 7, .external_lex_state = 9}, - [1761] = {.lex_state = 13, .external_lex_state = 12}, - [1762] = {.lex_state = 13, .external_lex_state = 12}, - [1763] = {.lex_state = 13, .external_lex_state = 15}, - [1764] = {.lex_state = 13, .external_lex_state = 12}, - [1765] = {.lex_state = 13, .external_lex_state = 15}, - [1766] = {.lex_state = 13, .external_lex_state = 12}, - [1767] = {.lex_state = 13, .external_lex_state = 12}, - [1768] = {.lex_state = 13, .external_lex_state = 12}, - [1769] = {.lex_state = 13, .external_lex_state = 12}, - [1770] = {.lex_state = 13, .external_lex_state = 12}, - [1771] = {.lex_state = 13, .external_lex_state = 12}, - [1772] = {.lex_state = 13, .external_lex_state = 12}, - [1773] = {.lex_state = 13, .external_lex_state = 12}, - [1774] = {.lex_state = 13, .external_lex_state = 15}, - [1775] = {.lex_state = 13, .external_lex_state = 12}, - [1776] = {.lex_state = 13, .external_lex_state = 12}, - [1777] = {.lex_state = 13, .external_lex_state = 12}, - [1778] = {.lex_state = 7, .external_lex_state = 14}, - [1779] = {.lex_state = 7, .external_lex_state = 14}, - [1780] = {.lex_state = 13, .external_lex_state = 13}, - [1781] = {.lex_state = 7, .external_lex_state = 9}, - [1782] = {.lex_state = 13, .external_lex_state = 2}, - [1783] = {.lex_state = 7, .external_lex_state = 13}, - [1784] = {.lex_state = 13, .external_lex_state = 15}, - [1785] = {.lex_state = 7, .external_lex_state = 14}, - [1786] = {.lex_state = 7, .external_lex_state = 14}, - [1787] = {.lex_state = 7, .external_lex_state = 14}, - [1788] = {.lex_state = 13, .external_lex_state = 13}, - [1789] = {.lex_state = 7, .external_lex_state = 14}, - [1790] = {.lex_state = 7, .external_lex_state = 12}, - [1791] = {.lex_state = 7, .external_lex_state = 15}, - [1792] = {.lex_state = 13, .external_lex_state = 13}, - [1793] = {.lex_state = 13, .external_lex_state = 13}, - [1794] = {.lex_state = 7, .external_lex_state = 12}, - [1795] = {.lex_state = 7, .external_lex_state = 13}, - [1796] = {.lex_state = 7, .external_lex_state = 14}, - [1797] = {.lex_state = 7, .external_lex_state = 13}, - [1798] = {.lex_state = 13, .external_lex_state = 13}, - [1799] = {.lex_state = 7, .external_lex_state = 9}, - [1800] = {.lex_state = 7, .external_lex_state = 12}, - [1801] = {.lex_state = 13, .external_lex_state = 13}, - [1802] = {.lex_state = 7, .external_lex_state = 9}, - [1803] = {.lex_state = 7, .external_lex_state = 14}, - [1804] = {.lex_state = 7, .external_lex_state = 14}, - [1805] = {.lex_state = 7, .external_lex_state = 12}, - [1806] = {.lex_state = 0, .external_lex_state = 16}, - [1807] = {.lex_state = 7, .external_lex_state = 14}, - [1808] = {.lex_state = 7, .external_lex_state = 14}, - [1809] = {.lex_state = 7, .external_lex_state = 9}, - [1810] = {.lex_state = 7, .external_lex_state = 14}, - [1811] = {.lex_state = 55, .external_lex_state = 17}, - [1812] = {.lex_state = 7, .external_lex_state = 9}, - [1813] = {.lex_state = 7, .external_lex_state = 9}, - [1814] = {.lex_state = 55, .external_lex_state = 17}, - [1815] = {.lex_state = 13, .external_lex_state = 13}, - [1816] = {.lex_state = 7, .external_lex_state = 9}, - [1817] = {.lex_state = 13, .external_lex_state = 13}, - [1818] = {.lex_state = 7, .external_lex_state = 9}, - [1819] = {.lex_state = 55, .external_lex_state = 17}, - [1820] = {.lex_state = 7, .external_lex_state = 13}, - [1821] = {.lex_state = 0, .external_lex_state = 16}, - [1822] = {.lex_state = 7, .external_lex_state = 12}, - [1823] = {.lex_state = 13, .external_lex_state = 13}, - [1824] = {.lex_state = 7, .external_lex_state = 15}, - [1825] = {.lex_state = 7, .external_lex_state = 9}, - [1826] = {.lex_state = 13, .external_lex_state = 13}, - [1827] = {.lex_state = 55, .external_lex_state = 17}, - [1828] = {.lex_state = 7, .external_lex_state = 14}, - [1829] = {.lex_state = 7, .external_lex_state = 12}, + [1692] = {.lex_state = 0, .external_lex_state = 16}, + [1693] = {.lex_state = 52, .external_lex_state = 14}, + [1694] = {.lex_state = 8, .external_lex_state = 12}, + [1695] = {.lex_state = 52, .external_lex_state = 14}, + [1696] = {.lex_state = 0, .external_lex_state = 16}, + [1697] = {.lex_state = 0, .external_lex_state = 16}, + [1698] = {.lex_state = 0, .external_lex_state = 16}, + [1699] = {.lex_state = 52, .external_lex_state = 14}, + [1700] = {.lex_state = 52, .external_lex_state = 14}, + [1701] = {.lex_state = 52, .external_lex_state = 14}, + [1702] = {.lex_state = 0, .external_lex_state = 16}, + [1703] = {.lex_state = 0, .external_lex_state = 16}, + [1704] = {.lex_state = 8, .external_lex_state = 12}, + [1705] = {.lex_state = 52, .external_lex_state = 12}, + [1706] = {.lex_state = 0, .external_lex_state = 16}, + [1707] = {.lex_state = 52, .external_lex_state = 12}, + [1708] = {.lex_state = 0, .external_lex_state = 16}, + [1709] = {.lex_state = 52, .external_lex_state = 12}, + [1710] = {.lex_state = 8, .external_lex_state = 12}, + [1711] = {.lex_state = 8, .external_lex_state = 12}, + [1712] = {.lex_state = 52, .external_lex_state = 12}, + [1713] = {.lex_state = 52, .external_lex_state = 12}, + [1714] = {.lex_state = 52, .external_lex_state = 12}, + [1715] = {.lex_state = 52, .external_lex_state = 12}, + [1716] = {.lex_state = 52, .external_lex_state = 12}, + [1717] = {.lex_state = 52, .external_lex_state = 14}, + [1718] = {.lex_state = 52, .external_lex_state = 14}, + [1719] = {.lex_state = 8, .external_lex_state = 14}, + [1720] = {.lex_state = 52, .external_lex_state = 13}, + [1721] = {.lex_state = 8, .external_lex_state = 14}, + [1722] = {.lex_state = 8, .external_lex_state = 14}, + [1723] = {.lex_state = 8, .external_lex_state = 15}, + [1724] = {.lex_state = 8, .external_lex_state = 11}, + [1725] = {.lex_state = 8, .external_lex_state = 15}, + [1726] = {.lex_state = 8, .external_lex_state = 15}, + [1727] = {.lex_state = 8, .external_lex_state = 14}, + [1728] = {.lex_state = 8, .external_lex_state = 15}, + [1729] = {.lex_state = 8, .external_lex_state = 15}, + [1730] = {.lex_state = 8, .external_lex_state = 15}, + [1731] = {.lex_state = 8, .external_lex_state = 15}, + [1732] = {.lex_state = 8, .external_lex_state = 14}, + [1733] = {.lex_state = 8, .external_lex_state = 14}, + [1734] = {.lex_state = 52, .external_lex_state = 13}, + [1735] = {.lex_state = 8, .external_lex_state = 15}, + [1736] = {.lex_state = 8, .external_lex_state = 14}, + [1737] = {.lex_state = 8, .external_lex_state = 14}, + [1738] = {.lex_state = 8, .external_lex_state = 14}, + [1739] = {.lex_state = 8, .external_lex_state = 15}, + [1740] = {.lex_state = 8, .external_lex_state = 14}, + [1741] = {.lex_state = 52, .external_lex_state = 13}, + [1742] = {.lex_state = 52, .external_lex_state = 13}, + [1743] = {.lex_state = 52, .external_lex_state = 13}, + [1744] = {.lex_state = 8, .external_lex_state = 12}, + [1745] = {.lex_state = 8, .external_lex_state = 12}, + [1746] = {.lex_state = 8, .external_lex_state = 15}, + [1747] = {.lex_state = 8, .external_lex_state = 15}, + [1748] = {.lex_state = 8, .external_lex_state = 12}, + [1749] = {.lex_state = 52, .external_lex_state = 13}, + [1750] = {.lex_state = 8, .external_lex_state = 12}, + [1751] = {.lex_state = 8, .external_lex_state = 12}, + [1752] = {.lex_state = 52, .external_lex_state = 13}, + [1753] = {.lex_state = 8, .external_lex_state = 12}, + [1754] = {.lex_state = 52, .external_lex_state = 13}, + [1755] = {.lex_state = 52, .external_lex_state = 13}, + [1756] = {.lex_state = 8, .external_lex_state = 12}, + [1757] = {.lex_state = 52, .external_lex_state = 13}, + [1758] = {.lex_state = 52, .external_lex_state = 13}, + [1759] = {.lex_state = 52, .external_lex_state = 13}, + [1760] = {.lex_state = 52, .external_lex_state = 13}, + [1761] = {.lex_state = 52, .external_lex_state = 13}, + [1762] = {.lex_state = 8, .external_lex_state = 15}, + [1763] = {.lex_state = 52, .external_lex_state = 13}, + [1764] = {.lex_state = 52, .external_lex_state = 13}, + [1765] = {.lex_state = 52, .external_lex_state = 13}, + [1766] = {.lex_state = 52, .external_lex_state = 13}, + [1767] = {.lex_state = 8, .external_lex_state = 15}, + [1768] = {.lex_state = 52, .external_lex_state = 13}, + [1769] = {.lex_state = 52, .external_lex_state = 13}, + [1770] = {.lex_state = 52, .external_lex_state = 13}, + [1771] = {.lex_state = 8, .external_lex_state = 12}, + [1772] = {.lex_state = 8, .external_lex_state = 15}, + [1773] = {.lex_state = 52, .external_lex_state = 13}, + [1774] = {.lex_state = 8, .external_lex_state = 12}, + [1775] = {.lex_state = 52, .external_lex_state = 11}, + [1776] = {.lex_state = 8, .external_lex_state = 12}, + [1777] = {.lex_state = 52, .external_lex_state = 12}, + [1778] = {.lex_state = 52, .external_lex_state = 11}, + [1779] = {.lex_state = 52, .external_lex_state = 14}, + [1780] = {.lex_state = 52, .external_lex_state = 12}, + [1781] = {.lex_state = 52, .external_lex_state = 11}, + [1782] = {.lex_state = 52, .external_lex_state = 12}, + [1783] = {.lex_state = 0, .external_lex_state = 16}, + [1784] = {.lex_state = 52, .external_lex_state = 12}, + [1785] = {.lex_state = 52, .external_lex_state = 11}, + [1786] = {.lex_state = 52, .external_lex_state = 12}, + [1787] = {.lex_state = 7, .external_lex_state = 13}, + [1788] = {.lex_state = 52, .external_lex_state = 14}, + [1789] = {.lex_state = 52, .external_lex_state = 13}, + [1790] = {.lex_state = 52, .external_lex_state = 14}, + [1791] = {.lex_state = 52, .external_lex_state = 2}, + [1792] = {.lex_state = 52, .external_lex_state = 12}, + [1793] = {.lex_state = 52, .external_lex_state = 11}, + [1794] = {.lex_state = 52, .external_lex_state = 14}, + [1795] = {.lex_state = 52, .external_lex_state = 14}, + [1796] = {.lex_state = 52, .external_lex_state = 14}, + [1797] = {.lex_state = 52, .external_lex_state = 14}, + [1798] = {.lex_state = 52, .external_lex_state = 13}, + [1799] = {.lex_state = 52, .external_lex_state = 11}, + [1800] = {.lex_state = 52, .external_lex_state = 12}, + [1801] = {.lex_state = 52, .external_lex_state = 11}, + [1802] = {.lex_state = 52, .external_lex_state = 14}, + [1803] = {.lex_state = 52, .external_lex_state = 12}, + [1804] = {.lex_state = 0, .external_lex_state = 16}, + [1805] = {.lex_state = 52, .external_lex_state = 11}, + [1806] = {.lex_state = 7, .external_lex_state = 12}, + [1807] = {.lex_state = 52, .external_lex_state = 14}, + [1808] = {.lex_state = 52, .external_lex_state = 14}, + [1809] = {.lex_state = 52, .external_lex_state = 12}, + [1810] = {.lex_state = 52, .external_lex_state = 14}, + [1811] = {.lex_state = 52, .external_lex_state = 12}, + [1812] = {.lex_state = 52, .external_lex_state = 12}, + [1813] = {.lex_state = 52, .external_lex_state = 12}, + [1814] = {.lex_state = 52, .external_lex_state = 12}, + [1815] = {.lex_state = 7, .external_lex_state = 14}, + [1816] = {.lex_state = 52, .external_lex_state = 11}, + [1817] = {.lex_state = 52, .external_lex_state = 15}, + [1818] = {.lex_state = 8, .external_lex_state = 15}, + [1819] = {.lex_state = 52, .external_lex_state = 15}, + [1820] = {.lex_state = 52, .external_lex_state = 13}, + [1821] = {.lex_state = 52, .external_lex_state = 13}, + [1822] = {.lex_state = 52, .external_lex_state = 14}, + [1823] = {.lex_state = 52, .external_lex_state = 11}, + [1824] = {.lex_state = 52, .external_lex_state = 12}, + [1825] = {.lex_state = 52, .external_lex_state = 11}, + [1826] = {.lex_state = 52, .external_lex_state = 15}, + [1827] = {.lex_state = 52, .external_lex_state = 14}, + [1828] = {.lex_state = 7, .external_lex_state = 13}, + [1829] = {.lex_state = 52, .external_lex_state = 13}, [1830] = {.lex_state = 7, .external_lex_state = 14}, - [1831] = {.lex_state = 13, .external_lex_state = 15}, - [1832] = {.lex_state = 7, .external_lex_state = 14}, - [1833] = {.lex_state = 7, .external_lex_state = 14}, - [1834] = {.lex_state = 7, .external_lex_state = 12}, - [1835] = {.lex_state = 7, .external_lex_state = 12}, - [1836] = {.lex_state = 7, .external_lex_state = 12}, - [1837] = {.lex_state = 7, .external_lex_state = 8}, - [1838] = {.lex_state = 7, .external_lex_state = 13}, - [1839] = {.lex_state = 7, .external_lex_state = 12}, - [1840] = {.lex_state = 7, .external_lex_state = 12}, - [1841] = {.lex_state = 7, .external_lex_state = 13}, - [1842] = {.lex_state = 7, .external_lex_state = 12}, - [1843] = {.lex_state = 7, .external_lex_state = 12}, + [1831] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1832] = {.lex_state = 52, .external_lex_state = 15}, + [1833] = {.lex_state = 52, .external_lex_state = 13}, + [1834] = {.lex_state = 7, .external_lex_state = 14}, + [1835] = {.lex_state = 7, .external_lex_state = 13}, + [1836] = {.lex_state = 52, .external_lex_state = 13}, + [1837] = {.lex_state = 52, .external_lex_state = 7}, + [1838] = {.lex_state = 52, .external_lex_state = 13}, + [1839] = {.lex_state = 52, .external_lex_state = 15}, + [1840] = {.lex_state = 52, .external_lex_state = 12}, + [1841] = {.lex_state = 7, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1842] = {.lex_state = 52, .external_lex_state = 15}, + [1843] = {.lex_state = 52, .external_lex_state = 14}, [1844] = {.lex_state = 7, .external_lex_state = 13}, - [1845] = {.lex_state = 7, .external_lex_state = 7}, - [1846] = {.lex_state = 13, .external_lex_state = 15}, - [1847] = {.lex_state = 7, .external_lex_state = 13}, - [1848] = {.lex_state = 7, .external_lex_state = 12}, - [1849] = {.lex_state = 7, .external_lex_state = 12}, - [1850] = {.lex_state = 13, .external_lex_state = 13}, - [1851] = {.lex_state = 7, .external_lex_state = 14}, - [1852] = {.lex_state = 7, .external_lex_state = 6}, - [1853] = {.lex_state = 13, .external_lex_state = 15}, - [1854] = {.lex_state = 7, .external_lex_state = 12}, - [1855] = {.lex_state = 7, .external_lex_state = 12}, - [1856] = {.lex_state = 7, .external_lex_state = 14}, - [1857] = {.lex_state = 7, .external_lex_state = 12}, - [1858] = {.lex_state = 7, .external_lex_state = 9}, - [1859] = {.lex_state = 7, .external_lex_state = 13}, - [1860] = {.lex_state = 7, .external_lex_state = 9}, - [1861] = {.lex_state = 7, .external_lex_state = 13}, - [1862] = {.lex_state = 7, .external_lex_state = 12}, - [1863] = {.lex_state = 13, .external_lex_state = 15}, - [1864] = {.lex_state = 13, .external_lex_state = 13}, - [1865] = {.lex_state = 13, .external_lex_state = 15}, - [1866] = {.lex_state = 13, .external_lex_state = 15}, - [1867] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1868] = {.lex_state = 7, .external_lex_state = 14}, - [1869] = {.lex_state = 13, .external_lex_state = 15}, + [1845] = {.lex_state = 52, .external_lex_state = 12}, + [1846] = {.lex_state = 52, .external_lex_state = 15}, + [1847] = {.lex_state = 52, .external_lex_state = 11}, + [1848] = {.lex_state = 52, .external_lex_state = 14}, + [1849] = {.lex_state = 52, .external_lex_state = 15}, + [1850] = {.lex_state = 52, .external_lex_state = 15}, + [1851] = {.lex_state = 52, .external_lex_state = 12}, + [1852] = {.lex_state = 52, .external_lex_state = 14}, + [1853] = {.lex_state = 52, .external_lex_state = 8}, + [1854] = {.lex_state = 52, .external_lex_state = 15}, + [1855] = {.lex_state = 52, .external_lex_state = 13}, + [1856] = {.lex_state = 52, .external_lex_state = 13}, + [1857] = {.lex_state = 52, .external_lex_state = 14}, + [1858] = {.lex_state = 52, .external_lex_state = 12}, + [1859] = {.lex_state = 52, .external_lex_state = 14}, + [1860] = {.lex_state = 52, .external_lex_state = 13}, + [1861] = {.lex_state = 7, .external_lex_state = 12}, + [1862] = {.lex_state = 52, .external_lex_state = 12}, + [1863] = {.lex_state = 7, .external_lex_state = 12}, + [1864] = {.lex_state = 7, .external_lex_state = 14}, + [1865] = {.lex_state = 52, .external_lex_state = 12}, + [1866] = {.lex_state = 52, .external_lex_state = 12}, + [1867] = {.lex_state = 52, .external_lex_state = 13}, + [1868] = {.lex_state = 52, .external_lex_state = 13}, + [1869] = {.lex_state = 52, .external_lex_state = 13}, [1870] = {.lex_state = 7, .external_lex_state = 12}, - [1871] = {.lex_state = 7, .external_lex_state = 13}, - [1872] = {.lex_state = 13, .external_lex_state = 15}, - [1873] = {.lex_state = 7, .external_lex_state = 14}, - [1874] = {.lex_state = 7, .external_lex_state = 14}, - [1875] = {.lex_state = 7, .external_lex_state = 14}, - [1876] = {.lex_state = 8, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1877] = {.lex_state = 7, .external_lex_state = 13}, - [1878] = {.lex_state = 13, .external_lex_state = 13}, - [1879] = {.lex_state = 7, .external_lex_state = 14}, - [1880] = {.lex_state = 13, .external_lex_state = 9}, - [1881] = {.lex_state = 13, .external_lex_state = 13}, - [1882] = {.lex_state = 7, .external_lex_state = 13}, - [1883] = {.lex_state = 7, .external_lex_state = 12}, - [1884] = {.lex_state = 7, .external_lex_state = 13}, - [1885] = {.lex_state = 13, .external_lex_state = 15}, - [1886] = {.lex_state = 7, .external_lex_state = 14}, - [1887] = {.lex_state = 7, .external_lex_state = 14}, - [1888] = {.lex_state = 13, .external_lex_state = 9}, - [1889] = {.lex_state = 13, .external_lex_state = 9}, - [1890] = {.lex_state = 7, .external_lex_state = 13}, - [1891] = {.lex_state = 13, .external_lex_state = 15}, - [1892] = {.lex_state = 13, .external_lex_state = 15}, - [1893] = {.lex_state = 7, .external_lex_state = 9}, - [1894] = {.lex_state = 0, .external_lex_state = 16}, - [1895] = {.lex_state = 7, .external_lex_state = 12}, - [1896] = {.lex_state = 13, .external_lex_state = 15}, - [1897] = {.lex_state = 13, .external_lex_state = 9}, - [1898] = {.lex_state = 7, .external_lex_state = 13}, - [1899] = {.lex_state = 13, .external_lex_state = 14}, - [1900] = {.lex_state = 13, .external_lex_state = 15}, - [1901] = {.lex_state = 13, .external_lex_state = 15}, - [1902] = {.lex_state = 13, .external_lex_state = 14}, - [1903] = {.lex_state = 7, .external_lex_state = 14}, - [1904] = {.lex_state = 13, .external_lex_state = 15}, - [1905] = {.lex_state = 0, .external_lex_state = 16}, - [1906] = {.lex_state = 7, .external_lex_state = 13}, - [1907] = {.lex_state = 13, .external_lex_state = 15}, - [1908] = {.lex_state = 7, .external_lex_state = 9}, - [1909] = {.lex_state = 7, .external_lex_state = 13}, - [1910] = {.lex_state = 7, .external_lex_state = 14}, - [1911] = {.lex_state = 13, .external_lex_state = 13}, - [1912] = {.lex_state = 0, .external_lex_state = 16}, - [1913] = {.lex_state = 7, .external_lex_state = 12}, - [1914] = {.lex_state = 7, .external_lex_state = 13}, - [1915] = {.lex_state = 7, .external_lex_state = 12}, - [1916] = {.lex_state = 0, .external_lex_state = 16}, - [1917] = {.lex_state = 13, .external_lex_state = 15}, - [1918] = {.lex_state = 13, .external_lex_state = 9}, - [1919] = {.lex_state = 13, .external_lex_state = 15}, - [1920] = {.lex_state = 13, .external_lex_state = 9}, - [1921] = {.lex_state = 13, .external_lex_state = 9}, - [1922] = {.lex_state = 13, .external_lex_state = 15}, - [1923] = {.lex_state = 7, .external_lex_state = 12}, - [1924] = {.lex_state = 13, .external_lex_state = 15}, - [1925] = {.lex_state = 13, .external_lex_state = 14}, - [1926] = {.lex_state = 7, .external_lex_state = 14}, - [1927] = {.lex_state = 13, .external_lex_state = 14}, - [1928] = {.lex_state = 7, .external_lex_state = 13}, - [1929] = {.lex_state = 13, .external_lex_state = 14}, - [1930] = {.lex_state = 13, .external_lex_state = 14}, - [1931] = {.lex_state = 7, .external_lex_state = 12}, - [1932] = {.lex_state = 13, .external_lex_state = 9}, - [1933] = {.lex_state = 7, .external_lex_state = 9}, - [1934] = {.lex_state = 7, .external_lex_state = 12}, - [1935] = {.lex_state = 7, .external_lex_state = 14}, - [1936] = {.lex_state = 7, .external_lex_state = 13}, - [1937] = {.lex_state = 7, .external_lex_state = 9}, - [1938] = {.lex_state = 0, .external_lex_state = 16}, - [1939] = {.lex_state = 13, .external_lex_state = 15}, - [1940] = {.lex_state = 7, .external_lex_state = 14}, - [1941] = {.lex_state = 7, .external_lex_state = 12}, - [1942] = {.lex_state = 13, .external_lex_state = 15}, - [1943] = {.lex_state = 7, .external_lex_state = 14}, - [1944] = {.lex_state = 54, .external_lex_state = 12}, - [1945] = {.lex_state = 7, .external_lex_state = 14}, - [1946] = {.lex_state = 13, .external_lex_state = 15}, - [1947] = {.lex_state = 7, .external_lex_state = 12}, - [1948] = {.lex_state = 7, .external_lex_state = 13}, - [1949] = {.lex_state = 7, .external_lex_state = 13}, - [1950] = {.lex_state = 13, .external_lex_state = 13}, + [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 = 13}, + [1909] = {.lex_state = 8, .external_lex_state = 11}, + [1910] = {.lex_state = 52, .external_lex_state = 13}, + [1911] = {.lex_state = 52, .external_lex_state = 13}, + [1912] = {.lex_state = 52, .external_lex_state = 13}, + [1913] = {.lex_state = 52, .external_lex_state = 12}, + [1914] = {.lex_state = 8, .external_lex_state = 12}, + [1915] = {.lex_state = 0, .external_lex_state = 16}, + [1916] = {.lex_state = 52, .external_lex_state = 14}, + [1917] = {.lex_state = 52, .external_lex_state = 14}, + [1918] = {.lex_state = 52, .external_lex_state = 15}, + [1919] = {.lex_state = 52, .external_lex_state = 14}, + [1920] = {.lex_state = 52, .external_lex_state = 13}, + [1921] = {.lex_state = 8, .external_lex_state = 14}, + [1922] = {.lex_state = 8, .external_lex_state = 14}, + [1923] = {.lex_state = 52, .external_lex_state = 15}, + [1924] = {.lex_state = 8, .external_lex_state = 14}, + [1925] = {.lex_state = 7, .external_lex_state = 11}, + [1926] = {.lex_state = 8, .external_lex_state = 11}, + [1927] = {.lex_state = 52, .external_lex_state = 14}, + [1928] = {.lex_state = 52, .external_lex_state = 14}, + [1929] = {.lex_state = 52, .external_lex_state = 12}, + [1930] = {.lex_state = 8, .external_lex_state = 14}, + [1931] = {.lex_state = 8, .external_lex_state = 12}, + [1932] = {.lex_state = 52, .external_lex_state = 12}, + [1933] = {.lex_state = 8, .external_lex_state = 15}, + [1934] = {.lex_state = 52, .external_lex_state = 15}, + [1935] = {.lex_state = 52, .external_lex_state = 15}, + [1936] = {.lex_state = 52, .external_lex_state = 15}, + [1937] = {.lex_state = 52, .external_lex_state = 14}, + [1938] = {.lex_state = 52, .external_lex_state = 14}, + [1939] = {.lex_state = 8, .external_lex_state = 15}, + [1940] = {.lex_state = 8, .external_lex_state = 11}, + [1941] = {.lex_state = 52, .external_lex_state = 14}, + [1942] = {.lex_state = 52, .external_lex_state = 14}, + [1943] = {.lex_state = 52, .external_lex_state = 13}, + [1944] = {.lex_state = 52, .external_lex_state = 15}, + [1945] = {.lex_state = 8, .external_lex_state = 12}, + [1946] = {.lex_state = 52, .external_lex_state = 11}, + [1947] = {.lex_state = 7, .external_lex_state = 13}, + [1948] = {.lex_state = 0, .external_lex_state = 16}, + [1949] = {.lex_state = 7, .external_lex_state = 12}, + [1950] = {.lex_state = 52, .external_lex_state = 14}, [1951] = {.lex_state = 0, .external_lex_state = 16}, - [1952] = {.lex_state = 7, .external_lex_state = 12}, - [1953] = {.lex_state = 0, .external_lex_state = 16}, - [1954] = {.lex_state = 7, .external_lex_state = 12}, - [1955] = {.lex_state = 7, .external_lex_state = 9}, - [1956] = {.lex_state = 13, .external_lex_state = 13}, - [1957] = {.lex_state = 13, .external_lex_state = 15}, - [1958] = {.lex_state = 7, .external_lex_state = 14}, - [1959] = {.lex_state = 7, .external_lex_state = 13}, - [1960] = {.lex_state = 7, .external_lex_state = 13}, - [1961] = {.lex_state = 7, .external_lex_state = 14}, - [1962] = {.lex_state = 13, .external_lex_state = 14}, - [1963] = {.lex_state = 7, .external_lex_state = 14}, - [1964] = {.lex_state = 13, .external_lex_state = 9}, - [1965] = {.lex_state = 54, .external_lex_state = 12}, - [1966] = {.lex_state = 13, .external_lex_state = 15}, - [1967] = {.lex_state = 54, .external_lex_state = 12}, - [1968] = {.lex_state = 13, .external_lex_state = 9}, - [1969] = {.lex_state = 13, .external_lex_state = 15}, - [1970] = {.lex_state = 7, .external_lex_state = 12}, - [1971] = {.lex_state = 7, .external_lex_state = 14}, - [1972] = {.lex_state = 0, .external_lex_state = 16}, - [1973] = {.lex_state = 7, .external_lex_state = 9}, - [1974] = {.lex_state = 7, .external_lex_state = 14}, - [1975] = {.lex_state = 7, .external_lex_state = 14}, - [1976] = {.lex_state = 7, .external_lex_state = 13}, - [1977] = {.lex_state = 7, .external_lex_state = 14}, - [1978] = {.lex_state = 7, .external_lex_state = 14}, - [1979] = {.lex_state = 13, .external_lex_state = 14}, - [1980] = {.lex_state = 13, .external_lex_state = 14}, - [1981] = {.lex_state = 13, .external_lex_state = 14}, - [1982] = {.lex_state = 7, .external_lex_state = 13}, - [1983] = {.lex_state = 7, .external_lex_state = 15}, - [1984] = {.lex_state = 54, .external_lex_state = 12}, - [1985] = {.lex_state = 7, .external_lex_state = 14}, - [1986] = {.lex_state = 13, .external_lex_state = 14}, - [1987] = {.lex_state = 13, .external_lex_state = 9}, - [1988] = {.lex_state = 13, .external_lex_state = 15}, - [1989] = {.lex_state = 13, .external_lex_state = 15}, - [1990] = {.lex_state = 7, .external_lex_state = 14}, - [1991] = {.lex_state = 7, .external_lex_state = 14}, - [1992] = {.lex_state = 7, .external_lex_state = 14}, - [1993] = {.lex_state = 7, .external_lex_state = 13}, - [1994] = {.lex_state = 7, .external_lex_state = 9}, - [1995] = {.lex_state = 13, .external_lex_state = 15}, - [1996] = {.lex_state = 13, .external_lex_state = 9}, - [1997] = {.lex_state = 13, .external_lex_state = 15}, - [1998] = {.lex_state = 54, .external_lex_state = 12}, - [1999] = {.lex_state = 7, .external_lex_state = 12}, - [2000] = {.lex_state = 7, .external_lex_state = 12}, - [2001] = {.lex_state = 7, .external_lex_state = 15}, - [2002] = {.lex_state = 7, .external_lex_state = 12}, - [2003] = {.lex_state = 13, .external_lex_state = 13}, - [2004] = {.lex_state = 13, .external_lex_state = 15}, - [2005] = {.lex_state = 13, .external_lex_state = 13}, - [2006] = {.lex_state = 13, .external_lex_state = 15}, - [2007] = {.lex_state = 7, .external_lex_state = 15}, - [2008] = {.lex_state = 7, .external_lex_state = 9}, - [2009] = {.lex_state = 13, .external_lex_state = 15}, - [2010] = {.lex_state = 13, .external_lex_state = 15}, - [2011] = {.lex_state = 13, .external_lex_state = 15}, - [2012] = {.lex_state = 13, .external_lex_state = 15}, - [2013] = {.lex_state = 54, .external_lex_state = 12}, - [2014] = {.lex_state = 54, .external_lex_state = 12}, - [2015] = {.lex_state = 13, .external_lex_state = 13}, - [2016] = {.lex_state = 13, .external_lex_state = 13}, - [2017] = {.lex_state = 13, .external_lex_state = 13}, - [2018] = {.lex_state = 13, .external_lex_state = 15}, - [2019] = {.lex_state = 13, .external_lex_state = 15}, - [2020] = {.lex_state = 13, .external_lex_state = 15}, - [2021] = {.lex_state = 13, .external_lex_state = 15}, - [2022] = {.lex_state = 7, .external_lex_state = 15}, - [2023] = {.lex_state = 13, .external_lex_state = 15}, - [2024] = {.lex_state = 13, .external_lex_state = 13}, - [2025] = {.lex_state = 13, .external_lex_state = 13}, - [2026] = {.lex_state = 13, .external_lex_state = 13}, - [2027] = {.lex_state = 13, .external_lex_state = 14}, - [2028] = {.lex_state = 54, .external_lex_state = 12}, - [2029] = {.lex_state = 3, .external_lex_state = 12}, - [2030] = {.lex_state = 13, .external_lex_state = 13}, - [2031] = {.lex_state = 7, .external_lex_state = 14}, - [2032] = {.lex_state = 7, .external_lex_state = 14}, - [2033] = {.lex_state = 7, .external_lex_state = 9}, - [2034] = {.lex_state = 7, .external_lex_state = 13}, - [2035] = {.lex_state = 7, .external_lex_state = 13}, - [2036] = {.lex_state = 13, .external_lex_state = 13}, - [2037] = {.lex_state = 7, .external_lex_state = 9}, - [2038] = {.lex_state = 13, .external_lex_state = 15}, - [2039] = {.lex_state = 13, .external_lex_state = 15}, - [2040] = {.lex_state = 7, .external_lex_state = 15}, - [2041] = {.lex_state = 7, .external_lex_state = 13}, - [2042] = {.lex_state = 13, .external_lex_state = 13}, - [2043] = {.lex_state = 13, .external_lex_state = 15}, - [2044] = {.lex_state = 7, .external_lex_state = 12}, - [2045] = {.lex_state = 7, .external_lex_state = 12}, - [2046] = {.lex_state = 54, .external_lex_state = 12}, - [2047] = {.lex_state = 7, .external_lex_state = 13}, - [2048] = {.lex_state = 7, .external_lex_state = 13}, - [2049] = {.lex_state = 7, .external_lex_state = 13}, - [2050] = {.lex_state = 7, .external_lex_state = 12}, - [2051] = {.lex_state = 7, .external_lex_state = 15}, - [2052] = {.lex_state = 13, .external_lex_state = 15}, - [2053] = {.lex_state = 54, .external_lex_state = 9, .reserved_word_set_id = 1}, - [2054] = {.lex_state = 54, .external_lex_state = 12}, - [2055] = {.lex_state = 13, .external_lex_state = 15}, - [2056] = {.lex_state = 13, .external_lex_state = 15}, - [2057] = {.lex_state = 13, .external_lex_state = 15}, - [2058] = {.lex_state = 54, .external_lex_state = 12}, - [2059] = {.lex_state = 13, .external_lex_state = 15}, - [2060] = {.lex_state = 54, .external_lex_state = 9, .reserved_word_set_id = 1}, - [2061] = {.lex_state = 7, .external_lex_state = 15}, - [2062] = {.lex_state = 54, .external_lex_state = 9, .reserved_word_set_id = 1}, - [2063] = {.lex_state = 54, .external_lex_state = 12}, - [2064] = {.lex_state = 7, .external_lex_state = 15}, - [2065] = {.lex_state = 7, .external_lex_state = 14}, - [2066] = {.lex_state = 7, .external_lex_state = 14}, - [2067] = {.lex_state = 7, .external_lex_state = 14}, - [2068] = {.lex_state = 13, .external_lex_state = 12}, - [2069] = {.lex_state = 13, .external_lex_state = 15}, - [2070] = {.lex_state = 7, .external_lex_state = 15}, - [2071] = {.lex_state = 13, .external_lex_state = 15}, - [2072] = {.lex_state = 13, .external_lex_state = 15}, - [2073] = {.lex_state = 54, .external_lex_state = 12}, - [2074] = {.lex_state = 13, .external_lex_state = 15}, - [2075] = {.lex_state = 13, .external_lex_state = 15}, - [2076] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2077] = {.lex_state = 13, .external_lex_state = 15}, - [2078] = {.lex_state = 54, .external_lex_state = 12}, - [2079] = {.lex_state = 13, .external_lex_state = 15}, - [2080] = {.lex_state = 13, .external_lex_state = 15}, - [2081] = {.lex_state = 13, .external_lex_state = 15}, - [2082] = {.lex_state = 54, .external_lex_state = 15}, - [2083] = {.lex_state = 13, .external_lex_state = 15}, - [2084] = {.lex_state = 13, .external_lex_state = 15}, - [2085] = {.lex_state = 54, .external_lex_state = 15}, - [2086] = {.lex_state = 3, .external_lex_state = 12}, - [2087] = {.lex_state = 13, .external_lex_state = 15}, - [2088] = {.lex_state = 13, .external_lex_state = 15}, - [2089] = {.lex_state = 13, .external_lex_state = 15}, - [2090] = {.lex_state = 54, .external_lex_state = 12}, - [2091] = {.lex_state = 7, .external_lex_state = 14}, - [2092] = {.lex_state = 13, .external_lex_state = 15}, - [2093] = {.lex_state = 3, .external_lex_state = 12}, - [2094] = {.lex_state = 7, .external_lex_state = 12}, - [2095] = {.lex_state = 13, .external_lex_state = 15}, - [2096] = {.lex_state = 13, .external_lex_state = 15}, - [2097] = {.lex_state = 13, .external_lex_state = 15}, - [2098] = {.lex_state = 7, .external_lex_state = 12}, - [2099] = {.lex_state = 7, .external_lex_state = 13}, - [2100] = {.lex_state = 7, .external_lex_state = 13}, - [2101] = {.lex_state = 7, .external_lex_state = 9}, - [2102] = {.lex_state = 13, .external_lex_state = 15}, - [2103] = {.lex_state = 13, .external_lex_state = 15}, - [2104] = {.lex_state = 13, .external_lex_state = 15}, - [2105] = {.lex_state = 13, .external_lex_state = 15}, - [2106] = {.lex_state = 13, .external_lex_state = 15}, - [2107] = {.lex_state = 7, .external_lex_state = 12}, - [2108] = {.lex_state = 8, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2109] = {.lex_state = 7, .external_lex_state = 18}, - [2110] = {.lex_state = 54, .external_lex_state = 9}, - [2111] = {.lex_state = 7, .external_lex_state = 13}, - [2112] = {.lex_state = 7, .external_lex_state = 13}, - [2113] = {.lex_state = 7, .external_lex_state = 14}, - [2114] = {.lex_state = 7, .external_lex_state = 12}, - [2115] = {.lex_state = 54, .external_lex_state = 14, .reserved_word_set_id = 1}, - [2116] = {.lex_state = 7, .external_lex_state = 12}, - [2117] = {.lex_state = 54, .external_lex_state = 14, .reserved_word_set_id = 1}, - [2118] = {.lex_state = 7, .external_lex_state = 13}, - [2119] = {.lex_state = 7, .external_lex_state = 13}, - [2120] = {.lex_state = 7, .external_lex_state = 14}, - [2121] = {.lex_state = 7, .external_lex_state = 13}, - [2122] = {.lex_state = 7, .external_lex_state = 14}, - [2123] = {.lex_state = 7, .external_lex_state = 13}, - [2124] = {.lex_state = 7, .external_lex_state = 13}, - [2125] = {.lex_state = 7, .external_lex_state = 13}, - [2126] = {.lex_state = 7, .external_lex_state = 12}, - [2127] = {.lex_state = 7, .external_lex_state = 13}, - [2128] = {.lex_state = 7, .external_lex_state = 14}, - [2129] = {.lex_state = 7, .external_lex_state = 14}, - [2130] = {.lex_state = 7, .external_lex_state = 14}, - [2131] = {.lex_state = 7, .external_lex_state = 14}, - [2132] = {.lex_state = 7, .external_lex_state = 13}, - [2133] = {.lex_state = 7, .external_lex_state = 13}, - [2134] = {.lex_state = 7, .external_lex_state = 13}, - [2135] = {.lex_state = 7, .external_lex_state = 13}, - [2136] = {.lex_state = 7, .external_lex_state = 13}, - [2137] = {.lex_state = 54, .external_lex_state = 9}, - [2138] = {.lex_state = 7, .external_lex_state = 13}, - [2139] = {.lex_state = 7, .external_lex_state = 13}, - [2140] = {.lex_state = 7, .external_lex_state = 13}, - [2141] = {.lex_state = 54, .external_lex_state = 15}, - [2142] = {.lex_state = 7, .external_lex_state = 9}, - [2143] = {.lex_state = 7, .external_lex_state = 13}, - [2144] = {.lex_state = 7, .external_lex_state = 13}, - [2145] = {.lex_state = 7, .external_lex_state = 13}, - [2146] = {.lex_state = 7, .external_lex_state = 15}, - [2147] = {.lex_state = 7, .external_lex_state = 13}, - [2148] = {.lex_state = 7, .external_lex_state = 13}, - [2149] = {.lex_state = 7, .external_lex_state = 13}, - [2150] = {.lex_state = 7, .external_lex_state = 18}, - [2151] = {.lex_state = 7, .external_lex_state = 12}, - [2152] = {.lex_state = 7, .external_lex_state = 13}, - [2153] = {.lex_state = 54, .external_lex_state = 9}, - [2154] = {.lex_state = 7, .external_lex_state = 14}, - [2155] = {.lex_state = 54, .external_lex_state = 9}, - [2156] = {.lex_state = 13, .external_lex_state = 15}, - [2157] = {.lex_state = 7, .external_lex_state = 14}, - [2158] = {.lex_state = 7, .external_lex_state = 13}, - [2159] = {.lex_state = 7, .external_lex_state = 14}, - [2160] = {.lex_state = 7, .external_lex_state = 14}, - [2161] = {.lex_state = 7, .external_lex_state = 14}, - [2162] = {.lex_state = 7, .external_lex_state = 14}, - [2163] = {.lex_state = 13, .external_lex_state = 15}, - [2164] = {.lex_state = 13, .external_lex_state = 15}, - [2165] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2166] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2167] = {.lex_state = 13, .external_lex_state = 15}, - [2168] = {.lex_state = 7, .external_lex_state = 12}, - [2169] = {.lex_state = 7, .external_lex_state = 14}, - [2170] = {.lex_state = 54, .external_lex_state = 9}, - [2171] = {.lex_state = 7, .external_lex_state = 14}, - [2172] = {.lex_state = 7, .external_lex_state = 14}, - [2173] = {.lex_state = 54, .external_lex_state = 9}, - [2174] = {.lex_state = 54, .external_lex_state = 14}, - [2175] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2176] = {.lex_state = 7, .external_lex_state = 12}, - [2177] = {.lex_state = 54, .external_lex_state = 14, .reserved_word_set_id = 1}, - [2178] = {.lex_state = 7, .external_lex_state = 14}, - [2179] = {.lex_state = 7, .external_lex_state = 14}, - [2180] = {.lex_state = 7, .external_lex_state = 13}, - [2181] = {.lex_state = 13, .external_lex_state = 15}, - [2182] = {.lex_state = 7, .external_lex_state = 12}, - [2183] = {.lex_state = 54, .external_lex_state = 9}, - [2184] = {.lex_state = 7, .external_lex_state = 14}, - [2185] = {.lex_state = 7, .external_lex_state = 12}, - [2186] = {.lex_state = 7, .external_lex_state = 12}, - [2187] = {.lex_state = 54, .external_lex_state = 12}, - [2188] = {.lex_state = 7, .external_lex_state = 12}, - [2189] = {.lex_state = 13, .external_lex_state = 15}, - [2190] = {.lex_state = 7, .external_lex_state = 12}, - [2191] = {.lex_state = 7, .external_lex_state = 12}, - [2192] = {.lex_state = 54, .external_lex_state = 9}, - [2193] = {.lex_state = 54, .external_lex_state = 9}, - [2194] = {.lex_state = 7, .external_lex_state = 12}, - [2195] = {.lex_state = 54, .external_lex_state = 9}, - [2196] = {.lex_state = 7, .external_lex_state = 12}, - [2197] = {.lex_state = 7, .external_lex_state = 12}, - [2198] = {.lex_state = 7, .external_lex_state = 12}, - [2199] = {.lex_state = 7, .external_lex_state = 18}, - [2200] = {.lex_state = 7, .external_lex_state = 14}, - [2201] = {.lex_state = 7, .external_lex_state = 13}, - [2202] = {.lex_state = 7, .external_lex_state = 12}, - [2203] = {.lex_state = 7, .external_lex_state = 14}, - [2204] = {.lex_state = 7, .external_lex_state = 12}, - [2205] = {.lex_state = 7, .external_lex_state = 12}, - [2206] = {.lex_state = 54, .external_lex_state = 9}, - [2207] = {.lex_state = 7, .external_lex_state = 12}, - [2208] = {.lex_state = 7, .external_lex_state = 14}, - [2209] = {.lex_state = 8, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2210] = {.lex_state = 7, .external_lex_state = 14}, - [2211] = {.lex_state = 7, .external_lex_state = 14}, - [2212] = {.lex_state = 7, .external_lex_state = 14}, - [2213] = {.lex_state = 54, .external_lex_state = 9}, - [2214] = {.lex_state = 54, .external_lex_state = 9}, - [2215] = {.lex_state = 54, .external_lex_state = 12}, - [2216] = {.lex_state = 7, .external_lex_state = 14}, - [2217] = {.lex_state = 54, .external_lex_state = 15}, - [2218] = {.lex_state = 7, .external_lex_state = 14}, - [2219] = {.lex_state = 7, .external_lex_state = 14}, - [2220] = {.lex_state = 54, .external_lex_state = 9}, - [2221] = {.lex_state = 7, .external_lex_state = 18}, - [2222] = {.lex_state = 7, .external_lex_state = 14}, - [2223] = {.lex_state = 54, .external_lex_state = 12}, - [2224] = {.lex_state = 54, .external_lex_state = 15}, - [2225] = {.lex_state = 54, .external_lex_state = 15}, - [2226] = {.lex_state = 7, .external_lex_state = 14}, - [2227] = {.lex_state = 7, .external_lex_state = 18}, - [2228] = {.lex_state = 7, .external_lex_state = 12}, - [2229] = {.lex_state = 54, .external_lex_state = 9}, - [2230] = {.lex_state = 54, .external_lex_state = 9}, - [2231] = {.lex_state = 7, .external_lex_state = 12}, - [2232] = {.lex_state = 7, .external_lex_state = 14}, - [2233] = {.lex_state = 7, .external_lex_state = 14}, - [2234] = {.lex_state = 7, .external_lex_state = 14}, - [2235] = {.lex_state = 7, .external_lex_state = 13}, - [2236] = {.lex_state = 7, .external_lex_state = 12}, - [2237] = {.lex_state = 54, .external_lex_state = 9}, - [2238] = {.lex_state = 54, .external_lex_state = 15}, - [2239] = {.lex_state = 13, .external_lex_state = 15}, - [2240] = {.lex_state = 54, .external_lex_state = 15}, - [2241] = {.lex_state = 54, .external_lex_state = 12}, - [2242] = {.lex_state = 54, .external_lex_state = 9}, - [2243] = {.lex_state = 54, .external_lex_state = 14}, - [2244] = {.lex_state = 54, .external_lex_state = 14}, - [2245] = {.lex_state = 54, .external_lex_state = 12}, - [2246] = {.lex_state = 54, .external_lex_state = 14}, - [2247] = {.lex_state = 54, .external_lex_state = 14}, - [2248] = {.lex_state = 54, .external_lex_state = 14}, - [2249] = {.lex_state = 54, .external_lex_state = 14}, - [2250] = {.lex_state = 54, .external_lex_state = 13}, - [2251] = {.lex_state = 54, .external_lex_state = 19}, - [2252] = {.lex_state = 54, .external_lex_state = 15}, - [2253] = {.lex_state = 54, .external_lex_state = 12}, - [2254] = {.lex_state = 54, .external_lex_state = 13}, - [2255] = {.lex_state = 54, .external_lex_state = 14}, - [2256] = {.lex_state = 54, .external_lex_state = 14}, - [2257] = {.lex_state = 54, .external_lex_state = 14}, - [2258] = {.lex_state = 54, .external_lex_state = 13}, - [2259] = {.lex_state = 54, .external_lex_state = 13}, - [2260] = {.lex_state = 54, .external_lex_state = 15}, - [2261] = {.lex_state = 54, .external_lex_state = 13}, - [2262] = {.lex_state = 54, .external_lex_state = 14}, - [2263] = {.lex_state = 54, .external_lex_state = 14}, - [2264] = {.lex_state = 54, .external_lex_state = 14}, - [2265] = {.lex_state = 7, .external_lex_state = 9}, - [2266] = {.lex_state = 55, .external_lex_state = 17}, - [2267] = {.lex_state = 54, .external_lex_state = 15}, - [2268] = {.lex_state = 54, .external_lex_state = 12}, - [2269] = {.lex_state = 7, .external_lex_state = 12}, - [2270] = {.lex_state = 54, .external_lex_state = 12}, - [2271] = {.lex_state = 54, .external_lex_state = 14}, - [2272] = {.lex_state = 54, .external_lex_state = 13}, - [2273] = {.lex_state = 54, .external_lex_state = 12}, - [2274] = {.lex_state = 54, .external_lex_state = 12}, - [2275] = {.lex_state = 54, .external_lex_state = 12}, - [2276] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2277] = {.lex_state = 7, .external_lex_state = 15}, - [2278] = {.lex_state = 3, .external_lex_state = 12}, - [2279] = {.lex_state = 7, .external_lex_state = 15}, - [2280] = {.lex_state = 3, .external_lex_state = 12}, - [2281] = {.lex_state = 54, .external_lex_state = 14}, - [2282] = {.lex_state = 3, .external_lex_state = 12}, - [2283] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2284] = {.lex_state = 54, .external_lex_state = 14}, - [2285] = {.lex_state = 54, .external_lex_state = 14}, - [2286] = {.lex_state = 7, .external_lex_state = 13}, - [2287] = {.lex_state = 55, .external_lex_state = 17}, - [2288] = {.lex_state = 54, .external_lex_state = 12}, - [2289] = {.lex_state = 55, .external_lex_state = 17}, - [2290] = {.lex_state = 54, .external_lex_state = 9}, - [2291] = {.lex_state = 54, .external_lex_state = 12}, - [2292] = {.lex_state = 54, .external_lex_state = 14}, - [2293] = {.lex_state = 54, .external_lex_state = 13}, - [2294] = {.lex_state = 54, .external_lex_state = 14}, - [2295] = {.lex_state = 54, .external_lex_state = 12}, - [2296] = {.lex_state = 54, .external_lex_state = 12}, - [2297] = {.lex_state = 54, .external_lex_state = 9}, - [2298] = {.lex_state = 54, .external_lex_state = 12}, - [2299] = {.lex_state = 54, .external_lex_state = 14}, - [2300] = {.lex_state = 54, .external_lex_state = 19}, - [2301] = {.lex_state = 54, .external_lex_state = 14}, - [2302] = {.lex_state = 54, .external_lex_state = 14}, - [2303] = {.lex_state = 54, .external_lex_state = 19}, - [2304] = {.lex_state = 54, .external_lex_state = 13}, - [2305] = {.lex_state = 54, .external_lex_state = 15}, - [2306] = {.lex_state = 7, .external_lex_state = 9}, - [2307] = {.lex_state = 54, .external_lex_state = 13}, - [2308] = {.lex_state = 54, .external_lex_state = 19}, - [2309] = {.lex_state = 54, .external_lex_state = 14}, - [2310] = {.lex_state = 54, .external_lex_state = 14}, - [2311] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2312] = {.lex_state = 54, .external_lex_state = 13}, - [2313] = {.lex_state = 54, .external_lex_state = 13}, - [2314] = {.lex_state = 54, .external_lex_state = 12}, - [2315] = {.lex_state = 54, .external_lex_state = 13}, - [2316] = {.lex_state = 54, .external_lex_state = 13}, - [2317] = {.lex_state = 54, .external_lex_state = 15}, - [2318] = {.lex_state = 7, .external_lex_state = 12}, - [2319] = {.lex_state = 7, .external_lex_state = 15}, - [2320] = {.lex_state = 13, .external_lex_state = 15}, - [2321] = {.lex_state = 54, .external_lex_state = 9}, - [2322] = {.lex_state = 54, .external_lex_state = 14}, - [2323] = {.lex_state = 54, .external_lex_state = 12}, - [2324] = {.lex_state = 54, .external_lex_state = 14}, - [2325] = {.lex_state = 54, .external_lex_state = 14}, - [2326] = {.lex_state = 54, .external_lex_state = 13}, - [2327] = {.lex_state = 54, .external_lex_state = 14}, - [2328] = {.lex_state = 54, .external_lex_state = 12}, - [2329] = {.lex_state = 54, .external_lex_state = 14}, - [2330] = {.lex_state = 54, .external_lex_state = 12}, - [2331] = {.lex_state = 7, .external_lex_state = 13}, - [2332] = {.lex_state = 7, .external_lex_state = 13}, - [2333] = {.lex_state = 54, .external_lex_state = 13}, - [2334] = {.lex_state = 54, .external_lex_state = 13}, - [2335] = {.lex_state = 54, .external_lex_state = 13}, - [2336] = {.lex_state = 54, .external_lex_state = 14}, - [2337] = {.lex_state = 54, .external_lex_state = 14}, - [2338] = {.lex_state = 13, .external_lex_state = 15}, - [2339] = {.lex_state = 54, .external_lex_state = 12}, - [2340] = {.lex_state = 3, .external_lex_state = 12}, - [2341] = {.lex_state = 54, .external_lex_state = 9}, - [2342] = {.lex_state = 55, .external_lex_state = 17}, - [2343] = {.lex_state = 54, .external_lex_state = 14}, - [2344] = {.lex_state = 54, .external_lex_state = 9}, - [2345] = {.lex_state = 54, .external_lex_state = 15}, - [2346] = {.lex_state = 54, .external_lex_state = 12}, - [2347] = {.lex_state = 54, .external_lex_state = 9}, - [2348] = {.lex_state = 54, .external_lex_state = 13}, - [2349] = {.lex_state = 54, .external_lex_state = 12}, - [2350] = {.lex_state = 7, .external_lex_state = 14}, - [2351] = {.lex_state = 54, .external_lex_state = 14}, - [2352] = {.lex_state = 54, .external_lex_state = 14}, - [2353] = {.lex_state = 54, .external_lex_state = 13}, - [2354] = {.lex_state = 54, .external_lex_state = 14}, - [2355] = {.lex_state = 54, .external_lex_state = 14}, - [2356] = {.lex_state = 54, .external_lex_state = 13}, - [2357] = {.lex_state = 54, .external_lex_state = 14}, - [2358] = {.lex_state = 54, .external_lex_state = 13}, - [2359] = {.lex_state = 54, .external_lex_state = 13}, - [2360] = {.lex_state = 54, .external_lex_state = 12}, - [2361] = {.lex_state = 54, .external_lex_state = 9}, - [2362] = {.lex_state = 7, .external_lex_state = 9}, - [2363] = {.lex_state = 55, .external_lex_state = 17}, - [2364] = {.lex_state = 54, .external_lex_state = 15}, - [2365] = {.lex_state = 54, .external_lex_state = 9}, - [2366] = {.lex_state = 54, .external_lex_state = 14}, - [2367] = {.lex_state = 54, .external_lex_state = 12}, - [2368] = {.lex_state = 54, .external_lex_state = 14}, - [2369] = {.lex_state = 54, .external_lex_state = 12}, - [2370] = {.lex_state = 54, .external_lex_state = 9}, - [2371] = {.lex_state = 54, .external_lex_state = 9}, - [2372] = {.lex_state = 54, .external_lex_state = 12}, - [2373] = {.lex_state = 54, .external_lex_state = 14}, - [2374] = {.lex_state = 54, .external_lex_state = 14}, - [2375] = {.lex_state = 54, .external_lex_state = 13}, - [2376] = {.lex_state = 54, .external_lex_state = 14}, - [2377] = {.lex_state = 54, .external_lex_state = 14}, - [2378] = {.lex_state = 54, .external_lex_state = 14}, - [2379] = {.lex_state = 54, .external_lex_state = 14}, - [2380] = {.lex_state = 54, .external_lex_state = 13}, - [2381] = {.lex_state = 54, .external_lex_state = 13}, - [2382] = {.lex_state = 3, .external_lex_state = 12}, - [2383] = {.lex_state = 3, .external_lex_state = 12}, - [2384] = {.lex_state = 3, .external_lex_state = 12}, - [2385] = {.lex_state = 7, .external_lex_state = 14}, - [2386] = {.lex_state = 54, .external_lex_state = 15}, - [2387] = {.lex_state = 54, .external_lex_state = 13}, - [2388] = {.lex_state = 54, .external_lex_state = 19}, - [2389] = {.lex_state = 54, .external_lex_state = 14}, - [2390] = {.lex_state = 54, .external_lex_state = 14}, - [2391] = {.lex_state = 54, .external_lex_state = 12}, - [2392] = {.lex_state = 54, .external_lex_state = 15}, - [2393] = {.lex_state = 54, .external_lex_state = 12}, - [2394] = {.lex_state = 54, .external_lex_state = 12}, - [2395] = {.lex_state = 54, .external_lex_state = 14}, - [2396] = {.lex_state = 54, .external_lex_state = 14}, - [2397] = {.lex_state = 54, .external_lex_state = 15}, - [2398] = {.lex_state = 54, .external_lex_state = 13}, - [2399] = {.lex_state = 54, .external_lex_state = 14}, - [2400] = {.lex_state = 54, .external_lex_state = 14}, - [2401] = {.lex_state = 54, .external_lex_state = 13}, - [2402] = {.lex_state = 54, .external_lex_state = 13}, - [2403] = {.lex_state = 54, .external_lex_state = 14}, - [2404] = {.lex_state = 54, .external_lex_state = 14}, - [2405] = {.lex_state = 54, .external_lex_state = 14}, - [2406] = {.lex_state = 7, .external_lex_state = 15}, - [2407] = {.lex_state = 54, .external_lex_state = 14}, - [2408] = {.lex_state = 7, .external_lex_state = 15}, - [2409] = {.lex_state = 54, .external_lex_state = 9}, - [2410] = {.lex_state = 54, .external_lex_state = 12}, - [2411] = {.lex_state = 7, .external_lex_state = 14}, - [2412] = {.lex_state = 54, .external_lex_state = 14}, - [2413] = {.lex_state = 54, .external_lex_state = 12}, - [2414] = {.lex_state = 54, .external_lex_state = 14}, - [2415] = {.lex_state = 54, .external_lex_state = 12}, - [2416] = {.lex_state = 54, .external_lex_state = 12}, - [2417] = {.lex_state = 54, .external_lex_state = 14}, - [2418] = {.lex_state = 54, .external_lex_state = 14}, - [2419] = {.lex_state = 54, .external_lex_state = 14}, - [2420] = {.lex_state = 54, .external_lex_state = 13}, - [2421] = {.lex_state = 54, .external_lex_state = 15}, - [2422] = {.lex_state = 54, .external_lex_state = 14}, - [2423] = {.lex_state = 7, .external_lex_state = 9}, - [2424] = {.lex_state = 54, .external_lex_state = 14}, - [2425] = {.lex_state = 54, .external_lex_state = 13}, - [2426] = {.lex_state = 54, .external_lex_state = 13}, - [2427] = {.lex_state = 54, .external_lex_state = 12}, - [2428] = {.lex_state = 54, .external_lex_state = 14}, - [2429] = {.lex_state = 7, .external_lex_state = 12}, - [2430] = {.lex_state = 54, .external_lex_state = 13}, - [2431] = {.lex_state = 54, .external_lex_state = 13}, - [2432] = {.lex_state = 54, .external_lex_state = 13}, - [2433] = {.lex_state = 54, .external_lex_state = 9}, - [2434] = {.lex_state = 54, .external_lex_state = 13}, - [2435] = {.lex_state = 54, .external_lex_state = 13}, - [2436] = {.lex_state = 54, .external_lex_state = 13}, - [2437] = {.lex_state = 54, .external_lex_state = 13}, - [2438] = {.lex_state = 54, .external_lex_state = 14}, - [2439] = {.lex_state = 54, .external_lex_state = 12}, - [2440] = {.lex_state = 54, .external_lex_state = 14}, - [2441] = {.lex_state = 7, .external_lex_state = 14}, - [2442] = {.lex_state = 54, .external_lex_state = 12}, - [2443] = {.lex_state = 54, .external_lex_state = 13}, - [2444] = {.lex_state = 54, .external_lex_state = 14}, - [2445] = {.lex_state = 54, .external_lex_state = 13}, - [2446] = {.lex_state = 54, .external_lex_state = 12}, - [2447] = {.lex_state = 54, .external_lex_state = 14}, - [2448] = {.lex_state = 54, .external_lex_state = 15}, - [2449] = {.lex_state = 7, .external_lex_state = 15}, - [2450] = {.lex_state = 54, .external_lex_state = 12}, - [2451] = {.lex_state = 7, .external_lex_state = 15}, - [2452] = {.lex_state = 3, .external_lex_state = 12}, - [2453] = {.lex_state = 13, .external_lex_state = 15}, - [2454] = {.lex_state = 13, .external_lex_state = 15}, - [2455] = {.lex_state = 13, .external_lex_state = 15}, - [2456] = {.lex_state = 13, .external_lex_state = 15}, - [2457] = {.lex_state = 54, .external_lex_state = 14}, - [2458] = {.lex_state = 54, .external_lex_state = 13}, - [2459] = {.lex_state = 54, .external_lex_state = 14}, - [2460] = {.lex_state = 54, .external_lex_state = 14}, - [2461] = {.lex_state = 54, .external_lex_state = 19}, - [2462] = {.lex_state = 54, .external_lex_state = 13}, - [2463] = {.lex_state = 7, .external_lex_state = 15}, - [2464] = {.lex_state = 7, .external_lex_state = 15}, - [2465] = {.lex_state = 54, .external_lex_state = 14}, - [2466] = {.lex_state = 54, .external_lex_state = 15}, - [2467] = {.lex_state = 54, .external_lex_state = 13}, - [2468] = {.lex_state = 54, .external_lex_state = 13}, - [2469] = {.lex_state = 54, .external_lex_state = 13}, - [2470] = {.lex_state = 3, .external_lex_state = 12}, - [2471] = {.lex_state = 54, .external_lex_state = 14}, - [2472] = {.lex_state = 54, .external_lex_state = 14}, - [2473] = {.lex_state = 54, .external_lex_state = 13}, - [2474] = {.lex_state = 54, .external_lex_state = 19}, - [2475] = {.lex_state = 54, .external_lex_state = 14}, - [2476] = {.lex_state = 54, .external_lex_state = 12}, - [2477] = {.lex_state = 54, .external_lex_state = 14}, - [2478] = {.lex_state = 54, .external_lex_state = 14}, - [2479] = {.lex_state = 54, .external_lex_state = 14}, - [2480] = {.lex_state = 54, .external_lex_state = 13}, - [2481] = {.lex_state = 13, .external_lex_state = 15}, - [2482] = {.lex_state = 54, .external_lex_state = 19}, - [2483] = {.lex_state = 54, .external_lex_state = 15}, - [2484] = {.lex_state = 54, .external_lex_state = 15}, - [2485] = {.lex_state = 54, .external_lex_state = 13}, - [2486] = {.lex_state = 54, .external_lex_state = 9}, - [2487] = {.lex_state = 54, .external_lex_state = 14}, - [2488] = {.lex_state = 54, .external_lex_state = 9}, - [2489] = {.lex_state = 7, .external_lex_state = 15}, - [2490] = {.lex_state = 7, .external_lex_state = 15}, - [2491] = {.lex_state = 7, .external_lex_state = 15}, - [2492] = {.lex_state = 54, .external_lex_state = 14}, - [2493] = {.lex_state = 54, .external_lex_state = 9}, - [2494] = {.lex_state = 54, .external_lex_state = 13}, - [2495] = {.lex_state = 7, .external_lex_state = 18}, - [2496] = {.lex_state = 54, .external_lex_state = 9}, - [2497] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2498] = {.lex_state = 54, .external_lex_state = 9}, - [2499] = {.lex_state = 54, .external_lex_state = 15}, - [2500] = {.lex_state = 7, .external_lex_state = 18}, - [2501] = {.lex_state = 54, .external_lex_state = 9}, - [2502] = {.lex_state = 54, .external_lex_state = 15}, - [2503] = {.lex_state = 9, .external_lex_state = 15}, - [2504] = {.lex_state = 54, .external_lex_state = 9}, - [2505] = {.lex_state = 7, .external_lex_state = 18}, - [2506] = {.lex_state = 7, .external_lex_state = 18}, - [2507] = {.lex_state = 54, .external_lex_state = 9}, - [2508] = {.lex_state = 54, .external_lex_state = 12}, - [2509] = {.lex_state = 54, .external_lex_state = 15}, - [2510] = {.lex_state = 7, .external_lex_state = 18}, - [2511] = {.lex_state = 54, .external_lex_state = 9}, - [2512] = {.lex_state = 54, .external_lex_state = 9}, - [2513] = {.lex_state = 54, .external_lex_state = 9}, - [2514] = {.lex_state = 54, .external_lex_state = 9}, - [2515] = {.lex_state = 7, .external_lex_state = 18}, - [2516] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2517] = {.lex_state = 54, .external_lex_state = 15}, - [2518] = {.lex_state = 54, .external_lex_state = 14}, - [2519] = {.lex_state = 54, .external_lex_state = 14}, - [2520] = {.lex_state = 54, .external_lex_state = 9}, - [2521] = {.lex_state = 54, .external_lex_state = 14}, - [2522] = {.lex_state = 54, .external_lex_state = 14}, - [2523] = {.lex_state = 54, .external_lex_state = 14}, - [2524] = {.lex_state = 7, .external_lex_state = 18}, - [2525] = {.lex_state = 54, .external_lex_state = 15}, - [2526] = {.lex_state = 54, .external_lex_state = 15}, - [2527] = {.lex_state = 54, .external_lex_state = 13}, - [2528] = {.lex_state = 54, .external_lex_state = 15}, - [2529] = {.lex_state = 54, .external_lex_state = 9}, - [2530] = {.lex_state = 7, .external_lex_state = 18}, - [2531] = {.lex_state = 54, .external_lex_state = 15}, - [2532] = {.lex_state = 54, .external_lex_state = 14}, - [2533] = {.lex_state = 54, .external_lex_state = 15}, - [2534] = {.lex_state = 54, .external_lex_state = 14}, - [2535] = {.lex_state = 54, .external_lex_state = 12}, - [2536] = {.lex_state = 54, .external_lex_state = 12}, - [2537] = {.lex_state = 54, .external_lex_state = 14}, - [2538] = {.lex_state = 54, .external_lex_state = 15}, - [2539] = {.lex_state = 54, .external_lex_state = 14}, + [1952] = {.lex_state = 52, .external_lex_state = 14}, + [1953] = {.lex_state = 52, .external_lex_state = 13}, + [1954] = {.lex_state = 52, .external_lex_state = 12}, + [1955] = {.lex_state = 52, .external_lex_state = 14}, + [1956] = {.lex_state = 8, .external_lex_state = 11}, + [1957] = {.lex_state = 52, .external_lex_state = 13}, + [1958] = {.lex_state = 52, .external_lex_state = 14}, + [1959] = {.lex_state = 0, .external_lex_state = 16}, + [1960] = {.lex_state = 0, .external_lex_state = 16}, + [1961] = {.lex_state = 8, .external_lex_state = 11}, + [1962] = {.lex_state = 8, .external_lex_state = 15}, + [1963] = {.lex_state = 52, .external_lex_state = 12}, + [1964] = {.lex_state = 52, .external_lex_state = 15}, + [1965] = {.lex_state = 7, .external_lex_state = 14}, + [1966] = {.lex_state = 8, .external_lex_state = 14}, + [1967] = {.lex_state = 8, .external_lex_state = 14}, + [1968] = {.lex_state = 52, .external_lex_state = 13}, + [1969] = {.lex_state = 52, .external_lex_state = 15}, + [1970] = {.lex_state = 52, .external_lex_state = 13}, + [1971] = {.lex_state = 8, .external_lex_state = 14}, + [1972] = {.lex_state = 52, .external_lex_state = 12}, + [1973] = {.lex_state = 8, .external_lex_state = 11}, + [1974] = {.lex_state = 8, .external_lex_state = 11}, + [1975] = {.lex_state = 52, .external_lex_state = 15}, + [1976] = {.lex_state = 52, .external_lex_state = 13}, + [1977] = {.lex_state = 8, .external_lex_state = 14}, + [1978] = {.lex_state = 52, .external_lex_state = 15}, + [1979] = {.lex_state = 0, .external_lex_state = 16}, + [1980] = {.lex_state = 7, .external_lex_state = 11}, + [1981] = {.lex_state = 8, .external_lex_state = 14}, + [1982] = {.lex_state = 52, .external_lex_state = 12}, + [1983] = {.lex_state = 52, .external_lex_state = 15}, + [1984] = {.lex_state = 52, .external_lex_state = 14}, + [1985] = {.lex_state = 52, .external_lex_state = 15}, + [1986] = {.lex_state = 52, .external_lex_state = 15}, + [1987] = {.lex_state = 8, .external_lex_state = 15}, + [1988] = {.lex_state = 52, .external_lex_state = 11}, + [1989] = {.lex_state = 52, .external_lex_state = 15}, + [1990] = {.lex_state = 52, .external_lex_state = 15}, + [1991] = {.lex_state = 8, .external_lex_state = 11}, + [1992] = {.lex_state = 52, .external_lex_state = 15}, + [1993] = {.lex_state = 52, .external_lex_state = 15}, + [1994] = {.lex_state = 52, .external_lex_state = 15}, + [1995] = {.lex_state = 52, .external_lex_state = 15}, + [1996] = {.lex_state = 8, .external_lex_state = 15}, + [1997] = {.lex_state = 52, .external_lex_state = 15}, + [1998] = {.lex_state = 52, .external_lex_state = 13}, + [1999] = {.lex_state = 52, .external_lex_state = 13}, + [2000] = {.lex_state = 52, .external_lex_state = 12}, + [2001] = {.lex_state = 52, .external_lex_state = 15}, + [2002] = {.lex_state = 52, .external_lex_state = 15}, + [2003] = {.lex_state = 52, .external_lex_state = 11}, + [2004] = {.lex_state = 52, .external_lex_state = 12}, + [2005] = {.lex_state = 52, .external_lex_state = 13}, + [2006] = {.lex_state = 52, .external_lex_state = 15}, + [2007] = {.lex_state = 52, .external_lex_state = 15}, + [2008] = {.lex_state = 52, .external_lex_state = 15}, + [2009] = {.lex_state = 8, .external_lex_state = 12}, + [2010] = {.lex_state = 8, .external_lex_state = 12}, + [2011] = {.lex_state = 8, .external_lex_state = 12}, + [2012] = {.lex_state = 52, .external_lex_state = 15}, + [2013] = {.lex_state = 52, .external_lex_state = 15}, + [2014] = {.lex_state = 52, .external_lex_state = 12}, + [2015] = {.lex_state = 52, .external_lex_state = 15}, + [2016] = {.lex_state = 52, .external_lex_state = 15}, + [2017] = {.lex_state = 52, .external_lex_state = 15}, + [2018] = {.lex_state = 52, .external_lex_state = 15}, + [2019] = {.lex_state = 8, .external_lex_state = 12}, + [2020] = {.lex_state = 52, .external_lex_state = 15}, + [2021] = {.lex_state = 52, .external_lex_state = 13}, + [2022] = {.lex_state = 52, .external_lex_state = 15}, + [2023] = {.lex_state = 52, .external_lex_state = 15}, + [2024] = {.lex_state = 7, .external_lex_state = 11}, + [2025] = {.lex_state = 52, .external_lex_state = 14}, + [2026] = {.lex_state = 8, .external_lex_state = 15}, + [2027] = {.lex_state = 52, .external_lex_state = 15}, + [2028] = {.lex_state = 52, .external_lex_state = 11}, + [2029] = {.lex_state = 52, .external_lex_state = 15}, + [2030] = {.lex_state = 52, .external_lex_state = 15}, + [2031] = {.lex_state = 52, .external_lex_state = 13}, + [2032] = {.lex_state = 52, .external_lex_state = 13}, + [2033] = {.lex_state = 52, .external_lex_state = 15}, + [2034] = {.lex_state = 52, .external_lex_state = 15}, + [2035] = {.lex_state = 52, .external_lex_state = 15}, + [2036] = {.lex_state = 52, .external_lex_state = 15}, + [2037] = {.lex_state = 52, .external_lex_state = 15}, + [2038] = {.lex_state = 52, .external_lex_state = 11, .reserved_word_set_id = 1}, + [2039] = {.lex_state = 52, .external_lex_state = 15}, + [2040] = {.lex_state = 8, .external_lex_state = 12}, + [2041] = {.lex_state = 3, .external_lex_state = 13}, + [2042] = {.lex_state = 52, .external_lex_state = 13}, + [2043] = {.lex_state = 52, .external_lex_state = 15}, + [2044] = {.lex_state = 52, .external_lex_state = 15}, + [2045] = {.lex_state = 52, .external_lex_state = 11, .reserved_word_set_id = 1}, + [2046] = {.lex_state = 8, .external_lex_state = 12}, + [2047] = {.lex_state = 52, .external_lex_state = 14}, + [2048] = {.lex_state = 52, .external_lex_state = 13}, + [2049] = {.lex_state = 52, .external_lex_state = 14}, + [2050] = {.lex_state = 52, .external_lex_state = 13}, + [2051] = {.lex_state = 52, .external_lex_state = 13}, + [2052] = {.lex_state = 52, .external_lex_state = 12}, + [2053] = {.lex_state = 52, .external_lex_state = 13}, + [2054] = {.lex_state = 52, .external_lex_state = 13}, + [2055] = {.lex_state = 52, .external_lex_state = 14}, + [2056] = {.lex_state = 52, .external_lex_state = 13}, + [2057] = {.lex_state = 52, .external_lex_state = 13}, + [2058] = {.lex_state = 52, .external_lex_state = 13}, + [2059] = {.lex_state = 52, .external_lex_state = 15}, + [2060] = {.lex_state = 52, .external_lex_state = 15}, + [2061] = {.lex_state = 52, .external_lex_state = 13}, + [2062] = {.lex_state = 52, .external_lex_state = 15}, + [2063] = {.lex_state = 52, .external_lex_state = 12}, + [2064] = {.lex_state = 52, .external_lex_state = 13}, + [2065] = {.lex_state = 52, .external_lex_state = 14}, + [2066] = {.lex_state = 52, .external_lex_state = 13}, + [2067] = {.lex_state = 52, .external_lex_state = 12}, + [2068] = {.lex_state = 52, .external_lex_state = 13}, + [2069] = {.lex_state = 52, .external_lex_state = 15}, + [2070] = {.lex_state = 52, .external_lex_state = 15}, + [2071] = {.lex_state = 52, .external_lex_state = 15}, + [2072] = {.lex_state = 52, .external_lex_state = 12}, + [2073] = {.lex_state = 8, .external_lex_state = 12}, + [2074] = {.lex_state = 8, .external_lex_state = 15}, + [2075] = {.lex_state = 52, .external_lex_state = 14}, + [2076] = {.lex_state = 52, .external_lex_state = 11}, + [2077] = {.lex_state = 52, .external_lex_state = 15}, + [2078] = {.lex_state = 52, .external_lex_state = 12}, + [2079] = {.lex_state = 52, .external_lex_state = 15}, + [2080] = {.lex_state = 8, .external_lex_state = 15}, + [2081] = {.lex_state = 8, .external_lex_state = 15}, + [2082] = {.lex_state = 8, .external_lex_state = 15}, + [2083] = {.lex_state = 8, .external_lex_state = 12}, + [2084] = {.lex_state = 8, .external_lex_state = 12}, + [2085] = {.lex_state = 8, .external_lex_state = 12}, + [2086] = {.lex_state = 52, .external_lex_state = 15}, + [2087] = {.lex_state = 52, .external_lex_state = 14}, + [2088] = {.lex_state = 52, .external_lex_state = 13}, + [2089] = {.lex_state = 52, .external_lex_state = 15}, + [2090] = {.lex_state = 52, .external_lex_state = 12}, + [2091] = {.lex_state = 52, .external_lex_state = 11, .reserved_word_set_id = 1}, + [2092] = {.lex_state = 3, .external_lex_state = 13}, + [2093] = {.lex_state = 52, .external_lex_state = 15}, + [2094] = {.lex_state = 52, .external_lex_state = 13}, + [2095] = {.lex_state = 8, .external_lex_state = 15}, + [2096] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2097] = {.lex_state = 52, .external_lex_state = 15}, + [2098] = {.lex_state = 3, .external_lex_state = 13}, + [2099] = {.lex_state = 8, .external_lex_state = 12}, + [2100] = {.lex_state = 8, .external_lex_state = 14}, + [2101] = {.lex_state = 52, .external_lex_state = 14}, + [2102] = {.lex_state = 52, .external_lex_state = 15}, + [2103] = {.lex_state = 52, .external_lex_state = 13}, + [2104] = {.lex_state = 52, .external_lex_state = 13}, + [2105] = {.lex_state = 52, .external_lex_state = 17}, + [2106] = {.lex_state = 52, .external_lex_state = 15}, + [2107] = {.lex_state = 52, .external_lex_state = 15}, + [2108] = {.lex_state = 52, .external_lex_state = 11}, + [2109] = {.lex_state = 52, .external_lex_state = 11}, + [2110] = {.lex_state = 52, .external_lex_state = 17}, + [2111] = {.lex_state = 52, .external_lex_state = 11}, + [2112] = {.lex_state = 52, .external_lex_state = 11}, + [2113] = {.lex_state = 52, .external_lex_state = 11}, + [2114] = {.lex_state = 52, .external_lex_state = 17}, + [2115] = {.lex_state = 52, .external_lex_state = 11}, + [2116] = {.lex_state = 52, .external_lex_state = 13}, + [2117] = {.lex_state = 52, .external_lex_state = 11}, + [2118] = {.lex_state = 52, .external_lex_state = 14}, + [2119] = {.lex_state = 52, .external_lex_state = 12}, + [2120] = {.lex_state = 52, .external_lex_state = 12}, + [2121] = {.lex_state = 52, .external_lex_state = 12}, + [2122] = {.lex_state = 52, .external_lex_state = 12}, + [2123] = {.lex_state = 52, .external_lex_state = 12}, + [2124] = {.lex_state = 8, .external_lex_state = 15}, + [2125] = {.lex_state = 52, .external_lex_state = 14}, + [2126] = {.lex_state = 52, .external_lex_state = 12}, + [2127] = {.lex_state = 52, .external_lex_state = 12}, + [2128] = {.lex_state = 52, .external_lex_state = 12}, + [2129] = {.lex_state = 52, .external_lex_state = 12}, + [2130] = {.lex_state = 52, .external_lex_state = 12}, + [2131] = {.lex_state = 52, .external_lex_state = 12}, + [2132] = {.lex_state = 7, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2133] = {.lex_state = 52, .external_lex_state = 12}, + [2134] = {.lex_state = 52, .external_lex_state = 12}, + [2135] = {.lex_state = 52, .external_lex_state = 12}, + [2136] = {.lex_state = 52, .external_lex_state = 12}, + [2137] = {.lex_state = 52, .external_lex_state = 12}, + [2138] = {.lex_state = 52, .external_lex_state = 12}, + [2139] = {.lex_state = 52, .external_lex_state = 12}, + [2140] = {.lex_state = 52, .external_lex_state = 12}, + [2141] = {.lex_state = 52, .external_lex_state = 12}, + [2142] = {.lex_state = 52, .external_lex_state = 12}, + [2143] = {.lex_state = 52, .external_lex_state = 12}, + [2144] = {.lex_state = 52, .external_lex_state = 12}, + [2145] = {.lex_state = 52, .external_lex_state = 12}, + [2146] = {.lex_state = 52, .external_lex_state = 12}, + [2147] = {.lex_state = 52, .external_lex_state = 11}, + [2148] = {.lex_state = 52, .external_lex_state = 14}, + [2149] = {.lex_state = 52, .external_lex_state = 12}, + [2150] = {.lex_state = 52, .external_lex_state = 15}, + [2151] = {.lex_state = 52, .external_lex_state = 15}, + [2152] = {.lex_state = 52, .external_lex_state = 17}, + [2153] = {.lex_state = 52, .external_lex_state = 14}, + [2154] = {.lex_state = 52, .external_lex_state = 11}, + [2155] = {.lex_state = 52, .external_lex_state = 14}, + [2156] = {.lex_state = 52, .external_lex_state = 14}, + [2157] = {.lex_state = 52, .external_lex_state = 14}, + [2158] = {.lex_state = 52, .external_lex_state = 14}, + [2159] = {.lex_state = 52, .external_lex_state = 14}, + [2160] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2161] = {.lex_state = 52, .external_lex_state = 11}, + [2162] = {.lex_state = 52, .external_lex_state = 11}, + [2163] = {.lex_state = 52, .external_lex_state = 14}, + [2164] = {.lex_state = 52, .external_lex_state = 12}, + [2165] = {.lex_state = 52, .external_lex_state = 14}, + [2166] = {.lex_state = 52, .external_lex_state = 14}, + [2167] = {.lex_state = 52, .external_lex_state = 14}, + [2168] = {.lex_state = 52, .external_lex_state = 14}, + [2169] = {.lex_state = 52, .external_lex_state = 14}, + [2170] = {.lex_state = 52, .external_lex_state = 14}, + [2171] = {.lex_state = 52, .external_lex_state = 14}, + [2172] = {.lex_state = 8, .external_lex_state = 15}, + [2173] = {.lex_state = 7, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2174] = {.lex_state = 52, .external_lex_state = 14}, + [2175] = {.lex_state = 52, .external_lex_state = 15}, + [2176] = {.lex_state = 52, .external_lex_state = 14}, + [2177] = {.lex_state = 52, .external_lex_state = 14}, + [2178] = {.lex_state = 52, .external_lex_state = 14}, + [2179] = {.lex_state = 52, .external_lex_state = 14}, + [2180] = {.lex_state = 52, .external_lex_state = 14}, + [2181] = {.lex_state = 52, .external_lex_state = 14}, + [2182] = {.lex_state = 52, .external_lex_state = 14}, + [2183] = {.lex_state = 52, .external_lex_state = 14}, + [2184] = {.lex_state = 52, .external_lex_state = 14}, + [2185] = {.lex_state = 52, .external_lex_state = 14}, + [2186] = {.lex_state = 52, .external_lex_state = 14}, + [2187] = {.lex_state = 52, .external_lex_state = 14}, + [2188] = {.lex_state = 52, .external_lex_state = 14}, + [2189] = {.lex_state = 52, .external_lex_state = 14}, + [2190] = {.lex_state = 52, .external_lex_state = 12}, + [2191] = {.lex_state = 52, .external_lex_state = 13}, + [2192] = {.lex_state = 52, .external_lex_state = 13}, + [2193] = {.lex_state = 52, .external_lex_state = 13}, + [2194] = {.lex_state = 52, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2195] = {.lex_state = 52, .external_lex_state = 13}, + [2196] = {.lex_state = 52, .external_lex_state = 13}, + [2197] = {.lex_state = 52, .external_lex_state = 13}, + [2198] = {.lex_state = 52, .external_lex_state = 13}, + [2199] = {.lex_state = 52, .external_lex_state = 13}, + [2200] = {.lex_state = 52, .external_lex_state = 13}, + [2201] = {.lex_state = 52, .external_lex_state = 13}, + [2202] = {.lex_state = 52, .external_lex_state = 13}, + [2203] = {.lex_state = 52, .external_lex_state = 13}, + [2204] = {.lex_state = 52, .external_lex_state = 13}, + [2205] = {.lex_state = 52, .external_lex_state = 13}, + [2206] = {.lex_state = 52, .external_lex_state = 13}, + [2207] = {.lex_state = 52, .external_lex_state = 13}, + [2208] = {.lex_state = 52, .external_lex_state = 13}, + [2209] = {.lex_state = 52, .external_lex_state = 13}, + [2210] = {.lex_state = 52, .external_lex_state = 13}, + [2211] = {.lex_state = 52, .external_lex_state = 13}, + [2212] = {.lex_state = 52, .external_lex_state = 13}, + [2213] = {.lex_state = 52, .external_lex_state = 13}, + [2214] = {.lex_state = 52, .external_lex_state = 11}, + [2215] = {.lex_state = 52, .external_lex_state = 17}, + [2216] = {.lex_state = 52, .external_lex_state = 11}, + [2217] = {.lex_state = 52, .external_lex_state = 11}, + [2218] = {.lex_state = 52, .external_lex_state = 15}, + [2219] = {.lex_state = 52, .external_lex_state = 13}, + [2220] = {.lex_state = 52, .external_lex_state = 11}, + [2221] = {.lex_state = 52, .external_lex_state = 11}, + [2222] = {.lex_state = 52, .external_lex_state = 11}, + [2223] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2224] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2225] = {.lex_state = 52, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2226] = {.lex_state = 52, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2227] = {.lex_state = 52, .external_lex_state = 15}, + [2228] = {.lex_state = 52, .external_lex_state = 15}, + [2229] = {.lex_state = 52, .external_lex_state = 14}, + [2230] = {.lex_state = 52, .external_lex_state = 15}, + [2231] = {.lex_state = 52, .external_lex_state = 14}, + [2232] = {.lex_state = 52, .external_lex_state = 14}, + [2233] = {.lex_state = 52, .external_lex_state = 12}, + [2234] = {.lex_state = 52, .external_lex_state = 13}, + [2235] = {.lex_state = 8, .external_lex_state = 15}, + [2236] = {.lex_state = 52, .external_lex_state = 12}, + [2237] = {.lex_state = 52, .external_lex_state = 11}, + [2238] = {.lex_state = 52, .external_lex_state = 14}, + [2239] = {.lex_state = 52, .external_lex_state = 14}, + [2240] = {.lex_state = 52, .external_lex_state = 13}, + [2241] = {.lex_state = 52, .external_lex_state = 14}, + [2242] = {.lex_state = 52, .external_lex_state = 14}, + [2243] = {.lex_state = 3, .external_lex_state = 13}, + [2244] = {.lex_state = 3, .external_lex_state = 13}, + [2245] = {.lex_state = 52, .external_lex_state = 12}, + [2246] = {.lex_state = 3, .external_lex_state = 13}, + [2247] = {.lex_state = 52, .external_lex_state = 11}, + [2248] = {.lex_state = 52, .external_lex_state = 14}, + [2249] = {.lex_state = 52, .external_lex_state = 15}, + [2250] = {.lex_state = 52, .external_lex_state = 14}, + [2251] = {.lex_state = 52, .external_lex_state = 12}, + [2252] = {.lex_state = 52, .external_lex_state = 12}, + [2253] = {.lex_state = 52, .external_lex_state = 12}, + [2254] = {.lex_state = 52, .external_lex_state = 14}, + [2255] = {.lex_state = 52, .external_lex_state = 14}, + [2256] = {.lex_state = 52, .external_lex_state = 15}, + [2257] = {.lex_state = 52, .external_lex_state = 14}, + [2258] = {.lex_state = 52, .external_lex_state = 13}, + [2259] = {.lex_state = 52, .external_lex_state = 15}, + [2260] = {.lex_state = 52, .external_lex_state = 14}, + [2261] = {.lex_state = 52, .external_lex_state = 12}, + [2262] = {.lex_state = 52, .external_lex_state = 13}, + [2263] = {.lex_state = 52, .external_lex_state = 13}, + [2264] = {.lex_state = 52, .external_lex_state = 14}, + [2265] = {.lex_state = 8, .external_lex_state = 15}, + [2266] = {.lex_state = 52, .external_lex_state = 11}, + [2267] = {.lex_state = 3, .external_lex_state = 13}, + [2268] = {.lex_state = 52, .external_lex_state = 13}, + [2269] = {.lex_state = 52, .external_lex_state = 14}, + [2270] = {.lex_state = 52, .external_lex_state = 11}, + [2271] = {.lex_state = 52, .external_lex_state = 18}, + [2272] = {.lex_state = 3, .external_lex_state = 13}, + [2273] = {.lex_state = 52, .external_lex_state = 14}, + [2274] = {.lex_state = 52, .external_lex_state = 14}, + [2275] = {.lex_state = 52, .external_lex_state = 15}, + [2276] = {.lex_state = 52, .external_lex_state = 13}, + [2277] = {.lex_state = 3, .external_lex_state = 13}, + [2278] = {.lex_state = 52, .external_lex_state = 11}, + [2279] = {.lex_state = 52, .external_lex_state = 11}, + [2280] = {.lex_state = 52, .external_lex_state = 12}, + [2281] = {.lex_state = 52, .external_lex_state = 11}, + [2282] = {.lex_state = 52, .external_lex_state = 13}, + [2283] = {.lex_state = 52, .external_lex_state = 12}, + [2284] = {.lex_state = 52, .external_lex_state = 13}, + [2285] = {.lex_state = 52, .external_lex_state = 14}, + [2286] = {.lex_state = 52, .external_lex_state = 14}, + [2287] = {.lex_state = 52, .external_lex_state = 14}, + [2288] = {.lex_state = 52, .external_lex_state = 12}, + [2289] = {.lex_state = 52, .external_lex_state = 14}, + [2290] = {.lex_state = 52, .external_lex_state = 14}, + [2291] = {.lex_state = 52, .external_lex_state = 12}, + [2292] = {.lex_state = 52, .external_lex_state = 14}, + [2293] = {.lex_state = 52, .external_lex_state = 13}, + [2294] = {.lex_state = 52, .external_lex_state = 12}, + [2295] = {.lex_state = 52, .external_lex_state = 12}, + [2296] = {.lex_state = 52, .external_lex_state = 15}, + [2297] = {.lex_state = 52, .external_lex_state = 12}, + [2298] = {.lex_state = 52, .external_lex_state = 12}, + [2299] = {.lex_state = 3, .external_lex_state = 13}, + [2300] = {.lex_state = 52, .external_lex_state = 11}, + [2301] = {.lex_state = 8, .external_lex_state = 15}, + [2302] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2303] = {.lex_state = 52, .external_lex_state = 13}, + [2304] = {.lex_state = 52, .external_lex_state = 14}, + [2305] = {.lex_state = 52, .external_lex_state = 12}, + [2306] = {.lex_state = 52, .external_lex_state = 12}, + [2307] = {.lex_state = 52, .external_lex_state = 13}, + [2308] = {.lex_state = 52, .external_lex_state = 13}, + [2309] = {.lex_state = 52, .external_lex_state = 13}, + [2310] = {.lex_state = 52, .external_lex_state = 15}, + [2311] = {.lex_state = 52, .external_lex_state = 14}, + [2312] = {.lex_state = 52, .external_lex_state = 14}, + [2313] = {.lex_state = 52, .external_lex_state = 14}, + [2314] = {.lex_state = 52, .external_lex_state = 14}, + [2315] = {.lex_state = 52, .external_lex_state = 12}, + [2316] = {.lex_state = 52, .external_lex_state = 14}, + [2317] = {.lex_state = 52, .external_lex_state = 18}, + [2318] = {.lex_state = 52, .external_lex_state = 14}, + [2319] = {.lex_state = 52, .external_lex_state = 11}, + [2320] = {.lex_state = 52, .external_lex_state = 14}, + [2321] = {.lex_state = 52, .external_lex_state = 14}, + [2322] = {.lex_state = 52, .external_lex_state = 14}, + [2323] = {.lex_state = 52, .external_lex_state = 14}, + [2324] = {.lex_state = 52, .external_lex_state = 13}, + [2325] = {.lex_state = 52, .external_lex_state = 14}, + [2326] = {.lex_state = 52, .external_lex_state = 13}, + [2327] = {.lex_state = 52, .external_lex_state = 11}, + [2328] = {.lex_state = 52, .external_lex_state = 18}, + [2329] = {.lex_state = 52, .external_lex_state = 13}, + [2330] = {.lex_state = 52, .external_lex_state = 13}, + [2331] = {.lex_state = 52, .external_lex_state = 13}, + [2332] = {.lex_state = 52, .external_lex_state = 14}, + [2333] = {.lex_state = 52, .external_lex_state = 14}, + [2334] = {.lex_state = 52, .external_lex_state = 13}, + [2335] = {.lex_state = 52, .external_lex_state = 12}, + [2336] = {.lex_state = 52, .external_lex_state = 14}, + [2337] = {.lex_state = 52, .external_lex_state = 14}, + [2338] = {.lex_state = 52, .external_lex_state = 14}, + [2339] = {.lex_state = 52, .external_lex_state = 15}, + [2340] = {.lex_state = 52, .external_lex_state = 12}, + [2341] = {.lex_state = 52, .external_lex_state = 12}, + [2342] = {.lex_state = 52, .external_lex_state = 14}, + [2343] = {.lex_state = 52, .external_lex_state = 18}, + [2344] = {.lex_state = 52, .external_lex_state = 15}, + [2345] = {.lex_state = 52, .external_lex_state = 14}, + [2346] = {.lex_state = 52, .external_lex_state = 14}, + [2347] = {.lex_state = 52, .external_lex_state = 15}, + [2348] = {.lex_state = 52, .external_lex_state = 12}, + [2349] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2350] = {.lex_state = 52, .external_lex_state = 15}, + [2351] = {.lex_state = 52, .external_lex_state = 12}, + [2352] = {.lex_state = 52, .external_lex_state = 14}, + [2353] = {.lex_state = 52, .external_lex_state = 14}, + [2354] = {.lex_state = 52, .external_lex_state = 12}, + [2355] = {.lex_state = 52, .external_lex_state = 13}, + [2356] = {.lex_state = 52, .external_lex_state = 13}, + [2357] = {.lex_state = 3, .external_lex_state = 13}, + [2358] = {.lex_state = 52, .external_lex_state = 15}, + [2359] = {.lex_state = 52, .external_lex_state = 13}, + [2360] = {.lex_state = 52, .external_lex_state = 13}, + [2361] = {.lex_state = 52, .external_lex_state = 14}, + [2362] = {.lex_state = 52, .external_lex_state = 14}, + [2363] = {.lex_state = 52, .external_lex_state = 12}, + [2364] = {.lex_state = 52, .external_lex_state = 14}, + [2365] = {.lex_state = 52, .external_lex_state = 14}, + [2366] = {.lex_state = 52, .external_lex_state = 14}, + [2367] = {.lex_state = 52, .external_lex_state = 13}, + [2368] = {.lex_state = 52, .external_lex_state = 14}, + [2369] = {.lex_state = 52, .external_lex_state = 12}, + [2370] = {.lex_state = 52, .external_lex_state = 12}, + [2371] = {.lex_state = 52, .external_lex_state = 14}, + [2372] = {.lex_state = 52, .external_lex_state = 13}, + [2373] = {.lex_state = 52, .external_lex_state = 13}, + [2374] = {.lex_state = 52, .external_lex_state = 13}, + [2375] = {.lex_state = 52, .external_lex_state = 14}, + [2376] = {.lex_state = 52, .external_lex_state = 14}, + [2377] = {.lex_state = 52, .external_lex_state = 13}, + [2378] = {.lex_state = 52, .external_lex_state = 14}, + [2379] = {.lex_state = 52, .external_lex_state = 13}, + [2380] = {.lex_state = 52, .external_lex_state = 14}, + [2381] = {.lex_state = 52, .external_lex_state = 13}, + [2382] = {.lex_state = 52, .external_lex_state = 14}, + [2383] = {.lex_state = 52, .external_lex_state = 14}, + [2384] = {.lex_state = 52, .external_lex_state = 14}, + [2385] = {.lex_state = 52, .external_lex_state = 12}, + [2386] = {.lex_state = 52, .external_lex_state = 12}, + [2387] = {.lex_state = 52, .external_lex_state = 12}, + [2388] = {.lex_state = 52, .external_lex_state = 14}, + [2389] = {.lex_state = 52, .external_lex_state = 13}, + [2390] = {.lex_state = 52, .external_lex_state = 14}, + [2391] = {.lex_state = 52, .external_lex_state = 14}, + [2392] = {.lex_state = 52, .external_lex_state = 12}, + [2393] = {.lex_state = 52, .external_lex_state = 12}, + [2394] = {.lex_state = 52, .external_lex_state = 12}, + [2395] = {.lex_state = 52, .external_lex_state = 12}, + [2396] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2397] = {.lex_state = 52, .external_lex_state = 12}, + [2398] = {.lex_state = 52, .external_lex_state = 14}, + [2399] = {.lex_state = 52, .external_lex_state = 12}, + [2400] = {.lex_state = 52, .external_lex_state = 15}, + [2401] = {.lex_state = 52, .external_lex_state = 14}, + [2402] = {.lex_state = 8, .external_lex_state = 15}, + [2403] = {.lex_state = 52, .external_lex_state = 13}, + [2404] = {.lex_state = 52, .external_lex_state = 14}, + [2405] = {.lex_state = 52, .external_lex_state = 14}, + [2406] = {.lex_state = 52, .external_lex_state = 11}, + [2407] = {.lex_state = 52, .external_lex_state = 13}, + [2408] = {.lex_state = 52, .external_lex_state = 14}, + [2409] = {.lex_state = 52, .external_lex_state = 14}, + [2410] = {.lex_state = 52, .external_lex_state = 15}, + [2411] = {.lex_state = 52, .external_lex_state = 12}, + [2412] = {.lex_state = 52, .external_lex_state = 14}, + [2413] = {.lex_state = 52, .external_lex_state = 14}, + [2414] = {.lex_state = 52, .external_lex_state = 12}, + [2415] = {.lex_state = 52, .external_lex_state = 12}, + [2416] = {.lex_state = 52, .external_lex_state = 12}, + [2417] = {.lex_state = 52, .external_lex_state = 12}, + [2418] = {.lex_state = 52, .external_lex_state = 11}, + [2419] = {.lex_state = 52, .external_lex_state = 14}, + [2420] = {.lex_state = 52, .external_lex_state = 18}, + [2421] = {.lex_state = 52, .external_lex_state = 12}, + [2422] = {.lex_state = 52, .external_lex_state = 12}, + [2423] = {.lex_state = 52, .external_lex_state = 12}, + [2424] = {.lex_state = 52, .external_lex_state = 15}, + [2425] = {.lex_state = 52, .external_lex_state = 14}, + [2426] = {.lex_state = 52, .external_lex_state = 12}, + [2427] = {.lex_state = 52, .external_lex_state = 12}, + [2428] = {.lex_state = 52, .external_lex_state = 12}, + [2429] = {.lex_state = 52, .external_lex_state = 14}, + [2430] = {.lex_state = 52, .external_lex_state = 13}, + [2431] = {.lex_state = 52, .external_lex_state = 18}, + [2432] = {.lex_state = 52, .external_lex_state = 15}, + [2433] = {.lex_state = 52, .external_lex_state = 11}, + [2434] = {.lex_state = 52, .external_lex_state = 13}, + [2435] = {.lex_state = 52, .external_lex_state = 11}, + [2436] = {.lex_state = 52, .external_lex_state = 15}, + [2437] = {.lex_state = 52, .external_lex_state = 15}, + [2438] = {.lex_state = 52, .external_lex_state = 15}, + [2439] = {.lex_state = 52, .external_lex_state = 15}, + [2440] = {.lex_state = 52, .external_lex_state = 11}, + [2441] = {.lex_state = 52, .external_lex_state = 15}, + [2442] = {.lex_state = 52, .external_lex_state = 14}, + [2443] = {.lex_state = 52, .external_lex_state = 18}, + [2444] = {.lex_state = 52, .external_lex_state = 14}, + [2445] = {.lex_state = 8, .external_lex_state = 15}, + [2446] = {.lex_state = 52, .external_lex_state = 12}, + [2447] = {.lex_state = 8, .external_lex_state = 15}, + [2448] = {.lex_state = 8, .external_lex_state = 15}, + [2449] = {.lex_state = 8, .external_lex_state = 15}, + [2450] = {.lex_state = 52, .external_lex_state = 15}, + [2451] = {.lex_state = 52, .external_lex_state = 11}, + [2452] = {.lex_state = 52, .external_lex_state = 13}, + [2453] = {.lex_state = 52, .external_lex_state = 15}, + [2454] = {.lex_state = 52, .external_lex_state = 15}, + [2455] = {.lex_state = 3, .external_lex_state = 13}, + [2456] = {.lex_state = 52, .external_lex_state = 14}, + [2457] = {.lex_state = 52, .external_lex_state = 13}, + [2458] = {.lex_state = 52, .external_lex_state = 14}, + [2459] = {.lex_state = 52, .external_lex_state = 11}, + [2460] = {.lex_state = 52, .external_lex_state = 14}, + [2461] = {.lex_state = 52, .external_lex_state = 13}, + [2462] = {.lex_state = 52, .external_lex_state = 15}, + [2463] = {.lex_state = 52, .external_lex_state = 12}, + [2464] = {.lex_state = 52, .external_lex_state = 11}, + [2465] = {.lex_state = 52, .external_lex_state = 15}, + [2466] = {.lex_state = 52, .external_lex_state = 14}, + [2467] = {.lex_state = 52, .external_lex_state = 14}, + [2468] = {.lex_state = 52, .external_lex_state = 14}, + [2469] = {.lex_state = 52, .external_lex_state = 18}, + [2470] = {.lex_state = 52, .external_lex_state = 15}, + [2471] = {.lex_state = 52, .external_lex_state = 12}, + [2472] = {.lex_state = 52, .external_lex_state = 12}, + [2473] = {.lex_state = 52, .external_lex_state = 13}, + [2474] = {.lex_state = 52, .external_lex_state = 14}, + [2475] = {.lex_state = 52, .external_lex_state = 15}, + [2476] = {.lex_state = 52, .external_lex_state = 14}, + [2477] = {.lex_state = 52, .external_lex_state = 15}, + [2478] = {.lex_state = 52, .external_lex_state = 15}, + [2479] = {.lex_state = 52, .external_lex_state = 14}, + [2480] = {.lex_state = 52, .external_lex_state = 12}, + [2481] = {.lex_state = 52, .external_lex_state = 11}, + [2482] = {.lex_state = 52, .external_lex_state = 14}, + [2483] = {.lex_state = 52, .external_lex_state = 14}, + [2484] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2485] = {.lex_state = 52, .external_lex_state = 11}, + [2486] = {.lex_state = 52, .external_lex_state = 15}, + [2487] = {.lex_state = 52, .external_lex_state = 12}, + [2488] = {.lex_state = 52, .external_lex_state = 17}, + [2489] = {.lex_state = 52, .external_lex_state = 15}, + [2490] = {.lex_state = 52, .external_lex_state = 11}, + [2491] = {.lex_state = 52, .external_lex_state = 17}, + [2492] = {.lex_state = 52, .external_lex_state = 17}, + [2493] = {.lex_state = 52, .external_lex_state = 17}, + [2494] = {.lex_state = 9, .external_lex_state = 15}, + [2495] = {.lex_state = 52, .external_lex_state = 17}, + [2496] = {.lex_state = 52, .external_lex_state = 15}, + [2497] = {.lex_state = 52, .external_lex_state = 15}, + [2498] = {.lex_state = 52, .external_lex_state = 13}, + [2499] = {.lex_state = 52, .external_lex_state = 17}, + [2500] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2501] = {.lex_state = 52, .external_lex_state = 17}, + [2502] = {.lex_state = 52, .external_lex_state = 15}, + [2503] = {.lex_state = 52, .external_lex_state = 15}, + [2504] = {.lex_state = 52, .external_lex_state = 17}, + [2505] = {.lex_state = 52, .external_lex_state = 11}, + [2506] = {.lex_state = 52, .external_lex_state = 15}, + [2507] = {.lex_state = 52, .external_lex_state = 14}, + [2508] = {.lex_state = 52, .external_lex_state = 15}, + [2509] = {.lex_state = 52, .external_lex_state = 11}, + [2510] = {.lex_state = 52, .external_lex_state = 15}, + [2511] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2512] = {.lex_state = 52, .external_lex_state = 14}, + [2513] = {.lex_state = 52, .external_lex_state = 15}, + [2514] = {.lex_state = 52, .external_lex_state = 15}, + [2515] = {.lex_state = 52, .external_lex_state = 15}, + [2516] = {.lex_state = 52, .external_lex_state = 14}, + [2517] = {.lex_state = 52, .external_lex_state = 15}, + [2518] = {.lex_state = 52, .external_lex_state = 15}, + [2519] = {.lex_state = 52, .external_lex_state = 17}, + [2520] = {.lex_state = 52, .external_lex_state = 17}, + [2521] = {.lex_state = 52, .external_lex_state = 15}, + [2522] = {.lex_state = 52, .external_lex_state = 15}, + [2523] = {.lex_state = 52, .external_lex_state = 11}, + [2524] = {.lex_state = 52, .external_lex_state = 17}, + [2525] = {.lex_state = 52, .external_lex_state = 13}, + [2526] = {.lex_state = 52, .external_lex_state = 13}, + [2527] = {.lex_state = 52, .external_lex_state = 12}, + [2528] = {.lex_state = 52, .external_lex_state = 17}, + [2529] = {.lex_state = 52, .external_lex_state = 13}, + [2530] = {.lex_state = 9, .external_lex_state = 15}, + [2531] = {.lex_state = 52, .external_lex_state = 14}, + [2532] = {.lex_state = 52, .external_lex_state = 17}, + [2533] = {.lex_state = 52, .external_lex_state = 17}, + [2534] = {.lex_state = 52, .external_lex_state = 11}, + [2535] = {.lex_state = 52, .external_lex_state = 11}, + [2536] = {.lex_state = 52, .external_lex_state = 11}, + [2537] = {.lex_state = 52, .external_lex_state = 17}, + [2538] = {.lex_state = 52, .external_lex_state = 11}, + [2539] = {.lex_state = 52, .external_lex_state = 12}, [2540] = {.lex_state = 9, .external_lex_state = 15}, - [2541] = {.lex_state = 7, .external_lex_state = 18}, - [2542] = {.lex_state = 54, .external_lex_state = 15}, - [2543] = {.lex_state = 54, .external_lex_state = 14}, - [2544] = {.lex_state = 7, .external_lex_state = 18}, - [2545] = {.lex_state = 54, .external_lex_state = 14}, - [2546] = {.lex_state = 54, .external_lex_state = 15}, - [2547] = {.lex_state = 54, .external_lex_state = 13}, - [2548] = {.lex_state = 54, .external_lex_state = 9}, - [2549] = {.lex_state = 54, .external_lex_state = 9}, - [2550] = {.lex_state = 54, .external_lex_state = 15}, - [2551] = {.lex_state = 54, .external_lex_state = 15}, - [2552] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2553] = {.lex_state = 54, .external_lex_state = 13}, - [2554] = {.lex_state = 54, .external_lex_state = 13}, - [2555] = {.lex_state = 9, .external_lex_state = 15}, - [2556] = {.lex_state = 9, .external_lex_state = 15}, - [2557] = {.lex_state = 54, .external_lex_state = 14}, - [2558] = {.lex_state = 9, .external_lex_state = 15}, - [2559] = {.lex_state = 9, .external_lex_state = 15}, - [2560] = {.lex_state = 54, .external_lex_state = 9}, - [2561] = {.lex_state = 54, .external_lex_state = 13}, - [2562] = {.lex_state = 7, .external_lex_state = 18}, - [2563] = {.lex_state = 54, .external_lex_state = 9}, - [2564] = {.lex_state = 54, .external_lex_state = 12}, - [2565] = {.lex_state = 54, .external_lex_state = 15}, - [2566] = {.lex_state = 54, .external_lex_state = 15}, - [2567] = {.lex_state = 7, .external_lex_state = 18}, - [2568] = {.lex_state = 7, .external_lex_state = 18}, - [2569] = {.lex_state = 7, .external_lex_state = 18}, - [2570] = {.lex_state = 54, .external_lex_state = 13}, - [2571] = {.lex_state = 9, .external_lex_state = 15}, - [2572] = {.lex_state = 54, .external_lex_state = 14}, - [2573] = {.lex_state = 9, .external_lex_state = 15}, - [2574] = {.lex_state = 7, .external_lex_state = 18}, - [2575] = {.lex_state = 54, .external_lex_state = 9}, - [2576] = {.lex_state = 54, .external_lex_state = 14}, - [2577] = {.lex_state = 7, .external_lex_state = 18}, - [2578] = {.lex_state = 7, .external_lex_state = 18}, - [2579] = {.lex_state = 54, .external_lex_state = 15}, - [2580] = {.lex_state = 9, .external_lex_state = 15}, - [2581] = {.lex_state = 54, .external_lex_state = 13}, - [2582] = {.lex_state = 54, .external_lex_state = 15}, - [2583] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2584] = {.lex_state = 54, .external_lex_state = 9}, - [2585] = {.lex_state = 7, .external_lex_state = 18}, - [2586] = {.lex_state = 54, .external_lex_state = 13}, - [2587] = {.lex_state = 54, .external_lex_state = 15}, - [2588] = {.lex_state = 54, .external_lex_state = 15}, - [2589] = {.lex_state = 54, .external_lex_state = 15}, - [2590] = {.lex_state = 9, .external_lex_state = 15}, - [2591] = {.lex_state = 54, .external_lex_state = 15}, - [2592] = {.lex_state = 54, .external_lex_state = 14}, - [2593] = {.lex_state = 54, .external_lex_state = 12}, - [2594] = {.lex_state = 54, .external_lex_state = 14}, - [2595] = {.lex_state = 4, .external_lex_state = 15}, - [2596] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2597] = {.lex_state = 54, .external_lex_state = 12}, - [2598] = {.lex_state = 54, .external_lex_state = 14}, - [2599] = {.lex_state = 54, .external_lex_state = 14}, - [2600] = {.lex_state = 54, .external_lex_state = 15}, - [2601] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2602] = {.lex_state = 54, .external_lex_state = 13}, - [2603] = {.lex_state = 54, .external_lex_state = 12}, - [2604] = {.lex_state = 54, .external_lex_state = 12}, - [2605] = {.lex_state = 54, .external_lex_state = 15}, - [2606] = {.lex_state = 54, .external_lex_state = 12}, - [2607] = {.lex_state = 54, .external_lex_state = 15}, - [2608] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2609] = {.lex_state = 54, .external_lex_state = 13}, - [2610] = {.lex_state = 54, .external_lex_state = 14}, - [2611] = {.lex_state = 54, .external_lex_state = 13}, - [2612] = {.lex_state = 54, .external_lex_state = 13}, - [2613] = {.lex_state = 54, .external_lex_state = 15}, - [2614] = {.lex_state = 54, .external_lex_state = 12}, - [2615] = {.lex_state = 54, .external_lex_state = 12}, - [2616] = {.lex_state = 54, .external_lex_state = 14}, - [2617] = {.lex_state = 54, .external_lex_state = 14}, - [2618] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2619] = {.lex_state = 54, .external_lex_state = 12}, - [2620] = {.lex_state = 54, .external_lex_state = 12}, - [2621] = {.lex_state = 54, .external_lex_state = 15}, - [2622] = {.lex_state = 54, .external_lex_state = 12}, - [2623] = {.lex_state = 54, .external_lex_state = 15}, - [2624] = {.lex_state = 54, .external_lex_state = 15}, - [2625] = {.lex_state = 54, .external_lex_state = 12}, - [2626] = {.lex_state = 4, .external_lex_state = 15}, - [2627] = {.lex_state = 54, .external_lex_state = 15}, - [2628] = {.lex_state = 54, .external_lex_state = 14}, - [2629] = {.lex_state = 54, .external_lex_state = 14}, - [2630] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2631] = {.lex_state = 54, .external_lex_state = 14}, - [2632] = {.lex_state = 54, .external_lex_state = 12}, - [2633] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2634] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2635] = {.lex_state = 54, .external_lex_state = 12}, - [2636] = {.lex_state = 54, .external_lex_state = 14}, - [2637] = {.lex_state = 7, .external_lex_state = 15}, - [2638] = {.lex_state = 54, .external_lex_state = 15}, - [2639] = {.lex_state = 4, .external_lex_state = 15}, - [2640] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2641] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2642] = {.lex_state = 54, .external_lex_state = 14}, - [2643] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2644] = {.lex_state = 7, .external_lex_state = 15}, - [2645] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2646] = {.lex_state = 4, .external_lex_state = 15}, - [2647] = {.lex_state = 54, .external_lex_state = 15}, - [2648] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2649] = {.lex_state = 7, .external_lex_state = 15}, - [2650] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2651] = {.lex_state = 54, .external_lex_state = 12}, - [2652] = {.lex_state = 54, .external_lex_state = 12}, - [2653] = {.lex_state = 54, .external_lex_state = 14}, - [2654] = {.lex_state = 54, .external_lex_state = 14}, - [2655] = {.lex_state = 7, .external_lex_state = 15}, - [2656] = {.lex_state = 54, .external_lex_state = 14}, - [2657] = {.lex_state = 54, .external_lex_state = 14}, - [2658] = {.lex_state = 54, .external_lex_state = 13}, - [2659] = {.lex_state = 54, .external_lex_state = 15}, - [2660] = {.lex_state = 54, .external_lex_state = 12}, - [2661] = {.lex_state = 54, .external_lex_state = 12}, - [2662] = {.lex_state = 54, .external_lex_state = 13}, - [2663] = {.lex_state = 54, .external_lex_state = 13}, - [2664] = {.lex_state = 54, .external_lex_state = 12}, - [2665] = {.lex_state = 54, .external_lex_state = 15}, - [2666] = {.lex_state = 54, .external_lex_state = 15}, - [2667] = {.lex_state = 54, .external_lex_state = 12}, - [2668] = {.lex_state = 54, .external_lex_state = 14}, - [2669] = {.lex_state = 54, .external_lex_state = 13}, - [2670] = {.lex_state = 54, .external_lex_state = 15}, - [2671] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2672] = {.lex_state = 54, .external_lex_state = 13}, - [2673] = {.lex_state = 54, .external_lex_state = 15}, - [2674] = {.lex_state = 7, .external_lex_state = 15}, - [2675] = {.lex_state = 54, .external_lex_state = 12}, - [2676] = {.lex_state = 54, .external_lex_state = 12}, - [2677] = {.lex_state = 54, .external_lex_state = 12}, - [2678] = {.lex_state = 54, .external_lex_state = 15}, - [2679] = {.lex_state = 54, .external_lex_state = 15}, - [2680] = {.lex_state = 7, .external_lex_state = 15}, - [2681] = {.lex_state = 54, .external_lex_state = 14}, - [2682] = {.lex_state = 54, .external_lex_state = 15}, - [2683] = {.lex_state = 54, .external_lex_state = 12}, - [2684] = {.lex_state = 54, .external_lex_state = 12}, - [2685] = {.lex_state = 54, .external_lex_state = 15}, - [2686] = {.lex_state = 54, .external_lex_state = 15}, - [2687] = {.lex_state = 54, .external_lex_state = 15}, - [2688] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2689] = {.lex_state = 7, .external_lex_state = 15}, - [2690] = {.lex_state = 54, .external_lex_state = 15}, - [2691] = {.lex_state = 54, .external_lex_state = 15}, - [2692] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2693] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2694] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2695] = {.lex_state = 54, .external_lex_state = 12}, - [2696] = {.lex_state = 54, .external_lex_state = 12}, - [2697] = {.lex_state = 54, .external_lex_state = 14}, - [2698] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2699] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2700] = {.lex_state = 54, .external_lex_state = 14}, - [2701] = {.lex_state = 54, .external_lex_state = 15}, - [2702] = {.lex_state = 54, .external_lex_state = 12}, - [2703] = {.lex_state = 54, .external_lex_state = 13}, - [2704] = {.lex_state = 7, .external_lex_state = 15}, - [2705] = {.lex_state = 54, .external_lex_state = 13}, - [2706] = {.lex_state = 54, .external_lex_state = 13}, - [2707] = {.lex_state = 54, .external_lex_state = 12}, - [2708] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2709] = {.lex_state = 54, .external_lex_state = 12}, - [2710] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2711] = {.lex_state = 54, .external_lex_state = 12}, - [2712] = {.lex_state = 4, .external_lex_state = 15}, - [2713] = {.lex_state = 54, .external_lex_state = 14}, - [2714] = {.lex_state = 7, .external_lex_state = 15}, - [2715] = {.lex_state = 54, .external_lex_state = 12}, - [2716] = {.lex_state = 7, .external_lex_state = 15}, - [2717] = {.lex_state = 54, .external_lex_state = 12}, - [2718] = {.lex_state = 54, .external_lex_state = 15}, - [2719] = {.lex_state = 54, .external_lex_state = 12}, - [2720] = {.lex_state = 54, .external_lex_state = 14}, - [2721] = {.lex_state = 54, .external_lex_state = 14}, - [2722] = {.lex_state = 54, .external_lex_state = 12}, - [2723] = {.lex_state = 54, .external_lex_state = 12}, - [2724] = {.lex_state = 4, .external_lex_state = 15}, - [2725] = {.lex_state = 54, .external_lex_state = 13}, - [2726] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2727] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2728] = {.lex_state = 7, .external_lex_state = 15}, - [2729] = {.lex_state = 54, .external_lex_state = 14}, - [2730] = {.lex_state = 54, .external_lex_state = 14}, - [2731] = {.lex_state = 54, .external_lex_state = 13}, - [2732] = {.lex_state = 54, .external_lex_state = 15}, - [2733] = {.lex_state = 54, .external_lex_state = 13}, - [2734] = {.lex_state = 54, .external_lex_state = 13}, - [2735] = {.lex_state = 54, .external_lex_state = 15}, - [2736] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2737] = {.lex_state = 54, .external_lex_state = 12}, - [2738] = {.lex_state = 54, .external_lex_state = 14}, - [2739] = {.lex_state = 54, .external_lex_state = 15}, - [2740] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2741] = {.lex_state = 54, .external_lex_state = 14}, - [2742] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2743] = {.lex_state = 54, .external_lex_state = 12}, - [2744] = {.lex_state = 54, .external_lex_state = 14}, - [2745] = {.lex_state = 54, .external_lex_state = 12}, - [2746] = {.lex_state = 54, .external_lex_state = 14}, - [2747] = {.lex_state = 54, .external_lex_state = 13}, - [2748] = {.lex_state = 54, .external_lex_state = 15}, - [2749] = {.lex_state = 54, .external_lex_state = 15}, - [2750] = {.lex_state = 54, .external_lex_state = 13}, - [2751] = {.lex_state = 54, .external_lex_state = 15}, - [2752] = {.lex_state = 54, .external_lex_state = 15}, - [2753] = {.lex_state = 7, .external_lex_state = 15}, - [2754] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2755] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2756] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2757] = {.lex_state = 54, .external_lex_state = 12}, - [2758] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2759] = {.lex_state = 54, .external_lex_state = 15}, - [2760] = {.lex_state = 7, .external_lex_state = 15}, - [2761] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2762] = {.lex_state = 54, .external_lex_state = 14}, - [2763] = {.lex_state = 54, .external_lex_state = 15}, - [2764] = {.lex_state = 7, .external_lex_state = 15}, - [2765] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2766] = {.lex_state = 54, .external_lex_state = 14}, - [2767] = {.lex_state = 54, .external_lex_state = 13}, - [2768] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2769] = {.lex_state = 54, .external_lex_state = 15}, - [2770] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2771] = {.lex_state = 54, .external_lex_state = 13}, - [2772] = {.lex_state = 4, .external_lex_state = 15}, - [2773] = {.lex_state = 54, .external_lex_state = 12}, - [2774] = {.lex_state = 54, .external_lex_state = 12}, - [2775] = {.lex_state = 54, .external_lex_state = 15}, - [2776] = {.lex_state = 54, .external_lex_state = 14}, - [2777] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2778] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2779] = {.lex_state = 54, .external_lex_state = 15}, - [2780] = {.lex_state = 7, .external_lex_state = 15}, - [2781] = {.lex_state = 7, .external_lex_state = 15}, - [2782] = {.lex_state = 7, .external_lex_state = 15}, - [2783] = {.lex_state = 54, .external_lex_state = 14}, - [2784] = {.lex_state = 7, .external_lex_state = 15}, - [2785] = {.lex_state = 7, .external_lex_state = 15}, - [2786] = {.lex_state = 54, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2787] = {.lex_state = 4, .external_lex_state = 15}, - [2788] = {.lex_state = 54, .external_lex_state = 13}, + [2541] = {.lex_state = 52, .external_lex_state = 11}, + [2542] = {.lex_state = 52, .external_lex_state = 14}, + [2543] = {.lex_state = 9, .external_lex_state = 15}, + [2544] = {.lex_state = 52, .external_lex_state = 14}, + [2545] = {.lex_state = 52, .external_lex_state = 12}, + [2546] = {.lex_state = 52, .external_lex_state = 14}, + [2547] = {.lex_state = 52, .external_lex_state = 11}, + [2548] = {.lex_state = 9, .external_lex_state = 15}, + [2549] = {.lex_state = 52, .external_lex_state = 14}, + [2550] = {.lex_state = 9, .external_lex_state = 15}, + [2551] = {.lex_state = 9, .external_lex_state = 15}, + [2552] = {.lex_state = 9, .external_lex_state = 15}, + [2553] = {.lex_state = 9, .external_lex_state = 15}, + [2554] = {.lex_state = 52, .external_lex_state = 14}, + [2555] = {.lex_state = 52, .external_lex_state = 11}, + [2556] = {.lex_state = 52, .external_lex_state = 15}, + [2557] = {.lex_state = 52, .external_lex_state = 11}, + [2558] = {.lex_state = 52, .external_lex_state = 12}, + [2559] = {.lex_state = 52, .external_lex_state = 11}, + [2560] = {.lex_state = 52, .external_lex_state = 17}, + [2561] = {.lex_state = 9, .external_lex_state = 15}, + [2562] = {.lex_state = 52, .external_lex_state = 17}, + [2563] = {.lex_state = 52, .external_lex_state = 11}, + [2564] = {.lex_state = 52, .external_lex_state = 14}, + [2565] = {.lex_state = 52, .external_lex_state = 12}, + [2566] = {.lex_state = 52, .external_lex_state = 11}, + [2567] = {.lex_state = 52, .external_lex_state = 15}, + [2568] = {.lex_state = 52, .external_lex_state = 14}, + [2569] = {.lex_state = 52, .external_lex_state = 12}, + [2570] = {.lex_state = 52, .external_lex_state = 12}, + [2571] = {.lex_state = 52, .external_lex_state = 13}, + [2572] = {.lex_state = 52, .external_lex_state = 15}, + [2573] = {.lex_state = 52, .external_lex_state = 11}, + [2574] = {.lex_state = 52, .external_lex_state = 12}, + [2575] = {.lex_state = 52, .external_lex_state = 17}, + [2576] = {.lex_state = 52, .external_lex_state = 15}, + [2577] = {.lex_state = 52, .external_lex_state = 14}, + [2578] = {.lex_state = 52, .external_lex_state = 15}, + [2579] = {.lex_state = 52, .external_lex_state = 15}, + [2580] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2581] = {.lex_state = 52, .external_lex_state = 14}, + [2582] = {.lex_state = 52, .external_lex_state = 13}, + [2583] = {.lex_state = 52, .external_lex_state = 14}, + [2584] = {.lex_state = 52, .external_lex_state = 14}, + [2585] = {.lex_state = 4, .external_lex_state = 15}, + [2586] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2587] = {.lex_state = 52, .external_lex_state = 15}, + [2588] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2589] = {.lex_state = 52, .external_lex_state = 14}, + [2590] = {.lex_state = 52, .external_lex_state = 14}, + [2591] = {.lex_state = 52, .external_lex_state = 12}, + [2592] = {.lex_state = 52, .external_lex_state = 12}, + [2593] = {.lex_state = 52, .external_lex_state = 13}, + [2594] = {.lex_state = 52, .external_lex_state = 15}, + [2595] = {.lex_state = 52, .external_lex_state = 14}, + [2596] = {.lex_state = 52, .external_lex_state = 13}, + [2597] = {.lex_state = 52, .external_lex_state = 15}, + [2598] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2599] = {.lex_state = 52, .external_lex_state = 14}, + [2600] = {.lex_state = 52, .external_lex_state = 14}, + [2601] = {.lex_state = 52, .external_lex_state = 12}, + [2602] = {.lex_state = 52, .external_lex_state = 14}, + [2603] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2604] = {.lex_state = 52, .external_lex_state = 13}, + [2605] = {.lex_state = 52, .external_lex_state = 13}, + [2606] = {.lex_state = 52, .external_lex_state = 15}, + [2607] = {.lex_state = 52, .external_lex_state = 14}, + [2608] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2609] = {.lex_state = 52, .external_lex_state = 13}, + [2610] = {.lex_state = 52, .external_lex_state = 15}, + [2611] = {.lex_state = 52, .external_lex_state = 15}, + [2612] = {.lex_state = 52, .external_lex_state = 13}, + [2613] = {.lex_state = 52, .external_lex_state = 15}, + [2614] = {.lex_state = 52, .external_lex_state = 12}, + [2615] = {.lex_state = 52, .external_lex_state = 14}, + [2616] = {.lex_state = 4, .external_lex_state = 15}, + [2617] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2618] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2619] = {.lex_state = 52, .external_lex_state = 15}, + [2620] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2621] = {.lex_state = 52, .external_lex_state = 13}, + [2622] = {.lex_state = 52, .external_lex_state = 14}, + [2623] = {.lex_state = 52, .external_lex_state = 15}, + [2624] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2625] = {.lex_state = 52, .external_lex_state = 15}, + [2626] = {.lex_state = 52, .external_lex_state = 14}, + [2627] = {.lex_state = 52, .external_lex_state = 15}, + [2628] = {.lex_state = 52, .external_lex_state = 13}, + [2629] = {.lex_state = 52, .external_lex_state = 13}, + [2630] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2631] = {.lex_state = 52, .external_lex_state = 15}, + [2632] = {.lex_state = 52, .external_lex_state = 13}, + [2633] = {.lex_state = 52, .external_lex_state = 15}, + [2634] = {.lex_state = 52, .external_lex_state = 15}, + [2635] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2636] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2637] = {.lex_state = 52, .external_lex_state = 15}, + [2638] = {.lex_state = 4, .external_lex_state = 15}, + [2639] = {.lex_state = 52, .external_lex_state = 15}, + [2640] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2641] = {.lex_state = 52, .external_lex_state = 14}, + [2642] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2643] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2644] = {.lex_state = 52, .external_lex_state = 13}, + [2645] = {.lex_state = 4, .external_lex_state = 15}, + [2646] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2647] = {.lex_state = 52, .external_lex_state = 14}, + [2648] = {.lex_state = 52, .external_lex_state = 12}, + [2649] = {.lex_state = 52, .external_lex_state = 15}, + [2650] = {.lex_state = 4, .external_lex_state = 15}, + [2651] = {.lex_state = 52, .external_lex_state = 13}, + [2652] = {.lex_state = 52, .external_lex_state = 15}, + [2653] = {.lex_state = 52, .external_lex_state = 14}, + [2654] = {.lex_state = 52, .external_lex_state = 13}, + [2655] = {.lex_state = 52, .external_lex_state = 14}, + [2656] = {.lex_state = 52, .external_lex_state = 15}, + [2657] = {.lex_state = 52, .external_lex_state = 12}, + [2658] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2659] = {.lex_state = 52, .external_lex_state = 14}, + [2660] = {.lex_state = 52, .external_lex_state = 13}, + [2661] = {.lex_state = 52, .external_lex_state = 12}, + [2662] = {.lex_state = 52, .external_lex_state = 15}, + [2663] = {.lex_state = 52, .external_lex_state = 15}, + [2664] = {.lex_state = 52, .external_lex_state = 12}, + [2665] = {.lex_state = 52, .external_lex_state = 13}, + [2666] = {.lex_state = 52, .external_lex_state = 12}, + [2667] = {.lex_state = 52, .external_lex_state = 15}, + [2668] = {.lex_state = 52, .external_lex_state = 15}, + [2669] = {.lex_state = 52, .external_lex_state = 15}, + [2670] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2671] = {.lex_state = 52, .external_lex_state = 15}, + [2672] = {.lex_state = 52, .external_lex_state = 13}, + [2673] = {.lex_state = 52, .external_lex_state = 15}, + [2674] = {.lex_state = 52, .external_lex_state = 15}, + [2675] = {.lex_state = 52, .external_lex_state = 15}, + [2676] = {.lex_state = 52, .external_lex_state = 13}, + [2677] = {.lex_state = 52, .external_lex_state = 15}, + [2678] = {.lex_state = 52, .external_lex_state = 12}, + [2679] = {.lex_state = 52, .external_lex_state = 15}, + [2680] = {.lex_state = 52, .external_lex_state = 15}, + [2681] = {.lex_state = 52, .external_lex_state = 14}, + [2682] = {.lex_state = 52, .external_lex_state = 12}, + [2683] = {.lex_state = 52, .external_lex_state = 13}, + [2684] = {.lex_state = 52, .external_lex_state = 15}, + [2685] = {.lex_state = 52, .external_lex_state = 12}, + [2686] = {.lex_state = 52, .external_lex_state = 12}, + [2687] = {.lex_state = 52, .external_lex_state = 13}, + [2688] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2689] = {.lex_state = 52, .external_lex_state = 12}, + [2690] = {.lex_state = 52, .external_lex_state = 15}, + [2691] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2692] = {.lex_state = 52, .external_lex_state = 13}, + [2693] = {.lex_state = 52, .external_lex_state = 14}, + [2694] = {.lex_state = 52, .external_lex_state = 15}, + [2695] = {.lex_state = 52, .external_lex_state = 15}, + [2696] = {.lex_state = 52, .external_lex_state = 13}, + [2697] = {.lex_state = 52, .external_lex_state = 12}, + [2698] = {.lex_state = 4, .external_lex_state = 15}, + [2699] = {.lex_state = 52, .external_lex_state = 13}, + [2700] = {.lex_state = 52, .external_lex_state = 12}, + [2701] = {.lex_state = 52, .external_lex_state = 14}, + [2702] = {.lex_state = 52, .external_lex_state = 13}, + [2703] = {.lex_state = 52, .external_lex_state = 15}, + [2704] = {.lex_state = 52, .external_lex_state = 13}, + [2705] = {.lex_state = 52, .external_lex_state = 15}, + [2706] = {.lex_state = 52, .external_lex_state = 13}, + [2707] = {.lex_state = 52, .external_lex_state = 15}, + [2708] = {.lex_state = 52, .external_lex_state = 13}, + [2709] = {.lex_state = 52, .external_lex_state = 14}, + [2710] = {.lex_state = 52, .external_lex_state = 13}, + [2711] = {.lex_state = 52, .external_lex_state = 15}, + [2712] = {.lex_state = 52, .external_lex_state = 14}, + [2713] = {.lex_state = 52, .external_lex_state = 13}, + [2714] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2715] = {.lex_state = 52, .external_lex_state = 14}, + [2716] = {.lex_state = 4, .external_lex_state = 15}, + [2717] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2718] = {.lex_state = 52, .external_lex_state = 12}, + [2719] = {.lex_state = 52, .external_lex_state = 12}, + [2720] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2721] = {.lex_state = 52, .external_lex_state = 13}, + [2722] = {.lex_state = 52, .external_lex_state = 15}, + [2723] = {.lex_state = 52, .external_lex_state = 13}, + [2724] = {.lex_state = 52, .external_lex_state = 13}, + [2725] = {.lex_state = 52, .external_lex_state = 13}, + [2726] = {.lex_state = 52, .external_lex_state = 14}, + [2727] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2728] = {.lex_state = 52, .external_lex_state = 15}, + [2729] = {.lex_state = 4, .external_lex_state = 15}, + [2730] = {.lex_state = 52, .external_lex_state = 13}, + [2731] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2732] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2733] = {.lex_state = 52, .external_lex_state = 14}, + [2734] = {.lex_state = 52, .external_lex_state = 13}, + [2735] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2736] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2737] = {.lex_state = 52, .external_lex_state = 14}, + [2738] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2739] = {.lex_state = 52, .external_lex_state = 14}, + [2740] = {.lex_state = 52, .external_lex_state = 13}, + [2741] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2742] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2743] = {.lex_state = 52, .external_lex_state = 14}, + [2744] = {.lex_state = 52, .external_lex_state = 13}, + [2745] = {.lex_state = 52, .external_lex_state = 15}, + [2746] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2747] = {.lex_state = 52, .external_lex_state = 15}, + [2748] = {.lex_state = 52, .external_lex_state = 13}, + [2749] = {.lex_state = 52, .external_lex_state = 15}, + [2750] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2751] = {.lex_state = 52, .external_lex_state = 15}, + [2752] = {.lex_state = 52, .external_lex_state = 14}, + [2753] = {.lex_state = 52, .external_lex_state = 12}, + [2754] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2755] = {.lex_state = 52, .external_lex_state = 15}, + [2756] = {.lex_state = 52, .external_lex_state = 14}, + [2757] = {.lex_state = 52, .external_lex_state = 13}, + [2758] = {.lex_state = 52, .external_lex_state = 13}, + [2759] = {.lex_state = 52, .external_lex_state = 14}, + [2760] = {.lex_state = 52, .external_lex_state = 15}, + [2761] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2762] = {.lex_state = 52, .external_lex_state = 15}, + [2763] = {.lex_state = 52, .external_lex_state = 14}, + [2764] = {.lex_state = 52, .external_lex_state = 15}, + [2765] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2766] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2767] = {.lex_state = 52, .external_lex_state = 15}, + [2768] = {.lex_state = 52, .external_lex_state = 15}, + [2769] = {.lex_state = 52, .external_lex_state = 15}, + [2770] = {.lex_state = 52, .external_lex_state = 15}, + [2771] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2772] = {.lex_state = 52, .external_lex_state = 15}, + [2773] = {.lex_state = 52, .external_lex_state = 15}, + [2774] = {.lex_state = 52, .external_lex_state = 12}, + [2775] = {.lex_state = 52, .external_lex_state = 12}, + [2776] = {.lex_state = 52, .external_lex_state = 15}, }; static const TSSymbol ts_reserved_words[16][MAX_RESERVED_WORD_SET_SIZE] = { @@ -10574,6 +10497,7 @@ static const TSSymbol ts_reserved_words[16][MAX_RESERVED_WORD_SET_SIZE] = { [11] = { anon_sym_as, anon_sym_in, + anon_sym_except, anon_sym_and, anon_sym_or, anon_sym_is, @@ -10798,72 +10722,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_end] = ACTIONS(1), }, [STATE(1)] = { - [sym_module] = STATE(2624), - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2433), - [sym_future_import_statement] = STATE(2433), - [sym_import_from_statement] = STATE(2433), - [sym_print_statement] = STATE(2433), - [sym_assert_statement] = STATE(2433), - [sym_expression_statement] = STATE(2433), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2433), - [sym_delete_statement] = STATE(2433), - [sym_raise_statement] = STATE(2433), - [sym_pass_statement] = STATE(2433), - [sym_break_statement] = STATE(2433), - [sym_continue_statement] = STATE(2433), - [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(2433), - [sym_nonlocal_statement] = STATE(2433), - [sym_exec_statement] = STATE(2433), - [sym_type_alias_statement] = STATE(2433), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1824), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1824), + [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), @@ -10912,72 +10836,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(2)] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(686), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), @@ -11026,72 +10950,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(3)] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(702), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), @@ -11140,72 +11064,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(4)] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(823), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), @@ -11254,72 +11178,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(5)] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(717), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), @@ -11368,72 +11292,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(6)] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(744), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), @@ -11482,72 +11406,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(7)] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(758), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), @@ -11596,72 +11520,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(8)] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(760), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), @@ -11710,72 +11634,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(9)] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(763), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), @@ -11824,72 +11748,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(10)] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(770), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), @@ -11938,72 +11862,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(11)] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(703), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), @@ -12052,72 +11976,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(12)] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(669), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), @@ -12166,72 +12090,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(13)] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(779), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), @@ -12276,76 +12200,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [STATE(14)] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(782), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), @@ -12394,72 +12318,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(15)] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(783), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), @@ -12508,72 +12432,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(16)] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(708), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), @@ -12622,72 +12546,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(17)] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(692), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), @@ -12736,72 +12660,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(18)] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(796), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), @@ -12850,72 +12774,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(19)] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(676), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(641), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12960,76 +12884,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [STATE(20)] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(677), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), @@ -13078,72 +13002,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(21)] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(800), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), @@ -13192,72 +13116,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(22)] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(697), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), @@ -13306,72 +13230,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(23)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(2574), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), @@ -13416,76 +13340,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(101), [sym_string_start] = ACTIONS(81), }, [STATE(24)] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(809), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), @@ -13534,72 +13458,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(25)] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(820), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), @@ -13648,72 +13572,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(26)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(2515), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), @@ -13758,76 +13682,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(101), [sym_string_start] = ACTIONS(81), }, [STATE(27)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(2530), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), @@ -13876,72 +13800,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(28)] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(829), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), @@ -13990,72 +13914,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(29)] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(680), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(648), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14100,76 +14024,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [STATE(30)] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(660), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), @@ -14218,72 +14142,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(31)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(2505), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), @@ -14328,76 +14252,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(101), [sym_string_start] = ACTIONS(81), }, [STATE(32)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(2541), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), @@ -14442,76 +14366,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(101), [sym_string_start] = ACTIONS(81), }, [STATE(33)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(2500), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), @@ -14556,76 +14480,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(101), [sym_string_start] = ACTIONS(81), }, [STATE(34)] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(1814), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(666), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14674,72 +14598,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(35)] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(724), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(620), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14784,76 +14708,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), }, [STATE(36)] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(728), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(622), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14898,76 +14822,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), }, [STATE(37)] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(805), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(653), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15012,76 +14936,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), }, [STATE(38)] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(731), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(654), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15126,76 +15050,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), }, [STATE(39)] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(736), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), @@ -15240,76 +15164,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(40)] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(746), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(417), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15354,26 +15278,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), }, [STATE(41)] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), + [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), @@ -15381,49 +15305,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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), + [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(1791), - [sym_block] = STATE(752), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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(1791), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15468,26 +15392,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(107), [sym_string_start] = ACTIONS(81), }, [STATE(42)] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), + [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), @@ -15495,49 +15419,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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), + [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(1791), - [sym_block] = STATE(691), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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(1791), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15582,26 +15506,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(107), [sym_string_start] = ACTIONS(81), }, [STATE(43)] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), + [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), @@ -15609,49 +15533,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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), + [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(1791), - [sym_block] = STATE(674), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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(1791), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15696,26 +15620,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(107), [sym_string_start] = ACTIONS(81), }, [STATE(44)] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), + [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), @@ -15723,49 +15647,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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), + [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(1791), - [sym_block] = STATE(795), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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(1791), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15810,26 +15734,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(107), [sym_string_start] = ACTIONS(81), }, [STATE(45)] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), + [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), @@ -15837,49 +15761,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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), + [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(1791), - [sym_block] = STATE(803), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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(1791), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15924,26 +15848,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(107), [sym_string_start] = ACTIONS(81), }, [STATE(46)] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), + [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), @@ -15951,49 +15875,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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), + [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(1791), + [sym_decorator] = STATE(1819), [sym_block] = STATE(812), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(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(1791), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16038,26 +15962,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(107), [sym_string_start] = ACTIONS(81), }, [STATE(47)] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), + [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), @@ -16065,49 +15989,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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), + [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(1791), - [sym_block] = STATE(710), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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(1791), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16152,26 +16076,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(107), [sym_string_start] = ACTIONS(81), }, [STATE(48)] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), + [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), @@ -16179,49 +16103,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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), + [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(1791), - [sym_block] = STATE(694), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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(1791), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16266,26 +16190,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(107), [sym_string_start] = ACTIONS(81), }, [STATE(49)] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), + [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), @@ -16293,49 +16217,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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), + [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(1791), - [sym_block] = STATE(721), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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(1791), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16380,26 +16304,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(107), [sym_string_start] = ACTIONS(81), }, [STATE(50)] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), + [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), @@ -16407,49 +16331,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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), + [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(1791), - [sym_block] = STATE(657), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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(1791), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16494,76 +16418,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), }, [STATE(51)] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(658), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), @@ -16608,26 +16532,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(111), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, [STATE(52)] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), + [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), @@ -16635,49 +16559,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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), + [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(1791), - [sym_block] = STATE(725), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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(1791), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16722,26 +16646,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(107), [sym_string_start] = ACTIONS(81), }, [STATE(53)] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), + [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), @@ -16749,49 +16673,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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), + [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(1791), - [sym_block] = STATE(706), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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(1791), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16836,26 +16760,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(107), [sym_string_start] = ACTIONS(81), }, [STATE(54)] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), + [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), @@ -16863,49 +16787,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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), + [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(1791), - [sym_block] = STATE(732), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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(1791), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16950,26 +16874,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(107), [sym_string_start] = ACTIONS(81), }, [STATE(55)] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), + [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), @@ -16977,49 +16901,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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), + [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(1791), - [sym_block] = STATE(740), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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(1791), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17064,26 +16988,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(107), [sym_string_start] = ACTIONS(81), }, [STATE(56)] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), + [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), @@ -17091,49 +17015,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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), + [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(1791), - [sym_block] = STATE(741), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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(1791), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17178,26 +17102,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(107), [sym_string_start] = ACTIONS(81), }, [STATE(57)] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), + [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), @@ -17205,49 +17129,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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), + [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(1791), - [sym_block] = STATE(665), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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(1791), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17292,368 +17216,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(107), [sym_string_start] = ACTIONS(81), }, [STATE(58)] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(666), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1791), - [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(111), - [sym_string_start] = ACTIONS(81), - }, - [STATE(59)] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(606), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1791), - [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(103), - [sym_string_start] = ACTIONS(81), - }, - [STATE(60)] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(1791), - [sym_block] = STATE(1827), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(1791), - [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), - }, - [STATE(61)] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), + [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), @@ -17661,49 +17243,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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), + [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(1791), - [sym_block] = STATE(611), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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(1791), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17748,75 +17330,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), }, - [STATE(62)] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1791), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), @@ -17861,189 +17444,190 @@ 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), }, - [STATE(63)] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2433), - [sym_future_import_statement] = STATE(2433), - [sym_import_from_statement] = STATE(2433), - [sym_print_statement] = STATE(2433), - [sym_assert_statement] = STATE(2433), - [sym_expression_statement] = STATE(2433), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2433), - [sym_delete_statement] = STATE(2433), - [sym_raise_statement] = STATE(2433), - [sym_pass_statement] = STATE(2433), - [sym_break_statement] = STATE(2433), - [sym_continue_statement] = STATE(2433), - [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(2433), - [sym_nonlocal_statement] = STATE(2433), - [sym_exec_statement] = STATE(2433), - [sym_type_alias_statement] = STATE(2433), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1824), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1824), - [ts_builtin_sym_end] = ACTIONS(115), - [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), + [STATE(60)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1819), + [sym_block] = STATE(765), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym_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_string_start] = ACTIONS(225), + [sym__dedent] = ACTIONS(107), + [sym_string_start] = ACTIONS(81), }, - [STATE(64)] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2433), - [sym_future_import_statement] = STATE(2433), - [sym_import_from_statement] = STATE(2433), - [sym_print_statement] = STATE(2433), - [sym_assert_statement] = STATE(2433), - [sym_expression_statement] = STATE(2433), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2433), - [sym_delete_statement] = STATE(2433), - [sym_raise_statement] = STATE(2433), - [sym_pass_statement] = STATE(2433), - [sym_break_statement] = STATE(2433), - [sym_continue_statement] = STATE(2433), - [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(2433), - [sym_nonlocal_statement] = STATE(2433), - [sym_exec_statement] = STATE(2433), - [sym_type_alias_statement] = STATE(2433), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1824), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1824), - [ts_builtin_sym_end] = ACTIONS(228), + [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), @@ -18057,19 +17641,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), @@ -18088,74 +17672,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(105), [sym_string_start] = ACTIONS(81), }, - [STATE(65)] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1791), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), @@ -18200,75 +17785,188 @@ 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(230), + [sym__dedent] = ACTIONS(111), [sym_string_start] = ACTIONS(81), }, - [STATE(66)] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1791), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_async] = ACTIONS(39), + [anon_sym_for] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_with] = ACTIONS(47), + [anon_sym_def] = ACTIONS(49), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_AT] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [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_string_start] = ACTIONS(81), + }, + [STATE(64)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1819), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1819), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18313,75 +18011,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(232), + [sym__dedent] = ACTIONS(115), [sym_string_start] = ACTIONS(81), }, + [STATE(65)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_if_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1819), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym_identifier] = ACTIONS(117), + [anon_sym_import] = ACTIONS(120), + [anon_sym_from] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(126), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_print] = ACTIONS(132), + [anon_sym_assert] = ACTIONS(135), + [anon_sym_return] = ACTIONS(138), + [anon_sym_del] = ACTIONS(141), + [anon_sym_raise] = ACTIONS(144), + [anon_sym_pass] = ACTIONS(147), + [anon_sym_break] = ACTIONS(150), + [anon_sym_continue] = ACTIONS(153), + [anon_sym_if] = ACTIONS(156), + [anon_sym_match] = ACTIONS(159), + [anon_sym_async] = ACTIONS(162), + [anon_sym_for] = ACTIONS(165), + [anon_sym_while] = ACTIONS(168), + [anon_sym_try] = ACTIONS(171), + [anon_sym_with] = ACTIONS(174), + [anon_sym_def] = ACTIONS(177), + [anon_sym_global] = ACTIONS(180), + [anon_sym_nonlocal] = ACTIONS(183), + [anon_sym_exec] = ACTIONS(186), + [anon_sym_type] = ACTIONS(189), + [anon_sym_class] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_AT] = ACTIONS(198), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(204), + [anon_sym_PLUS] = ACTIONS(201), + [anon_sym_not] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_lambda] = ACTIONS(210), + [anon_sym_yield] = ACTIONS(213), + [sym_ellipsis] = ACTIONS(216), + [sym_integer] = ACTIONS(219), + [sym_float] = ACTIONS(216), + [anon_sym_await] = ACTIONS(222), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [sym_none] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(225), + [sym_string_start] = ACTIONS(227), + }, + [STATE(66)] = { + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2406), + [sym_future_import_statement] = STATE(2406), + [sym_import_from_statement] = STATE(2406), + [sym_print_statement] = STATE(2406), + [sym_assert_statement] = STATE(2406), + [sym_expression_statement] = STATE(2406), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2406), + [sym_delete_statement] = STATE(2406), + [sym_raise_statement] = STATE(2406), + [sym_pass_statement] = STATE(2406), + [sym_break_statement] = STATE(2406), + [sym_continue_statement] = STATE(2406), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2406), + [sym_nonlocal_statement] = STATE(2406), + [sym_exec_statement] = STATE(2406), + [sym_type_alias_statement] = STATE(2406), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1817), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1817), + [ts_builtin_sym_end] = ACTIONS(225), + [sym_identifier] = ACTIONS(117), + [anon_sym_import] = ACTIONS(120), + [anon_sym_from] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(126), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_print] = ACTIONS(132), + [anon_sym_assert] = ACTIONS(135), + [anon_sym_return] = ACTIONS(138), + [anon_sym_del] = ACTIONS(141), + [anon_sym_raise] = ACTIONS(144), + [anon_sym_pass] = ACTIONS(147), + [anon_sym_break] = ACTIONS(150), + [anon_sym_continue] = ACTIONS(153), + [anon_sym_if] = ACTIONS(230), + [anon_sym_match] = ACTIONS(233), + [anon_sym_async] = ACTIONS(236), + [anon_sym_for] = ACTIONS(239), + [anon_sym_while] = ACTIONS(242), + [anon_sym_try] = ACTIONS(245), + [anon_sym_with] = ACTIONS(248), + [anon_sym_def] = ACTIONS(251), + [anon_sym_global] = ACTIONS(180), + [anon_sym_nonlocal] = ACTIONS(183), + [anon_sym_exec] = ACTIONS(186), + [anon_sym_type] = ACTIONS(189), + [anon_sym_class] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_AT] = ACTIONS(198), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(204), + [anon_sym_PLUS] = ACTIONS(201), + [anon_sym_not] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_lambda] = ACTIONS(210), + [anon_sym_yield] = ACTIONS(213), + [sym_ellipsis] = ACTIONS(216), + [sym_integer] = ACTIONS(219), + [sym_float] = ACTIONS(216), + [anon_sym_await] = ACTIONS(222), + [sym_true] = ACTIONS(219), + [sym_false] = ACTIONS(219), + [sym_none] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(227), + }, [STATE(67)] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1791), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), @@ -18426,75 +18350,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(257), [sym_string_start] = ACTIONS(81), }, [STATE(68)] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1791), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), @@ -18539,75 +18463,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(236), + [sym__dedent] = ACTIONS(259), [sym_string_start] = ACTIONS(81), }, [STATE(69)] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1791), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1791), + [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), @@ -18652,396 +18576,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(238), + [sym__dedent] = ACTIONS(261), [sym_string_start] = ACTIONS(81), }, [STATE(70)] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [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(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1791), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1791), - [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(240), - [anon_sym_match] = ACTIONS(243), - [anon_sym_async] = ACTIONS(246), - [anon_sym_for] = ACTIONS(249), - [anon_sym_while] = ACTIONS(252), - [anon_sym_try] = ACTIONS(255), - [anon_sym_with] = ACTIONS(258), - [anon_sym_def] = ACTIONS(261), - [anon_sym_global] = ACTIONS(180), - [anon_sym_nonlocal] = ACTIONS(183), - [anon_sym_exec] = ACTIONS(186), - [anon_sym_type] = ACTIONS(189), - [anon_sym_class] = ACTIONS(264), - [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_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__dedent] = ACTIONS(115), - [sym_string_start] = ACTIONS(225), + [sym__newline] = ACTIONS(265), + [sym_string_start] = ACTIONS(316), }, [STATE(71)] = { - [sym_named_expression] = STATE(1737), - [sym__named_expression_lhs] = STATE(2772), - [sym_type_parameter] = STATE(2096), - [sym_list_splat_pattern] = STATE(1300), - [sym_as_pattern] = STATE(1737), - [sym_expression] = STATE(1763), - [sym_primary_expression] = STATE(955), - [sym_not_operator] = STATE(1737), - [sym_boolean_operator] = STATE(1737), - [sym_binary_operator] = STATE(1392), - [sym_unary_operator] = STATE(1392), - [sym_comparison_operator] = STATE(1737), - [sym_lambda] = STATE(1737), - [sym_attribute] = STATE(1392), - [sym_subscript] = STATE(1392), - [sym_call] = STATE(1392), - [sym_type] = STATE(2181), - [sym_splat_type] = STATE(2083), - [sym_generic_type] = STATE(2083), - [sym_union_type] = STATE(2083), - [sym_constrained_type] = STATE(2083), - [sym_member_type] = STATE(2083), - [sym_list] = STATE(1392), - [sym_set] = STATE(1392), - [sym_tuple] = STATE(1392), - [sym_dictionary] = STATE(1392), - [sym_list_comprehension] = STATE(1392), - [sym_dictionary_comprehension] = STATE(1392), - [sym_set_comprehension] = STATE(1392), - [sym_generator_expression] = STATE(1392), - [sym_parenthesized_expression] = STATE(1392), - [sym_conditional_expression] = STATE(1737), - [sym_concatenated_string] = STATE(1392), - [sym_string] = STATE(1003), - [sym_await] = STATE(1392), - [sym_identifier] = ACTIONS(267), - [anon_sym_SEMI] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_COMMA] = ACTIONS(276), - [anon_sym_as] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(279), - [anon_sym_print] = ACTIONS(282), - [anon_sym_GT_GT] = ACTIONS(271), - [anon_sym_COLON_EQ] = ACTIONS(284), - [anon_sym_if] = ACTIONS(271), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_match] = ACTIONS(289), - [anon_sym_async] = ACTIONS(282), - [anon_sym_in] = ACTIONS(271), - [anon_sym_STAR_STAR] = ACTIONS(291), - [anon_sym_exec] = ACTIONS(282), - [anon_sym_type] = ACTIONS(294), - [anon_sym_EQ] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_DASH] = ACTIONS(300), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(300), - [anon_sym_not] = ACTIONS(305), - [anon_sym_and] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(271), - [anon_sym_SLASH_SLASH] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(271), - [anon_sym_CARET] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(271), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_is] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(269), - [anon_sym_EQ_EQ] = ACTIONS(269), - [anon_sym_BANG_EQ] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(269), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_LT_GT] = ACTIONS(269), - [anon_sym_lambda] = ACTIONS(310), - [anon_sym_PLUS_EQ] = ACTIONS(312), - [anon_sym_DASH_EQ] = ACTIONS(312), - [anon_sym_STAR_EQ] = ACTIONS(312), - [anon_sym_SLASH_EQ] = ACTIONS(312), - [anon_sym_AT_EQ] = ACTIONS(312), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(312), - [anon_sym_PERCENT_EQ] = ACTIONS(312), - [anon_sym_STAR_STAR_EQ] = ACTIONS(312), - [anon_sym_GT_GT_EQ] = ACTIONS(312), - [anon_sym_LT_LT_EQ] = ACTIONS(312), - [anon_sym_AMP_EQ] = ACTIONS(312), - [anon_sym_CARET_EQ] = ACTIONS(312), - [anon_sym_PIPE_EQ] = ACTIONS(312), - [sym_ellipsis] = ACTIONS(314), - [sym_integer] = ACTIONS(316), - [sym_float] = ACTIONS(314), - [anon_sym_await] = ACTIONS(318), - [sym_true] = ACTIONS(316), - [sym_false] = ACTIONS(316), - [sym_none] = ACTIONS(316), + [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(269), - [sym_string_start] = ACTIONS(320), + [sym__newline] = ACTIONS(265), + [sym_string_start] = ACTIONS(316), }, [STATE(72)] = { - [sym_named_expression] = STATE(1737), - [sym__named_expression_lhs] = STATE(2772), - [sym_list_splat_pattern] = STATE(1300), - [sym_as_pattern] = STATE(1737), - [sym_expression] = STATE(1763), - [sym_primary_expression] = STATE(955), - [sym_not_operator] = STATE(1737), - [sym_boolean_operator] = STATE(1737), - [sym_binary_operator] = STATE(1392), - [sym_unary_operator] = STATE(1392), - [sym_comparison_operator] = STATE(1737), - [sym_lambda] = STATE(1737), - [sym_attribute] = STATE(1392), - [sym_subscript] = STATE(1392), - [sym_call] = STATE(1392), - [sym_type] = STATE(2181), - [sym_splat_type] = STATE(2083), - [sym_generic_type] = STATE(2083), - [sym_union_type] = STATE(2083), - [sym_constrained_type] = STATE(2083), - [sym_member_type] = STATE(2083), - [sym_list] = STATE(1392), - [sym_set] = STATE(1392), - [sym_tuple] = STATE(1392), - [sym_dictionary] = STATE(1392), - [sym_list_comprehension] = STATE(1392), - [sym_dictionary_comprehension] = STATE(1392), - [sym_set_comprehension] = STATE(1392), - [sym_generator_expression] = STATE(1392), - [sym_parenthesized_expression] = STATE(1392), - [sym_conditional_expression] = STATE(1737), - [sym_concatenated_string] = STATE(1392), - [sym_string] = STATE(1003), - [sym_await] = STATE(1392), - [sym_identifier] = ACTIONS(267), - [anon_sym_SEMI] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_COMMA] = ACTIONS(276), - [anon_sym_as] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(279), - [anon_sym_print] = ACTIONS(282), - [anon_sym_GT_GT] = ACTIONS(271), - [anon_sym_COLON_EQ] = ACTIONS(284), - [anon_sym_if] = ACTIONS(271), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_match] = ACTIONS(289), - [anon_sym_async] = ACTIONS(282), - [anon_sym_in] = ACTIONS(271), - [anon_sym_STAR_STAR] = ACTIONS(291), - [anon_sym_exec] = ACTIONS(282), - [anon_sym_type] = ACTIONS(294), - [anon_sym_EQ] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_DASH] = ACTIONS(300), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(300), - [anon_sym_not] = ACTIONS(305), - [anon_sym_and] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(271), - [anon_sym_SLASH_SLASH] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(271), - [anon_sym_CARET] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(271), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_is] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(269), - [anon_sym_EQ_EQ] = ACTIONS(269), - [anon_sym_BANG_EQ] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(269), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_LT_GT] = ACTIONS(269), - [anon_sym_lambda] = ACTIONS(310), - [anon_sym_PLUS_EQ] = ACTIONS(312), - [anon_sym_DASH_EQ] = ACTIONS(312), - [anon_sym_STAR_EQ] = ACTIONS(312), - [anon_sym_SLASH_EQ] = ACTIONS(312), - [anon_sym_AT_EQ] = ACTIONS(312), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(312), - [anon_sym_PERCENT_EQ] = ACTIONS(312), - [anon_sym_STAR_STAR_EQ] = ACTIONS(312), - [anon_sym_GT_GT_EQ] = ACTIONS(312), - [anon_sym_LT_LT_EQ] = ACTIONS(312), - [anon_sym_AMP_EQ] = ACTIONS(312), - [anon_sym_CARET_EQ] = ACTIONS(312), - [anon_sym_PIPE_EQ] = ACTIONS(312), - [sym_ellipsis] = ACTIONS(314), - [sym_integer] = ACTIONS(316), - [sym_float] = ACTIONS(314), - [anon_sym_await] = ACTIONS(318), - [sym_true] = ACTIONS(316), - [sym_false] = ACTIONS(316), - [sym_none] = ACTIONS(316), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(269), - [sym_string_start] = ACTIONS(320), - }, - [STATE(73)] = { - [sym__simple_statements] = STATE(733), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [sym_global_statement] = STATE(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(646), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1681), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(652), - [sym_subscript] = STATE(652), - [sym_call] = STATE(1052), - [sym_type] = STATE(1995), - [sym_splat_type] = STATE(2083), - [sym_generic_type] = STATE(2083), - [sym_union_type] = STATE(2083), - [sym_constrained_type] = STATE(2083), - [sym_member_type] = STATE(2083), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [sym_identifier] = ACTIONS(325), + [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(327), - [anon_sym_STAR] = ACTIONS(329), - [anon_sym_print] = ACTIONS(331), + [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), @@ -19049,14 +18860,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(333), - [anon_sym_async] = ACTIONS(335), - [anon_sym_STAR_STAR] = ACTIONS(337), + [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(339), - [anon_sym_type] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(343), + [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), @@ -19067,81 +18878,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(345), + [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(347), - [sym__indent] = ACTIONS(349), + [sym__newline] = ACTIONS(343), + [sym__indent] = ACTIONS(345), [sym_string_start] = ACTIONS(81), }, - [STATE(74)] = { - [sym__simple_statements] = STATE(799), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [sym_global_statement] = STATE(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(646), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1681), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(652), - [sym_subscript] = STATE(652), - [sym_call] = STATE(1052), - [sym_type] = STATE(1995), - [sym_splat_type] = STATE(2083), - [sym_generic_type] = STATE(2083), - [sym_union_type] = STATE(2083), - [sym_constrained_type] = STATE(2083), - [sym_member_type] = STATE(2083), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [sym_identifier] = ACTIONS(325), + [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(327), - [anon_sym_STAR] = ACTIONS(329), - [anon_sym_print] = ACTIONS(331), + [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), @@ -19149,14 +18960,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(333), - [anon_sym_async] = ACTIONS(335), - [anon_sym_STAR_STAR] = ACTIONS(337), + [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(339), - [anon_sym_type] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(343), + [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), @@ -19167,81 +18978,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(345), + [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(351), - [sym__indent] = ACTIONS(353), + [sym__newline] = ACTIONS(347), + [sym__indent] = ACTIONS(349), [sym_string_start] = ACTIONS(81), }, - [STATE(75)] = { - [sym__simple_statements] = STATE(794), - [sym_import_statement] = STATE(2433), - [sym_future_import_statement] = STATE(2433), - [sym_import_from_statement] = STATE(2433), - [sym_print_statement] = STATE(2433), - [sym_assert_statement] = STATE(2433), - [sym_expression_statement] = STATE(2433), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2433), - [sym_delete_statement] = STATE(2433), - [sym_raise_statement] = STATE(2433), - [sym_pass_statement] = STATE(2433), - [sym_break_statement] = STATE(2433), - [sym_continue_statement] = STATE(2433), - [sym_global_statement] = STATE(2433), - [sym_nonlocal_statement] = STATE(2433), - [sym_exec_statement] = STATE(2433), - [sym_type_alias_statement] = STATE(2433), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(646), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1681), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(652), - [sym_subscript] = STATE(652), - [sym_call] = STATE(1052), - [sym_type] = STATE(1995), - [sym_splat_type] = STATE(2083), - [sym_generic_type] = STATE(2083), - [sym_union_type] = STATE(2083), - [sym_constrained_type] = STATE(2083), - [sym_member_type] = STATE(2083), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [sym_identifier] = ACTIONS(325), + [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(327), - [anon_sym_STAR] = ACTIONS(329), - [anon_sym_print] = ACTIONS(331), + [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), @@ -19249,14 +19060,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(333), - [anon_sym_async] = ACTIONS(335), - [anon_sym_STAR_STAR] = ACTIONS(337), + [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(339), - [anon_sym_type] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(343), + [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), @@ -19267,81 +19078,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(345), + [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(351), + [sym__indent] = ACTIONS(353), [sym_string_start] = ACTIONS(81), }, - [STATE(76)] = { - [sym__simple_statements] = STATE(802), - [sym_import_statement] = STATE(2433), - [sym_future_import_statement] = STATE(2433), - [sym_import_from_statement] = STATE(2433), - [sym_print_statement] = STATE(2433), - [sym_assert_statement] = STATE(2433), - [sym_expression_statement] = STATE(2433), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2433), - [sym_delete_statement] = STATE(2433), - [sym_raise_statement] = STATE(2433), - [sym_pass_statement] = STATE(2433), - [sym_break_statement] = STATE(2433), - [sym_continue_statement] = STATE(2433), - [sym_global_statement] = STATE(2433), - [sym_nonlocal_statement] = STATE(2433), - [sym_exec_statement] = STATE(2433), - [sym_type_alias_statement] = STATE(2433), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(646), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1681), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(652), - [sym_subscript] = STATE(652), - [sym_call] = STATE(1052), - [sym_type] = STATE(1995), - [sym_splat_type] = STATE(2083), - [sym_generic_type] = STATE(2083), - [sym_union_type] = STATE(2083), - [sym_constrained_type] = STATE(2083), - [sym_member_type] = STATE(2083), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [sym_identifier] = ACTIONS(325), + [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(327), - [anon_sym_STAR] = ACTIONS(329), - [anon_sym_print] = ACTIONS(331), + [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), @@ -19349,14 +19160,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(333), - [anon_sym_async] = ACTIONS(335), - [anon_sym_STAR_STAR] = ACTIONS(337), + [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(339), - [anon_sym_type] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(343), + [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), @@ -19367,81 +19178,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(345), + [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(355), + [sym__indent] = ACTIONS(357), [sym_string_start] = ACTIONS(81), }, - [STATE(77)] = { - [sym__simple_statements] = STATE(837), - [sym_import_statement] = STATE(2433), - [sym_future_import_statement] = STATE(2433), - [sym_import_from_statement] = STATE(2433), - [sym_print_statement] = STATE(2433), - [sym_assert_statement] = STATE(2433), - [sym_expression_statement] = STATE(2433), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2433), - [sym_delete_statement] = STATE(2433), - [sym_raise_statement] = STATE(2433), - [sym_pass_statement] = STATE(2433), - [sym_break_statement] = STATE(2433), - [sym_continue_statement] = STATE(2433), - [sym_global_statement] = STATE(2433), - [sym_nonlocal_statement] = STATE(2433), - [sym_exec_statement] = STATE(2433), - [sym_type_alias_statement] = STATE(2433), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(646), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1681), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(652), - [sym_subscript] = STATE(652), - [sym_call] = STATE(1052), - [sym_type] = STATE(1995), - [sym_splat_type] = STATE(2083), - [sym_generic_type] = STATE(2083), - [sym_union_type] = STATE(2083), - [sym_constrained_type] = STATE(2083), - [sym_member_type] = STATE(2083), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [sym_identifier] = ACTIONS(325), + [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(327), - [anon_sym_STAR] = ACTIONS(329), - [anon_sym_print] = ACTIONS(331), + [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), @@ -19449,14 +19260,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(333), - [anon_sym_async] = ACTIONS(335), - [anon_sym_STAR_STAR] = ACTIONS(337), + [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(339), - [anon_sym_type] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(343), + [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), @@ -19467,81 +19278,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(345), + [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(359), + [sym__indent] = ACTIONS(361), [sym_string_start] = ACTIONS(81), }, - [STATE(78)] = { - [sym__simple_statements] = STATE(810), - [sym_import_statement] = STATE(2433), - [sym_future_import_statement] = STATE(2433), - [sym_import_from_statement] = STATE(2433), - [sym_print_statement] = STATE(2433), - [sym_assert_statement] = STATE(2433), - [sym_expression_statement] = STATE(2433), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2433), - [sym_delete_statement] = STATE(2433), - [sym_raise_statement] = STATE(2433), - [sym_pass_statement] = STATE(2433), - [sym_break_statement] = STATE(2433), - [sym_continue_statement] = STATE(2433), - [sym_global_statement] = STATE(2433), - [sym_nonlocal_statement] = STATE(2433), - [sym_exec_statement] = STATE(2433), - [sym_type_alias_statement] = STATE(2433), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(646), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1681), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(652), - [sym_subscript] = STATE(652), - [sym_call] = STATE(1052), - [sym_type] = STATE(1995), - [sym_splat_type] = STATE(2083), - [sym_generic_type] = STATE(2083), - [sym_union_type] = STATE(2083), - [sym_constrained_type] = STATE(2083), - [sym_member_type] = STATE(2083), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [sym_identifier] = ACTIONS(325), + [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(327), - [anon_sym_STAR] = ACTIONS(329), - [anon_sym_print] = ACTIONS(331), + [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), @@ -19549,14 +19360,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(333), - [anon_sym_async] = ACTIONS(335), - [anon_sym_STAR_STAR] = ACTIONS(337), + [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(339), - [anon_sym_type] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(343), + [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), @@ -19567,81 +19378,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(345), + [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(363), + [sym__indent] = ACTIONS(365), [sym_string_start] = ACTIONS(81), }, - [STATE(79)] = { - [sym__simple_statements] = STATE(716), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [sym_global_statement] = STATE(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(646), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1681), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(652), - [sym_subscript] = STATE(652), - [sym_call] = STATE(1052), - [sym_type] = STATE(1995), - [sym_splat_type] = STATE(2083), - [sym_generic_type] = STATE(2083), - [sym_union_type] = STATE(2083), - [sym_constrained_type] = STATE(2083), - [sym_member_type] = STATE(2083), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [sym_identifier] = ACTIONS(325), + [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(327), - [anon_sym_STAR] = ACTIONS(329), - [anon_sym_print] = ACTIONS(331), + [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), @@ -19649,14 +19460,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(333), - [anon_sym_async] = ACTIONS(335), - [anon_sym_STAR_STAR] = ACTIONS(337), + [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(339), - [anon_sym_type] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(343), + [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), @@ -19667,81 +19478,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(345), + [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(367), + [sym__indent] = ACTIONS(369), [sym_string_start] = ACTIONS(81), }, - [STATE(80)] = { - [sym__simple_statements] = STATE(726), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [sym_global_statement] = STATE(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(646), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1681), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(652), - [sym_subscript] = STATE(652), - [sym_call] = STATE(1052), - [sym_type] = STATE(1995), - [sym_splat_type] = STATE(2083), - [sym_generic_type] = STATE(2083), - [sym_union_type] = STATE(2083), - [sym_constrained_type] = STATE(2083), - [sym_member_type] = STATE(2083), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [sym_identifier] = ACTIONS(325), + [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(327), - [anon_sym_STAR] = ACTIONS(329), - [anon_sym_print] = ACTIONS(331), + [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), @@ -19749,14 +19560,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(333), - [anon_sym_async] = ACTIONS(335), - [anon_sym_STAR_STAR] = ACTIONS(337), + [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(339), - [anon_sym_type] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(343), + [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), @@ -19767,463 +19578,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(345), + [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(371), + [sym__indent] = ACTIONS(373), [sym_string_start] = ACTIONS(81), }, - [STATE(81)] = { - [sym_chevron] = STATE(2229), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_list_splat_pattern] = STATE(1049), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(853), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_attribute] = STATE(1052), - [sym_subscript] = STATE(1052), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [sym_identifier] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(381), - [anon_sym_COMMA] = ACTIONS(276), - [anon_sym_as] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(384), - [anon_sym_print] = ACTIONS(387), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_COLON_EQ] = ACTIONS(284), - [anon_sym_if] = ACTIONS(271), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_match] = ACTIONS(391), - [anon_sym_async] = ACTIONS(387), - [anon_sym_in] = ACTIONS(271), - [anon_sym_STAR_STAR] = ACTIONS(271), - [anon_sym_exec] = ACTIONS(387), - [anon_sym_type] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_PIPE] = ACTIONS(271), + [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(396), - [anon_sym_not] = ACTIONS(399), - [anon_sym_and] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(271), - [anon_sym_SLASH_SLASH] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(271), - [anon_sym_CARET] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(271), + [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(271), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(269), - [anon_sym_EQ_EQ] = ACTIONS(269), - [anon_sym_BANG_EQ] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(269), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_LT_GT] = ACTIONS(269), + [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(312), - [anon_sym_DASH_EQ] = ACTIONS(312), - [anon_sym_STAR_EQ] = ACTIONS(312), - [anon_sym_SLASH_EQ] = ACTIONS(312), - [anon_sym_AT_EQ] = ACTIONS(312), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(312), - [anon_sym_PERCENT_EQ] = ACTIONS(312), - [anon_sym_STAR_STAR_EQ] = ACTIONS(312), - [anon_sym_GT_GT_EQ] = ACTIONS(312), - [anon_sym_LT_LT_EQ] = ACTIONS(312), - [anon_sym_AMP_EQ] = ACTIONS(312), - [anon_sym_CARET_EQ] = ACTIONS(312), - [anon_sym_PIPE_EQ] = ACTIONS(312), + [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(402), + [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(269), + [sym__newline] = ACTIONS(265), [sym_string_start] = ACTIONS(81), }, - [STATE(82)] = { - [sym_chevron] = STATE(2229), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_list_splat_pattern] = STATE(1049), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(853), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_attribute] = STATE(1052), - [sym_subscript] = STATE(1052), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [sym_identifier] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(381), - [anon_sym_COMMA] = ACTIONS(276), - [anon_sym_as] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(384), - [anon_sym_print] = ACTIONS(387), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_COLON_EQ] = ACTIONS(284), - [anon_sym_if] = ACTIONS(271), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_match] = ACTIONS(391), - [anon_sym_async] = ACTIONS(387), - [anon_sym_in] = ACTIONS(271), - [anon_sym_STAR_STAR] = ACTIONS(271), - [anon_sym_exec] = ACTIONS(387), - [anon_sym_type] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_PIPE] = ACTIONS(271), + [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(396), - [anon_sym_not] = ACTIONS(399), - [anon_sym_and] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(271), - [anon_sym_SLASH_SLASH] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(271), - [anon_sym_CARET] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(271), + [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(271), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(269), - [anon_sym_EQ_EQ] = ACTIONS(269), - [anon_sym_BANG_EQ] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(269), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_LT_GT] = ACTIONS(269), + [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(312), - [anon_sym_DASH_EQ] = ACTIONS(312), - [anon_sym_STAR_EQ] = ACTIONS(312), - [anon_sym_SLASH_EQ] = ACTIONS(312), - [anon_sym_AT_EQ] = ACTIONS(312), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(312), - [anon_sym_PERCENT_EQ] = ACTIONS(312), - [anon_sym_STAR_STAR_EQ] = ACTIONS(312), - [anon_sym_GT_GT_EQ] = ACTIONS(312), - [anon_sym_LT_LT_EQ] = ACTIONS(312), - [anon_sym_AMP_EQ] = ACTIONS(312), - [anon_sym_CARET_EQ] = ACTIONS(312), - [anon_sym_PIPE_EQ] = ACTIONS(312), + [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(402), + [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(269), + [sym__newline] = ACTIONS(265), [sym_string_start] = ACTIONS(81), }, - [STATE(83)] = { - [sym_named_expression] = STATE(1737), - [sym__named_expression_lhs] = STATE(2772), - [sym_list_splat_pattern] = STATE(1300), - [sym_as_pattern] = STATE(1737), - [sym_expression] = STATE(1863), - [sym_primary_expression] = STATE(955), - [sym_not_operator] = STATE(1737), - [sym_boolean_operator] = STATE(1737), - [sym_binary_operator] = STATE(1392), - [sym_unary_operator] = STATE(1392), - [sym_comparison_operator] = STATE(1737), - [sym_lambda] = STATE(1737), - [sym_attribute] = STATE(1392), - [sym_subscript] = STATE(1392), - [sym_call] = STATE(1392), - [sym_list] = STATE(1392), - [sym_set] = STATE(1392), - [sym_tuple] = STATE(1392), - [sym_dictionary] = STATE(1392), - [sym_list_comprehension] = STATE(1392), - [sym_dictionary_comprehension] = STATE(1392), - [sym_set_comprehension] = STATE(1392), - [sym_generator_expression] = STATE(1392), - [sym_parenthesized_expression] = STATE(1392), - [sym_conditional_expression] = STATE(1737), - [sym_concatenated_string] = STATE(1392), - [sym_string] = STATE(1003), - [sym_await] = STATE(1392), - [sym_identifier] = ACTIONS(404), - [anon_sym_SEMI] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_COMMA] = ACTIONS(276), - [anon_sym_as] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_print] = ACTIONS(282), - [anon_sym_GT_GT] = ACTIONS(271), - [anon_sym_COLON_EQ] = ACTIONS(284), - [anon_sym_if] = ACTIONS(271), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_match] = ACTIONS(289), - [anon_sym_async] = ACTIONS(282), - [anon_sym_in] = ACTIONS(271), - [anon_sym_STAR_STAR] = ACTIONS(271), - [anon_sym_exec] = ACTIONS(282), - [anon_sym_type] = ACTIONS(289), - [anon_sym_EQ] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_DASH] = ACTIONS(300), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(300), - [anon_sym_not] = ACTIONS(305), - [anon_sym_and] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(271), - [anon_sym_SLASH_SLASH] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(271), - [anon_sym_CARET] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(271), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_is] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(269), - [anon_sym_EQ_EQ] = ACTIONS(269), - [anon_sym_BANG_EQ] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(269), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_LT_GT] = ACTIONS(269), - [anon_sym_lambda] = ACTIONS(310), - [anon_sym_PLUS_EQ] = ACTIONS(312), - [anon_sym_DASH_EQ] = ACTIONS(312), - [anon_sym_STAR_EQ] = ACTIONS(312), - [anon_sym_SLASH_EQ] = ACTIONS(312), - [anon_sym_AT_EQ] = ACTIONS(312), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(312), - [anon_sym_PERCENT_EQ] = ACTIONS(312), - [anon_sym_STAR_STAR_EQ] = ACTIONS(312), - [anon_sym_GT_GT_EQ] = ACTIONS(312), - [anon_sym_LT_LT_EQ] = ACTIONS(312), - [anon_sym_AMP_EQ] = ACTIONS(312), - [anon_sym_CARET_EQ] = ACTIONS(312), - [anon_sym_PIPE_EQ] = ACTIONS(312), - [sym_ellipsis] = ACTIONS(314), - [sym_integer] = ACTIONS(316), - [sym_float] = ACTIONS(314), - [anon_sym_await] = ACTIONS(318), - [sym_true] = ACTIONS(316), - [sym_false] = ACTIONS(316), - [sym_none] = ACTIONS(316), + [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(269), - [sym_string_start] = ACTIONS(320), + [sym__newline] = ACTIONS(265), + [sym_string_start] = ACTIONS(316), }, - [STATE(84)] = { - [sym_named_expression] = STATE(1737), - [sym__named_expression_lhs] = STATE(2772), - [sym_list_splat_pattern] = STATE(1300), - [sym_as_pattern] = STATE(1737), + [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(955), - [sym_not_operator] = STATE(1737), - [sym_boolean_operator] = STATE(1737), - [sym_binary_operator] = STATE(1392), - [sym_unary_operator] = STATE(1392), - [sym_comparison_operator] = STATE(1737), - [sym_lambda] = STATE(1737), - [sym_attribute] = STATE(1392), - [sym_subscript] = STATE(1392), - [sym_call] = STATE(1392), - [sym_list] = STATE(1392), - [sym_set] = STATE(1392), - [sym_tuple] = STATE(1392), - [sym_dictionary] = STATE(1392), - [sym_list_comprehension] = STATE(1392), - [sym_dictionary_comprehension] = STATE(1392), - [sym_set_comprehension] = STATE(1392), - [sym_generator_expression] = STATE(1392), - [sym_parenthesized_expression] = STATE(1392), - [sym_conditional_expression] = STATE(1737), - [sym_concatenated_string] = STATE(1392), - [sym_string] = STATE(1003), - [sym_await] = STATE(1392), - [sym_identifier] = ACTIONS(404), - [anon_sym_SEMI] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(273), - [anon_sym_COMMA] = ACTIONS(276), - [anon_sym_as] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_print] = ACTIONS(282), - [anon_sym_GT_GT] = ACTIONS(271), - [anon_sym_COLON_EQ] = ACTIONS(284), - [anon_sym_if] = ACTIONS(271), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_match] = ACTIONS(289), - [anon_sym_async] = ACTIONS(282), - [anon_sym_in] = ACTIONS(271), - [anon_sym_STAR_STAR] = ACTIONS(271), - [anon_sym_exec] = ACTIONS(282), - [anon_sym_type] = ACTIONS(289), - [anon_sym_EQ] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_DASH] = ACTIONS(300), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(300), - [anon_sym_not] = ACTIONS(305), - [anon_sym_and] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(271), - [anon_sym_SLASH_SLASH] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(271), - [anon_sym_CARET] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(271), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_is] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(269), - [anon_sym_EQ_EQ] = ACTIONS(269), - [anon_sym_BANG_EQ] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(269), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_LT_GT] = ACTIONS(269), - [anon_sym_lambda] = ACTIONS(310), - [anon_sym_PLUS_EQ] = ACTIONS(312), - [anon_sym_DASH_EQ] = ACTIONS(312), - [anon_sym_STAR_EQ] = ACTIONS(312), - [anon_sym_SLASH_EQ] = ACTIONS(312), - [anon_sym_AT_EQ] = ACTIONS(312), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(312), - [anon_sym_PERCENT_EQ] = ACTIONS(312), - [anon_sym_STAR_STAR_EQ] = ACTIONS(312), - [anon_sym_GT_GT_EQ] = ACTIONS(312), - [anon_sym_LT_LT_EQ] = ACTIONS(312), - [anon_sym_AMP_EQ] = ACTIONS(312), - [anon_sym_CARET_EQ] = ACTIONS(312), - [anon_sym_PIPE_EQ] = ACTIONS(312), - [sym_ellipsis] = ACTIONS(314), - [sym_integer] = ACTIONS(316), - [sym_float] = ACTIONS(314), - [anon_sym_await] = ACTIONS(318), - [sym_true] = ACTIONS(316), - [sym_false] = ACTIONS(316), - [sym_none] = ACTIONS(316), + [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(269), - [sym_string_start] = ACTIONS(320), + [sym__newline] = ACTIONS(265), + [sym_string_start] = ACTIONS(316), }, - [STATE(85)] = { - [sym__simple_statements] = STATE(761), - [sym_import_statement] = STATE(2433), - [sym_future_import_statement] = STATE(2433), - [sym_import_from_statement] = STATE(2433), - [sym_print_statement] = STATE(2433), - [sym_assert_statement] = STATE(2433), - [sym_expression_statement] = STATE(2433), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2433), - [sym_delete_statement] = STATE(2433), - [sym_raise_statement] = STATE(2433), - [sym_pass_statement] = STATE(2433), - [sym_break_statement] = STATE(2433), - [sym_continue_statement] = STATE(2433), - [sym_global_statement] = STATE(2433), - [sym_nonlocal_statement] = STATE(2433), - [sym_exec_statement] = STATE(2433), - [sym_type_alias_statement] = STATE(2433), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -20237,8 +20048,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -20260,63 +20071,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(413), - [sym__indent] = ACTIONS(415), + [sym__newline] = ACTIONS(409), + [sym__indent] = ACTIONS(411), [sym_string_start] = ACTIONS(81), }, - [STATE(86)] = { - [sym__simple_statements] = STATE(667), - [sym_import_statement] = STATE(2433), - [sym_future_import_statement] = STATE(2433), - [sym_import_from_statement] = STATE(2433), - [sym_print_statement] = STATE(2433), - [sym_assert_statement] = STATE(2433), - [sym_expression_statement] = STATE(2433), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2433), - [sym_delete_statement] = STATE(2433), - [sym_raise_statement] = STATE(2433), - [sym_pass_statement] = STATE(2433), - [sym_break_statement] = STATE(2433), - [sym_continue_statement] = STATE(2433), - [sym_global_statement] = STATE(2433), - [sym_nonlocal_statement] = STATE(2433), - [sym_exec_statement] = STATE(2433), - [sym_type_alias_statement] = STATE(2433), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -20330,8 +20141,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -20353,63 +20164,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(417), - [sym__indent] = ACTIONS(419), + [sym__newline] = ACTIONS(413), + [sym__indent] = ACTIONS(415), [sym_string_start] = ACTIONS(81), }, - [STATE(87)] = { - [sym__simple_statements] = STATE(806), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [sym_global_statement] = STATE(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -20423,8 +20234,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -20446,63 +20257,156 @@ 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(421), + [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), + [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(421), [sym__indent] = ACTIONS(423), [sym_string_start] = ACTIONS(81), }, [STATE(88)] = { - [sym__simple_statements] = STATE(688), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [sym_global_statement] = STATE(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -20516,8 +20420,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -20544,58 +20448,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(89)] = { - [sym__simple_statements] = STATE(656), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [sym_global_statement] = STATE(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -20609,8 +20513,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -20637,58 +20541,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(90)] = { - [sym__simple_statements] = STATE(822), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [sym_global_statement] = STATE(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [sym__simple_statements] = STATE(684), + [sym_import_statement] = STATE(2459), + [sym_future_import_statement] = STATE(2459), + [sym_import_from_statement] = STATE(2459), + [sym_print_statement] = STATE(2459), + [sym_assert_statement] = STATE(2459), + [sym_expression_statement] = STATE(2459), + [sym_named_expression] = STATE(1649), + [sym__named_expression_lhs] = STATE(2616), + [sym_return_statement] = STATE(2459), + [sym_delete_statement] = STATE(2459), + [sym_raise_statement] = STATE(2459), + [sym_pass_statement] = STATE(2459), + [sym_break_statement] = STATE(2459), + [sym_continue_statement] = STATE(2459), + [sym_global_statement] = STATE(2459), + [sym_nonlocal_statement] = STATE(2459), + [sym_exec_statement] = STATE(2459), + [sym_type_alias_statement] = STATE(2459), + [sym_pattern] = STATE(1624), + [sym_tuple_pattern] = STATE(1626), + [sym_list_pattern] = STATE(1626), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1649), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(949), + [sym_not_operator] = STATE(1649), + [sym_boolean_operator] = STATE(1649), + [sym_binary_operator] = STATE(1099), + [sym_unary_operator] = STATE(1099), + [sym_comparison_operator] = STATE(1649), + [sym_lambda] = STATE(1649), + [sym_assignment] = STATE(2566), + [sym_augmented_assignment] = STATE(2566), + [sym_pattern_list] = STATE(1644), + [sym_yield] = STATE(2566), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1099), + [sym_list] = STATE(1099), + [sym_set] = STATE(1099), + [sym_tuple] = STATE(1099), + [sym_dictionary] = STATE(1099), + [sym_list_comprehension] = STATE(1099), + [sym_dictionary_comprehension] = STATE(1099), + [sym_set_comprehension] = STATE(1099), + [sym_generator_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_conditional_expression] = STATE(1649), + [sym_concatenated_string] = STATE(1099), + [sym_string] = STATE(954), + [sym_await] = STATE(1099), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20702,8 +20606,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -20730,58 +20634,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(91)] = { - [sym__simple_statements] = STATE(754), - [sym_import_statement] = STATE(2433), - [sym_future_import_statement] = STATE(2433), - [sym_import_from_statement] = STATE(2433), - [sym_print_statement] = STATE(2433), - [sym_assert_statement] = STATE(2433), - [sym_expression_statement] = STATE(2433), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2433), - [sym_delete_statement] = STATE(2433), - [sym_raise_statement] = STATE(2433), - [sym_pass_statement] = STATE(2433), - [sym_break_statement] = STATE(2433), - [sym_continue_statement] = STATE(2433), - [sym_global_statement] = STATE(2433), - [sym_nonlocal_statement] = STATE(2433), - [sym_exec_statement] = STATE(2433), - [sym_type_alias_statement] = STATE(2433), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -20795,8 +20699,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -20823,58 +20727,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(92)] = { - [sym__simple_statements] = STATE(735), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [sym_global_statement] = STATE(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -20888,8 +20792,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -20916,58 +20820,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(93)] = { - [sym__simple_statements] = STATE(793), - [sym_import_statement] = STATE(2433), - [sym_future_import_statement] = STATE(2433), - [sym_import_from_statement] = STATE(2433), - [sym_print_statement] = STATE(2433), - [sym_assert_statement] = STATE(2433), - [sym_expression_statement] = STATE(2433), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2433), - [sym_delete_statement] = STATE(2433), - [sym_raise_statement] = STATE(2433), - [sym_pass_statement] = STATE(2433), - [sym_break_statement] = STATE(2433), - [sym_continue_statement] = STATE(2433), - [sym_global_statement] = STATE(2433), - [sym_nonlocal_statement] = STATE(2433), - [sym_exec_statement] = STATE(2433), - [sym_type_alias_statement] = STATE(2433), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -20981,8 +20885,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -21009,58 +20913,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(94)] = { - [sym__simple_statements] = STATE(739), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [sym_global_statement] = STATE(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -21074,8 +20978,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -21102,58 +21006,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(95)] = { - [sym__simple_statements] = STATE(759), - [sym_import_statement] = STATE(2433), - [sym_future_import_statement] = STATE(2433), - [sym_import_from_statement] = STATE(2433), - [sym_print_statement] = STATE(2433), - [sym_assert_statement] = STATE(2433), - [sym_expression_statement] = STATE(2433), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2433), - [sym_delete_statement] = STATE(2433), - [sym_raise_statement] = STATE(2433), - [sym_pass_statement] = STATE(2433), - [sym_break_statement] = STATE(2433), - [sym_continue_statement] = STATE(2433), - [sym_global_statement] = STATE(2433), - [sym_nonlocal_statement] = STATE(2433), - [sym_exec_statement] = STATE(2433), - [sym_type_alias_statement] = STATE(2433), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -21167,8 +21071,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -21195,58 +21099,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(96)] = { - [sym__simple_statements] = STATE(712), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [sym_global_statement] = STATE(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -21260,8 +21164,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -21288,58 +21192,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(97)] = { - [sym__simple_statements] = STATE(699), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [sym_global_statement] = STATE(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -21353,8 +21257,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -21381,58 +21285,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(98)] = { - [sym__simple_statements] = STATE(705), - [sym_import_statement] = STATE(2433), - [sym_future_import_statement] = STATE(2433), - [sym_import_from_statement] = STATE(2433), - [sym_print_statement] = STATE(2433), - [sym_assert_statement] = STATE(2433), - [sym_expression_statement] = STATE(2433), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2433), - [sym_delete_statement] = STATE(2433), - [sym_raise_statement] = STATE(2433), - [sym_pass_statement] = STATE(2433), - [sym_break_statement] = STATE(2433), - [sym_continue_statement] = STATE(2433), - [sym_global_statement] = STATE(2433), - [sym_nonlocal_statement] = STATE(2433), - [sym_exec_statement] = STATE(2433), - [sym_type_alias_statement] = STATE(2433), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -21446,8 +21350,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -21474,58 +21378,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(99)] = { - [sym__simple_statements] = STATE(756), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [sym_global_statement] = STATE(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -21539,8 +21443,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -21567,58 +21471,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(100)] = { - [sym__simple_statements] = STATE(764), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [sym_global_statement] = STATE(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -21632,8 +21536,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -21660,58 +21564,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(101)] = { - [sym__simple_statements] = STATE(622), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [sym_global_statement] = STATE(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -21725,8 +21629,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -21753,58 +21657,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(102)] = { - [sym__simple_statements] = STATE(675), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [sym_global_statement] = STATE(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -21818,8 +21722,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -21846,58 +21750,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(103)] = { - [sym__simple_statements] = STATE(681), - [sym_import_statement] = STATE(2365), - [sym_future_import_statement] = STATE(2365), - [sym_import_from_statement] = STATE(2365), - [sym_print_statement] = STATE(2365), - [sym_assert_statement] = STATE(2365), - [sym_expression_statement] = STATE(2365), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2365), - [sym_delete_statement] = STATE(2365), - [sym_raise_statement] = STATE(2365), - [sym_pass_statement] = STATE(2365), - [sym_break_statement] = STATE(2365), - [sym_continue_statement] = STATE(2365), - [sym_global_statement] = STATE(2365), - [sym_nonlocal_statement] = STATE(2365), - [sym_exec_statement] = STATE(2365), - [sym_type_alias_statement] = STATE(2365), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -21911,8 +21815,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -21939,58 +21843,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(104)] = { - [sym__simple_statements] = STATE(2562), - [sym_import_statement] = STATE(2341), - [sym_future_import_statement] = STATE(2341), - [sym_import_from_statement] = STATE(2341), - [sym_print_statement] = STATE(2341), - [sym_assert_statement] = STATE(2341), - [sym_expression_statement] = STATE(2341), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2341), - [sym_delete_statement] = STATE(2341), - [sym_raise_statement] = STATE(2341), - [sym_pass_statement] = STATE(2341), - [sym_break_statement] = STATE(2341), - [sym_continue_statement] = STATE(2341), - [sym_global_statement] = STATE(2341), - [sym_nonlocal_statement] = STATE(2341), - [sym_exec_statement] = STATE(2341), - [sym_type_alias_statement] = STATE(2341), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -22004,8 +21908,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -22032,58 +21936,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(105)] = { - [sym__simple_statements] = STATE(690), - [sym_import_statement] = STATE(2433), - [sym_future_import_statement] = STATE(2433), - [sym_import_from_statement] = STATE(2433), - [sym_print_statement] = STATE(2433), - [sym_assert_statement] = STATE(2433), - [sym_expression_statement] = STATE(2433), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2433), - [sym_delete_statement] = STATE(2433), - [sym_raise_statement] = STATE(2433), - [sym_pass_statement] = STATE(2433), - [sym_break_statement] = STATE(2433), - [sym_continue_statement] = STATE(2433), - [sym_global_statement] = STATE(2433), - [sym_nonlocal_statement] = STATE(2433), - [sym_exec_statement] = STATE(2433), - [sym_type_alias_statement] = STATE(2433), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -22097,8 +22001,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -22125,58 +22029,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(106)] = { - [sym__simple_statements] = STATE(1819), - [sym_import_statement] = STATE(2344), - [sym_future_import_statement] = STATE(2344), - [sym_import_from_statement] = STATE(2344), - [sym_print_statement] = STATE(2344), - [sym_assert_statement] = STATE(2344), - [sym_expression_statement] = STATE(2344), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2344), - [sym_delete_statement] = STATE(2344), - [sym_raise_statement] = STATE(2344), - [sym_pass_statement] = STATE(2344), - [sym_break_statement] = STATE(2344), - [sym_continue_statement] = STATE(2344), - [sym_global_statement] = STATE(2344), - [sym_nonlocal_statement] = STATE(2344), - [sym_exec_statement] = STATE(2344), - [sym_type_alias_statement] = STATE(2344), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -22190,8 +22094,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -22218,58 +22122,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(107)] = { - [sym__simple_statements] = STATE(2577), - [sym_import_statement] = STATE(2341), - [sym_future_import_statement] = STATE(2341), - [sym_import_from_statement] = STATE(2341), - [sym_print_statement] = STATE(2341), - [sym_assert_statement] = STATE(2341), - [sym_expression_statement] = STATE(2341), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2341), - [sym_delete_statement] = STATE(2341), - [sym_raise_statement] = STATE(2341), - [sym_pass_statement] = STATE(2341), - [sym_break_statement] = STATE(2341), - [sym_continue_statement] = STATE(2341), - [sym_global_statement] = STATE(2341), - [sym_nonlocal_statement] = STATE(2341), - [sym_exec_statement] = STATE(2341), - [sym_type_alias_statement] = STATE(2341), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -22283,8 +22187,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -22311,58 +22215,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(108)] = { - [sym__simple_statements] = STATE(689), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [sym_global_statement] = STATE(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -22376,8 +22280,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -22404,58 +22308,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(109)] = { - [sym__simple_statements] = STATE(707), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [sym_global_statement] = STATE(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -22469,8 +22373,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -22497,58 +22401,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(110)] = { - [sym__simple_statements] = STATE(723), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [sym_global_statement] = STATE(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -22562,8 +22466,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -22590,58 +22494,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(111)] = { - [sym__simple_statements] = STATE(745), - [sym_import_statement] = STATE(2433), - [sym_future_import_statement] = STATE(2433), - [sym_import_from_statement] = STATE(2433), - [sym_print_statement] = STATE(2433), - [sym_assert_statement] = STATE(2433), - [sym_expression_statement] = STATE(2433), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2433), - [sym_delete_statement] = STATE(2433), - [sym_raise_statement] = STATE(2433), - [sym_pass_statement] = STATE(2433), - [sym_break_statement] = STATE(2433), - [sym_continue_statement] = STATE(2433), - [sym_global_statement] = STATE(2433), - [sym_nonlocal_statement] = STATE(2433), - [sym_exec_statement] = STATE(2433), - [sym_type_alias_statement] = STATE(2433), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -22655,8 +22559,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -22683,58 +22587,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(112)] = { - [sym__simple_statements] = STATE(682), - [sym_import_statement] = STATE(2433), - [sym_future_import_statement] = STATE(2433), - [sym_import_from_statement] = STATE(2433), - [sym_print_statement] = STATE(2433), - [sym_assert_statement] = STATE(2433), - [sym_expression_statement] = STATE(2433), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2433), - [sym_delete_statement] = STATE(2433), - [sym_raise_statement] = STATE(2433), - [sym_pass_statement] = STATE(2433), - [sym_break_statement] = STATE(2433), - [sym_continue_statement] = STATE(2433), - [sym_global_statement] = STATE(2433), - [sym_nonlocal_statement] = STATE(2433), - [sym_exec_statement] = STATE(2433), - [sym_type_alias_statement] = STATE(2433), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -22748,8 +22652,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -22776,58 +22680,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(113)] = { - [sym__simple_statements] = STATE(701), - [sym_import_statement] = STATE(2433), - [sym_future_import_statement] = STATE(2433), - [sym_import_from_statement] = STATE(2433), - [sym_print_statement] = STATE(2433), - [sym_assert_statement] = STATE(2433), - [sym_expression_statement] = STATE(2433), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2433), - [sym_delete_statement] = STATE(2433), - [sym_raise_statement] = STATE(2433), - [sym_pass_statement] = STATE(2433), - [sym_break_statement] = STATE(2433), - [sym_continue_statement] = STATE(2433), - [sym_global_statement] = STATE(2433), - [sym_nonlocal_statement] = STATE(2433), - [sym_exec_statement] = STATE(2433), - [sym_type_alias_statement] = STATE(2433), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -22841,8 +22745,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -22869,58 +22773,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(114)] = { - [sym__simple_statements] = STATE(766), - [sym_import_statement] = STATE(2433), - [sym_future_import_statement] = STATE(2433), - [sym_import_from_statement] = STATE(2433), - [sym_print_statement] = STATE(2433), - [sym_assert_statement] = STATE(2433), - [sym_expression_statement] = STATE(2433), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2433), - [sym_delete_statement] = STATE(2433), - [sym_raise_statement] = STATE(2433), - [sym_pass_statement] = STATE(2433), - [sym_break_statement] = STATE(2433), - [sym_continue_statement] = STATE(2433), - [sym_global_statement] = STATE(2433), - [sym_nonlocal_statement] = STATE(2433), - [sym_exec_statement] = STATE(2433), - [sym_type_alias_statement] = STATE(2433), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -22934,8 +22838,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -22962,58 +22866,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(115)] = { - [sym__simple_statements] = STATE(2569), - [sym_import_statement] = STATE(2341), - [sym_future_import_statement] = STATE(2341), - [sym_import_from_statement] = STATE(2341), - [sym_print_statement] = STATE(2341), - [sym_assert_statement] = STATE(2341), - [sym_expression_statement] = STATE(2341), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2341), - [sym_delete_statement] = STATE(2341), - [sym_raise_statement] = STATE(2341), - [sym_pass_statement] = STATE(2341), - [sym_break_statement] = STATE(2341), - [sym_continue_statement] = STATE(2341), - [sym_global_statement] = STATE(2341), - [sym_nonlocal_statement] = STATE(2341), - [sym_exec_statement] = STATE(2341), - [sym_type_alias_statement] = STATE(2341), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -23027,8 +22931,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -23055,58 +22959,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(116)] = { - [sym__simple_statements] = STATE(2506), - [sym_import_statement] = STATE(2341), - [sym_future_import_statement] = STATE(2341), - [sym_import_from_statement] = STATE(2341), - [sym_print_statement] = STATE(2341), - [sym_assert_statement] = STATE(2341), - [sym_expression_statement] = STATE(2341), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2341), - [sym_delete_statement] = STATE(2341), - [sym_raise_statement] = STATE(2341), - [sym_pass_statement] = STATE(2341), - [sym_break_statement] = STATE(2341), - [sym_continue_statement] = STATE(2341), - [sym_global_statement] = STATE(2341), - [sym_nonlocal_statement] = STATE(2341), - [sym_exec_statement] = STATE(2341), - [sym_type_alias_statement] = STATE(2341), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -23120,8 +23024,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -23148,58 +23052,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(117)] = { - [sym__simple_statements] = STATE(772), - [sym_import_statement] = STATE(2433), - [sym_future_import_statement] = STATE(2433), - [sym_import_from_statement] = STATE(2433), - [sym_print_statement] = STATE(2433), - [sym_assert_statement] = STATE(2433), - [sym_expression_statement] = STATE(2433), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2433), - [sym_delete_statement] = STATE(2433), - [sym_raise_statement] = STATE(2433), - [sym_pass_statement] = STATE(2433), - [sym_break_statement] = STATE(2433), - [sym_continue_statement] = STATE(2433), - [sym_global_statement] = STATE(2433), - [sym_nonlocal_statement] = STATE(2433), - [sym_exec_statement] = STATE(2433), - [sym_type_alias_statement] = STATE(2433), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -23213,8 +23117,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -23241,58 +23145,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(118)] = { - [sym__simple_statements] = STATE(2578), - [sym_import_statement] = STATE(2341), - [sym_future_import_statement] = STATE(2341), - [sym_import_from_statement] = STATE(2341), - [sym_print_statement] = STATE(2341), - [sym_assert_statement] = STATE(2341), - [sym_expression_statement] = STATE(2341), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2341), - [sym_delete_statement] = STATE(2341), - [sym_raise_statement] = STATE(2341), - [sym_pass_statement] = STATE(2341), - [sym_break_statement] = STATE(2341), - [sym_continue_statement] = STATE(2341), - [sym_global_statement] = STATE(2341), - [sym_nonlocal_statement] = STATE(2341), - [sym_exec_statement] = STATE(2341), - [sym_type_alias_statement] = STATE(2341), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -23306,8 +23210,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -23334,58 +23238,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(119)] = { - [sym__simple_statements] = STATE(693), - [sym_import_statement] = STATE(2433), - [sym_future_import_statement] = STATE(2433), - [sym_import_from_statement] = STATE(2433), - [sym_print_statement] = STATE(2433), - [sym_assert_statement] = STATE(2433), - [sym_expression_statement] = STATE(2433), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2433), - [sym_delete_statement] = STATE(2433), - [sym_raise_statement] = STATE(2433), - [sym_pass_statement] = STATE(2433), - [sym_break_statement] = STATE(2433), - [sym_continue_statement] = STATE(2433), - [sym_global_statement] = STATE(2433), - [sym_nonlocal_statement] = STATE(2433), - [sym_exec_statement] = STATE(2433), - [sym_type_alias_statement] = STATE(2433), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -23399,8 +23303,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -23427,58 +23331,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(120)] = { - [sym__simple_statements] = STATE(662), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [sym_global_statement] = STATE(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -23492,8 +23396,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -23520,58 +23424,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(121)] = { - [sym__simple_statements] = STATE(827), - [sym_import_statement] = STATE(2433), - [sym_future_import_statement] = STATE(2433), - [sym_import_from_statement] = STATE(2433), - [sym_print_statement] = STATE(2433), - [sym_assert_statement] = STATE(2433), - [sym_expression_statement] = STATE(2433), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2433), - [sym_delete_statement] = STATE(2433), - [sym_raise_statement] = STATE(2433), - [sym_pass_statement] = STATE(2433), - [sym_break_statement] = STATE(2433), - [sym_continue_statement] = STATE(2433), - [sym_global_statement] = STATE(2433), - [sym_nonlocal_statement] = STATE(2433), - [sym_exec_statement] = STATE(2433), - [sym_type_alias_statement] = STATE(2433), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -23585,8 +23489,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -23613,58 +23517,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(122)] = { - [sym__simple_statements] = STATE(715), - [sym_import_statement] = STATE(2433), - [sym_future_import_statement] = STATE(2433), - [sym_import_from_statement] = STATE(2433), - [sym_print_statement] = STATE(2433), - [sym_assert_statement] = STATE(2433), - [sym_expression_statement] = STATE(2433), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2433), - [sym_delete_statement] = STATE(2433), - [sym_raise_statement] = STATE(2433), - [sym_pass_statement] = STATE(2433), - [sym_break_statement] = STATE(2433), - [sym_continue_statement] = STATE(2433), - [sym_global_statement] = STATE(2433), - [sym_nonlocal_statement] = STATE(2433), - [sym_exec_statement] = STATE(2433), - [sym_type_alias_statement] = STATE(2433), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -23678,8 +23582,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -23706,58 +23610,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(123)] = { - [sym__simple_statements] = STATE(670), - [sym_import_statement] = STATE(2433), - [sym_future_import_statement] = STATE(2433), - [sym_import_from_statement] = STATE(2433), - [sym_print_statement] = STATE(2433), - [sym_assert_statement] = STATE(2433), - [sym_expression_statement] = STATE(2433), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2433), - [sym_delete_statement] = STATE(2433), - [sym_raise_statement] = STATE(2433), - [sym_pass_statement] = STATE(2433), - [sym_break_statement] = STATE(2433), - [sym_continue_statement] = STATE(2433), - [sym_global_statement] = STATE(2433), - [sym_nonlocal_statement] = STATE(2433), - [sym_exec_statement] = STATE(2433), - [sym_type_alias_statement] = STATE(2433), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -23771,8 +23675,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -23799,58 +23703,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(124)] = { - [sym__simple_statements] = STATE(671), - [sym_import_statement] = STATE(2290), - [sym_future_import_statement] = STATE(2290), - [sym_import_from_statement] = STATE(2290), - [sym_print_statement] = STATE(2290), - [sym_assert_statement] = STATE(2290), - [sym_expression_statement] = STATE(2290), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2290), - [sym_delete_statement] = STATE(2290), - [sym_raise_statement] = STATE(2290), - [sym_pass_statement] = STATE(2290), - [sym_break_statement] = STATE(2290), - [sym_continue_statement] = STATE(2290), - [sym_global_statement] = STATE(2290), - [sym_nonlocal_statement] = STATE(2290), - [sym_exec_statement] = STATE(2290), - [sym_type_alias_statement] = STATE(2290), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -23864,8 +23768,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -23892,58 +23796,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(125)] = { - [sym__simple_statements] = STATE(718), - [sym_import_statement] = STATE(2433), - [sym_future_import_statement] = STATE(2433), - [sym_import_from_statement] = STATE(2433), - [sym_print_statement] = STATE(2433), - [sym_assert_statement] = STATE(2433), - [sym_expression_statement] = STATE(2433), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2433), - [sym_delete_statement] = STATE(2433), - [sym_raise_statement] = STATE(2433), - [sym_pass_statement] = STATE(2433), - [sym_break_statement] = STATE(2433), - [sym_continue_statement] = STATE(2433), - [sym_global_statement] = STATE(2433), - [sym_nonlocal_statement] = STATE(2433), - [sym_exec_statement] = STATE(2433), - [sym_type_alias_statement] = STATE(2433), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -23957,8 +23861,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -23985,58 +23889,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(126)] = { - [sym__simple_statements] = STATE(2567), - [sym_import_statement] = STATE(2341), - [sym_future_import_statement] = STATE(2341), - [sym_import_from_statement] = STATE(2341), - [sym_print_statement] = STATE(2341), - [sym_assert_statement] = STATE(2341), - [sym_expression_statement] = STATE(2341), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2341), - [sym_delete_statement] = STATE(2341), - [sym_raise_statement] = STATE(2341), - [sym_pass_statement] = STATE(2341), - [sym_break_statement] = STATE(2341), - [sym_continue_statement] = STATE(2341), - [sym_global_statement] = STATE(2341), - [sym_nonlocal_statement] = STATE(2341), - [sym_exec_statement] = STATE(2341), - [sym_type_alias_statement] = STATE(2341), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -24050,8 +23954,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -24078,58 +23982,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(127)] = { - [sym__simple_statements] = STATE(727), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [sym_global_statement] = STATE(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -24143,8 +24047,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -24171,58 +24075,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(128)] = { - [sym__simple_statements] = STATE(814), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [sym_global_statement] = STATE(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -24236,8 +24140,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -24264,58 +24168,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(129)] = { - [sym__simple_statements] = STATE(720), - [sym_import_statement] = STATE(2433), - [sym_future_import_statement] = STATE(2433), - [sym_import_from_statement] = STATE(2433), - [sym_print_statement] = STATE(2433), - [sym_assert_statement] = STATE(2433), - [sym_expression_statement] = STATE(2433), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2433), - [sym_delete_statement] = STATE(2433), - [sym_raise_statement] = STATE(2433), - [sym_pass_statement] = STATE(2433), - [sym_break_statement] = STATE(2433), - [sym_continue_statement] = STATE(2433), - [sym_global_statement] = STATE(2433), - [sym_nonlocal_statement] = STATE(2433), - [sym_exec_statement] = STATE(2433), - [sym_type_alias_statement] = STATE(2433), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -24329,8 +24233,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -24357,58 +24261,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(130)] = { - [sym__simple_statements] = STATE(620), - [sym_import_statement] = STATE(2433), - [sym_future_import_statement] = STATE(2433), - [sym_import_from_statement] = STATE(2433), - [sym_print_statement] = STATE(2433), - [sym_assert_statement] = STATE(2433), - [sym_expression_statement] = STATE(2433), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2433), - [sym_delete_statement] = STATE(2433), - [sym_raise_statement] = STATE(2433), - [sym_pass_statement] = STATE(2433), - [sym_break_statement] = STATE(2433), - [sym_continue_statement] = STATE(2433), - [sym_global_statement] = STATE(2433), - [sym_nonlocal_statement] = STATE(2433), - [sym_exec_statement] = STATE(2433), - [sym_type_alias_statement] = STATE(2433), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -24422,8 +24326,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -24450,58 +24354,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(131)] = { - [sym__simple_statements] = STATE(1811), - [sym_import_statement] = STATE(2344), - [sym_future_import_statement] = STATE(2344), - [sym_import_from_statement] = STATE(2344), - [sym_print_statement] = STATE(2344), - [sym_assert_statement] = STATE(2344), - [sym_expression_statement] = STATE(2344), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2344), - [sym_delete_statement] = STATE(2344), - [sym_raise_statement] = STATE(2344), - [sym_pass_statement] = STATE(2344), - [sym_break_statement] = STATE(2344), - [sym_continue_statement] = STATE(2344), - [sym_global_statement] = STATE(2344), - [sym_nonlocal_statement] = STATE(2344), - [sym_exec_statement] = STATE(2344), - [sym_type_alias_statement] = STATE(2344), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -24515,8 +24419,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -24543,58 +24447,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(132)] = { - [sym__simple_statements] = STATE(753), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [sym_global_statement] = STATE(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -24608,8 +24512,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -24636,58 +24540,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(133)] = { - [sym__simple_statements] = STATE(769), - [sym_import_statement] = STATE(2488), - [sym_future_import_statement] = STATE(2488), - [sym_import_from_statement] = STATE(2488), - [sym_print_statement] = STATE(2488), - [sym_assert_statement] = STATE(2488), - [sym_expression_statement] = STATE(2488), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2488), - [sym_delete_statement] = STATE(2488), - [sym_raise_statement] = STATE(2488), - [sym_pass_statement] = STATE(2488), - [sym_break_statement] = STATE(2488), - [sym_continue_statement] = STATE(2488), - [sym_global_statement] = STATE(2488), - [sym_nonlocal_statement] = STATE(2488), - [sym_exec_statement] = STATE(2488), - [sym_type_alias_statement] = STATE(2488), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -24701,8 +24605,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -24729,58 +24633,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(134)] = { - [sym__simple_statements] = STATE(713), - [sym_import_statement] = STATE(2433), - [sym_future_import_statement] = STATE(2433), - [sym_import_from_statement] = STATE(2433), - [sym_print_statement] = STATE(2433), - [sym_assert_statement] = STATE(2433), - [sym_expression_statement] = STATE(2433), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2433), - [sym_delete_statement] = STATE(2433), - [sym_raise_statement] = STATE(2433), - [sym_pass_statement] = STATE(2433), - [sym_break_statement] = STATE(2433), - [sym_continue_statement] = STATE(2433), - [sym_global_statement] = STATE(2433), - [sym_nonlocal_statement] = STATE(2433), - [sym_exec_statement] = STATE(2433), - [sym_type_alias_statement] = STATE(2433), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -24794,8 +24697,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -24818,61 +24721,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(609), - [sym__indent] = ACTIONS(611), [sym_string_start] = ACTIONS(81), }, [STATE(135)] = { - [sym_import_statement] = STATE(2513), - [sym_future_import_statement] = STATE(2513), - [sym_import_from_statement] = STATE(2513), - [sym_print_statement] = STATE(2513), - [sym_assert_statement] = STATE(2513), - [sym_expression_statement] = STATE(2513), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2513), - [sym_delete_statement] = STATE(2513), - [sym_raise_statement] = STATE(2513), - [sym_pass_statement] = STATE(2513), - [sym_break_statement] = STATE(2513), - [sym_continue_statement] = STATE(2513), - [sym_global_statement] = STATE(2513), - [sym_nonlocal_statement] = STATE(2513), - [sym_exec_statement] = STATE(2513), - [sym_type_alias_statement] = STATE(2513), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -24886,8 +24788,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -24909,61 +24811,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(613), + [sym__newline] = ACTIONS(611), [sym_string_start] = ACTIONS(81), }, [STATE(136)] = { - [sym_import_statement] = STATE(2513), - [sym_future_import_statement] = STATE(2513), - [sym_import_from_statement] = STATE(2513), - [sym_print_statement] = STATE(2513), - [sym_assert_statement] = STATE(2513), - [sym_expression_statement] = STATE(2513), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2513), - [sym_delete_statement] = STATE(2513), - [sym_raise_statement] = STATE(2513), - [sym_pass_statement] = STATE(2513), - [sym_break_statement] = STATE(2513), - [sym_continue_statement] = STATE(2513), - [sym_global_statement] = STATE(2513), - [sym_nonlocal_statement] = STATE(2513), - [sym_exec_statement] = STATE(2513), - [sym_type_alias_statement] = STATE(2513), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -24977,8 +24879,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -25000,61 +24902,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(615), + [sym__newline] = ACTIONS(613), [sym_string_start] = ACTIONS(81), }, [STATE(137)] = { - [sym_import_statement] = STATE(2513), - [sym_future_import_statement] = STATE(2513), - [sym_import_from_statement] = STATE(2513), - [sym_print_statement] = STATE(2513), - [sym_assert_statement] = STATE(2513), - [sym_expression_statement] = STATE(2513), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2513), - [sym_delete_statement] = STATE(2513), - [sym_raise_statement] = STATE(2513), - [sym_pass_statement] = STATE(2513), - [sym_break_statement] = STATE(2513), - [sym_continue_statement] = STATE(2513), - [sym_global_statement] = STATE(2513), - [sym_nonlocal_statement] = STATE(2513), - [sym_exec_statement] = STATE(2513), - [sym_type_alias_statement] = STATE(2513), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -25068,8 +24970,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -25091,61 +24993,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__newline] = ACTIONS(615), [sym_string_start] = ACTIONS(81), }, [STATE(138)] = { - [sym_import_statement] = STATE(2513), - [sym_future_import_statement] = STATE(2513), - [sym_import_from_statement] = STATE(2513), - [sym_print_statement] = STATE(2513), - [sym_assert_statement] = STATE(2513), - [sym_expression_statement] = STATE(2513), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2513), - [sym_delete_statement] = STATE(2513), - [sym_raise_statement] = STATE(2513), - [sym_pass_statement] = STATE(2513), - [sym_break_statement] = STATE(2513), - [sym_continue_statement] = STATE(2513), - [sym_global_statement] = STATE(2513), - [sym_nonlocal_statement] = STATE(2513), - [sym_exec_statement] = STATE(2513), - [sym_type_alias_statement] = STATE(2513), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -25159,8 +25061,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -25182,61 +25084,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(619), + [sym__newline] = ACTIONS(617), [sym_string_start] = ACTIONS(81), }, [STATE(139)] = { - [sym_import_statement] = STATE(2513), - [sym_future_import_statement] = STATE(2513), - [sym_import_from_statement] = STATE(2513), - [sym_print_statement] = STATE(2513), - [sym_assert_statement] = STATE(2513), - [sym_expression_statement] = STATE(2513), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2513), - [sym_delete_statement] = STATE(2513), - [sym_raise_statement] = STATE(2513), - [sym_pass_statement] = STATE(2513), - [sym_break_statement] = STATE(2513), - [sym_continue_statement] = STATE(2513), - [sym_global_statement] = STATE(2513), - [sym_nonlocal_statement] = STATE(2513), - [sym_exec_statement] = STATE(2513), - [sym_type_alias_statement] = STATE(2513), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -25250,8 +25152,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -25273,61 +25175,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(619), [sym_string_start] = ACTIONS(81), }, [STATE(140)] = { - [sym_import_statement] = STATE(2513), - [sym_future_import_statement] = STATE(2513), - [sym_import_from_statement] = STATE(2513), - [sym_print_statement] = STATE(2513), - [sym_assert_statement] = STATE(2513), - [sym_expression_statement] = STATE(2513), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2513), - [sym_delete_statement] = STATE(2513), - [sym_raise_statement] = STATE(2513), - [sym_pass_statement] = STATE(2513), - [sym_break_statement] = STATE(2513), - [sym_continue_statement] = STATE(2513), - [sym_global_statement] = STATE(2513), - [sym_nonlocal_statement] = STATE(2513), - [sym_exec_statement] = STATE(2513), - [sym_type_alias_statement] = STATE(2513), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -25341,8 +25243,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -25364,61 +25266,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(621), [sym_string_start] = ACTIONS(81), }, [STATE(141)] = { - [sym_import_statement] = STATE(2513), - [sym_future_import_statement] = STATE(2513), - [sym_import_from_statement] = STATE(2513), - [sym_print_statement] = STATE(2513), - [sym_assert_statement] = STATE(2513), - [sym_expression_statement] = STATE(2513), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2513), - [sym_delete_statement] = STATE(2513), - [sym_raise_statement] = STATE(2513), - [sym_pass_statement] = STATE(2513), - [sym_break_statement] = STATE(2513), - [sym_continue_statement] = STATE(2513), - [sym_global_statement] = STATE(2513), - [sym_nonlocal_statement] = STATE(2513), - [sym_exec_statement] = STATE(2513), - [sym_type_alias_statement] = STATE(2513), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -25432,8 +25334,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -25455,61 +25357,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(623), [sym_string_start] = ACTIONS(81), }, [STATE(142)] = { - [sym_import_statement] = STATE(2513), - [sym_future_import_statement] = STATE(2513), - [sym_import_from_statement] = STATE(2513), - [sym_print_statement] = STATE(2513), - [sym_assert_statement] = STATE(2513), - [sym_expression_statement] = STATE(2513), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2513), - [sym_delete_statement] = STATE(2513), - [sym_raise_statement] = STATE(2513), - [sym_pass_statement] = STATE(2513), - [sym_break_statement] = STATE(2513), - [sym_continue_statement] = STATE(2513), - [sym_global_statement] = STATE(2513), - [sym_nonlocal_statement] = STATE(2513), - [sym_exec_statement] = STATE(2513), - [sym_type_alias_statement] = STATE(2513), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -25523,8 +25425,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -25546,61 +25448,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(625), [sym_string_start] = ACTIONS(81), }, [STATE(143)] = { - [sym_import_statement] = STATE(2513), - [sym_future_import_statement] = STATE(2513), - [sym_import_from_statement] = STATE(2513), - [sym_print_statement] = STATE(2513), - [sym_assert_statement] = STATE(2513), - [sym_expression_statement] = STATE(2513), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2513), - [sym_delete_statement] = STATE(2513), - [sym_raise_statement] = STATE(2513), - [sym_pass_statement] = STATE(2513), - [sym_break_statement] = STATE(2513), - [sym_continue_statement] = STATE(2513), - [sym_global_statement] = STATE(2513), - [sym_nonlocal_statement] = STATE(2513), - [sym_exec_statement] = STATE(2513), - [sym_type_alias_statement] = STATE(2513), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -25614,8 +25516,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -25637,61 +25539,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(627), [sym_string_start] = ACTIONS(81), }, [STATE(144)] = { - [sym_import_statement] = STATE(2513), - [sym_future_import_statement] = STATE(2513), - [sym_import_from_statement] = STATE(2513), - [sym_print_statement] = STATE(2513), - [sym_assert_statement] = STATE(2513), - [sym_expression_statement] = STATE(2513), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2513), - [sym_delete_statement] = STATE(2513), - [sym_raise_statement] = STATE(2513), - [sym_pass_statement] = STATE(2513), - [sym_break_statement] = STATE(2513), - [sym_continue_statement] = STATE(2513), - [sym_global_statement] = STATE(2513), - [sym_nonlocal_statement] = STATE(2513), - [sym_exec_statement] = STATE(2513), - [sym_type_alias_statement] = STATE(2513), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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), @@ -25705,8 +25607,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(409), - [anon_sym_async] = ACTIONS(411), + [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), @@ -25728,3037 +25630,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(631), [sym_string_start] = ACTIONS(81), }, [STATE(145)] = { - [sym_import_statement] = STATE(2513), - [sym_future_import_statement] = STATE(2513), - [sym_import_from_statement] = STATE(2513), - [sym_print_statement] = STATE(2513), - [sym_assert_statement] = STATE(2513), - [sym_expression_statement] = STATE(2513), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2513), - [sym_delete_statement] = STATE(2513), - [sym_raise_statement] = STATE(2513), - [sym_pass_statement] = STATE(2513), - [sym_break_statement] = STATE(2513), - [sym_continue_statement] = STATE(2513), - [sym_global_statement] = STATE(2513), - [sym_nonlocal_statement] = STATE(2513), - [sym_exec_statement] = STATE(2513), - [sym_type_alias_statement] = STATE(2513), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [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(409), - [anon_sym_async] = ACTIONS(411), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_DASH] = ACTIONS(65), + [sym_list_splat_pattern] = STATE(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(633), + [sym__newline] = ACTIONS(265), [sym_string_start] = ACTIONS(81), }, [STATE(146)] = { - [sym_import_statement] = STATE(2513), - [sym_future_import_statement] = STATE(2513), - [sym_import_from_statement] = STATE(2513), - [sym_print_statement] = STATE(2513), - [sym_assert_statement] = STATE(2513), - [sym_expression_statement] = STATE(2513), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2513), - [sym_delete_statement] = STATE(2513), - [sym_raise_statement] = STATE(2513), - [sym_pass_statement] = STATE(2513), - [sym_break_statement] = STATE(2513), - [sym_continue_statement] = STATE(2513), - [sym_global_statement] = STATE(2513), - [sym_nonlocal_statement] = STATE(2513), - [sym_exec_statement] = STATE(2513), - [sym_type_alias_statement] = STATE(2513), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [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(409), - [anon_sym_async] = ACTIONS(411), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_DASH] = ACTIONS(65), + [sym_list_splat_pattern] = STATE(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(635), + [sym__newline] = ACTIONS(265), [sym_string_start] = ACTIONS(81), }, [STATE(147)] = { - [sym_import_statement] = STATE(2513), - [sym_future_import_statement] = STATE(2513), - [sym_import_from_statement] = STATE(2513), - [sym_print_statement] = STATE(2513), - [sym_assert_statement] = STATE(2513), - [sym_expression_statement] = STATE(2513), - [sym_named_expression] = STATE(1659), - [sym__named_expression_lhs] = STATE(2724), - [sym_return_statement] = STATE(2513), - [sym_delete_statement] = STATE(2513), - [sym_raise_statement] = STATE(2513), - [sym_pass_statement] = STATE(2513), - [sym_break_statement] = STATE(2513), - [sym_continue_statement] = STATE(2513), - [sym_global_statement] = STATE(2513), - [sym_nonlocal_statement] = STATE(2513), - [sym_exec_statement] = STATE(2513), - [sym_type_alias_statement] = STATE(2513), - [sym_pattern] = STATE(1620), - [sym_tuple_pattern] = STATE(1638), - [sym_list_pattern] = STATE(1638), - [sym_list_splat_pattern] = STATE(632), - [sym_as_pattern] = STATE(1659), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(951), - [sym_not_operator] = STATE(1659), - [sym_boolean_operator] = STATE(1659), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_comparison_operator] = STATE(1659), - [sym_lambda] = STATE(1659), - [sym_assignment] = STATE(2501), - [sym_augmented_assignment] = STATE(2501), - [sym_pattern_list] = STATE(1645), - [sym_yield] = STATE(2501), - [sym_attribute] = STATE(635), - [sym_subscript] = STATE(635), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_conditional_expression] = STATE(1659), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [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(409), - [anon_sym_async] = ACTIONS(411), - [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_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_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(643), + [sym_string_start] = ACTIONS(316), }, [STATE(148)] = { - [sym_list_splat_pattern] = STATE(1049), - [sym_primary_expression] = STATE(965), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_attribute] = STATE(1052), - [sym_subscript] = STATE(1052), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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(269), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_COMMA] = ACTIONS(276), - [anon_sym_as] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_print] = ACTIONS(641), - [anon_sym_GT_GT] = ACTIONS(271), - [anon_sym_COLON_EQ] = ACTIONS(284), - [anon_sym_if] = ACTIONS(271), - [anon_sym_COLON] = ACTIONS(296), - [anon_sym_match] = ACTIONS(643), - [anon_sym_async] = ACTIONS(641), - [anon_sym_in] = ACTIONS(271), - [anon_sym_STAR_STAR] = ACTIONS(271), - [anon_sym_exec] = ACTIONS(641), - [anon_sym_type] = ACTIONS(643), - [anon_sym_EQ] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(271), + [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(647), - [anon_sym_not] = ACTIONS(271), - [anon_sym_and] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(271), - [anon_sym_SLASH_SLASH] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(271), - [anon_sym_CARET] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(271), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(267), + [anon_sym_and] = ACTIONS(267), + [anon_sym_or] = ACTIONS(267), + [anon_sym_SLASH] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(269), - [anon_sym_EQ_EQ] = ACTIONS(269), - [anon_sym_BANG_EQ] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(269), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_LT_GT] = ACTIONS(269), - [anon_sym_PLUS_EQ] = ACTIONS(312), - [anon_sym_DASH_EQ] = ACTIONS(312), - [anon_sym_STAR_EQ] = ACTIONS(312), - [anon_sym_SLASH_EQ] = ACTIONS(312), - [anon_sym_AT_EQ] = ACTIONS(312), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(312), - [anon_sym_PERCENT_EQ] = ACTIONS(312), - [anon_sym_STAR_STAR_EQ] = ACTIONS(312), - [anon_sym_GT_GT_EQ] = ACTIONS(312), - [anon_sym_LT_LT_EQ] = ACTIONS(312), - [anon_sym_AMP_EQ] = ACTIONS(312), - [anon_sym_CARET_EQ] = ACTIONS(312), - [anon_sym_PIPE_EQ] = ACTIONS(312), + [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(649), + [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(269), + [sym__newline] = ACTIONS(265), [sym_string_start] = ACTIONS(81), }, [STATE(149)] = { - [sym_list_splat_pattern] = STATE(1049), - [sym_primary_expression] = STATE(965), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_attribute] = STATE(1052), - [sym_subscript] = STATE(1052), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [sym_identifier] = ACTIONS(77), - [anon_sym_SEMI] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_COMMA] = ACTIONS(276), - [anon_sym_as] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_print] = ACTIONS(641), - [anon_sym_GT_GT] = ACTIONS(271), - [anon_sym_COLON_EQ] = ACTIONS(284), - [anon_sym_if] = ACTIONS(271), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_match] = ACTIONS(643), - [anon_sym_async] = ACTIONS(641), - [anon_sym_in] = ACTIONS(271), - [anon_sym_STAR_STAR] = ACTIONS(271), - [anon_sym_exec] = ACTIONS(641), - [anon_sym_type] = ACTIONS(643), - [anon_sym_EQ] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_not] = ACTIONS(271), - [anon_sym_and] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(271), - [anon_sym_SLASH_SLASH] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(271), - [anon_sym_CARET] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(271), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(269), - [anon_sym_EQ_EQ] = ACTIONS(269), - [anon_sym_BANG_EQ] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(269), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_LT_GT] = ACTIONS(269), - [anon_sym_PLUS_EQ] = ACTIONS(312), - [anon_sym_DASH_EQ] = ACTIONS(312), - [anon_sym_STAR_EQ] = ACTIONS(312), - [anon_sym_SLASH_EQ] = ACTIONS(312), - [anon_sym_AT_EQ] = ACTIONS(312), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(312), - [anon_sym_PERCENT_EQ] = ACTIONS(312), - [anon_sym_STAR_STAR_EQ] = ACTIONS(312), - [anon_sym_GT_GT_EQ] = ACTIONS(312), - [anon_sym_LT_LT_EQ] = ACTIONS(312), - [anon_sym_AMP_EQ] = ACTIONS(312), - [anon_sym_CARET_EQ] = ACTIONS(312), - [anon_sym_PIPE_EQ] = ACTIONS(312), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(649), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), + [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(269), - [sym_string_start] = ACTIONS(81), + [sym_string_start] = ACTIONS(684), }, [STATE(150)] = { - [sym_list_splat_pattern] = STATE(1300), - [sym_primary_expression] = STATE(1105), - [sym_binary_operator] = STATE(1392), - [sym_unary_operator] = STATE(1392), - [sym_attribute] = STATE(1392), - [sym_subscript] = STATE(1392), - [sym_call] = STATE(1392), - [sym_list] = STATE(1392), - [sym_set] = STATE(1392), - [sym_tuple] = STATE(1392), - [sym_dictionary] = STATE(1392), - [sym_list_comprehension] = STATE(1392), - [sym_dictionary_comprehension] = STATE(1392), - [sym_set_comprehension] = STATE(1392), - [sym_generator_expression] = STATE(1392), - [sym_parenthesized_expression] = STATE(1392), - [sym_concatenated_string] = STATE(1392), - [sym_string] = STATE(1003), - [sym_await] = STATE(1392), - [sym_identifier] = ACTIONS(316), - [anon_sym_SEMI] = ACTIONS(651), - [anon_sym_DOT] = ACTIONS(653), - [anon_sym_LPAREN] = ACTIONS(656), - [anon_sym_COMMA] = ACTIONS(651), - [anon_sym_as] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(660), - [anon_sym_print] = ACTIONS(662), - [anon_sym_GT_GT] = ACTIONS(653), - [anon_sym_if] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(651), - [anon_sym_match] = ACTIONS(664), - [anon_sym_async] = ACTIONS(662), - [anon_sym_in] = ACTIONS(658), - [anon_sym_STAR_STAR] = ACTIONS(653), - [anon_sym_exec] = ACTIONS(662), - [anon_sym_type] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(658), - [anon_sym_LBRACK] = ACTIONS(666), - [anon_sym_AT] = ACTIONS(653), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_PIPE] = ACTIONS(653), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_not] = ACTIONS(658), - [anon_sym_and] = ACTIONS(658), - [anon_sym_or] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(653), - [anon_sym_PERCENT] = ACTIONS(653), - [anon_sym_SLASH_SLASH] = ACTIONS(653), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_CARET] = ACTIONS(653), - [anon_sym_LT_LT] = ACTIONS(653), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_is] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_LT_EQ] = ACTIONS(651), - [anon_sym_EQ_EQ] = ACTIONS(651), - [anon_sym_BANG_EQ] = ACTIONS(651), - [anon_sym_GT_EQ] = ACTIONS(651), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_LT_GT] = ACTIONS(651), - [anon_sym_PLUS_EQ] = ACTIONS(651), - [anon_sym_DASH_EQ] = ACTIONS(651), - [anon_sym_STAR_EQ] = ACTIONS(651), - [anon_sym_SLASH_EQ] = ACTIONS(651), - [anon_sym_AT_EQ] = ACTIONS(651), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(651), - [anon_sym_PERCENT_EQ] = ACTIONS(651), - [anon_sym_STAR_STAR_EQ] = ACTIONS(651), - [anon_sym_GT_GT_EQ] = ACTIONS(651), - [anon_sym_LT_LT_EQ] = ACTIONS(651), - [anon_sym_AMP_EQ] = ACTIONS(651), - [anon_sym_CARET_EQ] = ACTIONS(651), - [anon_sym_PIPE_EQ] = ACTIONS(651), - [sym_ellipsis] = ACTIONS(314), - [sym_integer] = ACTIONS(316), - [sym_float] = ACTIONS(314), - [anon_sym_await] = ACTIONS(670), - [sym_true] = ACTIONS(316), - [sym_false] = ACTIONS(316), - [sym_none] = ACTIONS(316), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(651), - [sym_string_start] = ACTIONS(320), - }, - [STATE(151)] = { - [sym_list_splat_pattern] = STATE(1049), - [sym_primary_expression] = STATE(965), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_attribute] = STATE(1052), - [sym_subscript] = STATE(1052), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), + [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(269), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_from] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_COMMA] = ACTIONS(269), - [anon_sym_as] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_print] = ACTIONS(641), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_COLON_EQ] = ACTIONS(284), - [anon_sym_if] = ACTIONS(271), - [anon_sym_COLON] = ACTIONS(271), - [anon_sym_match] = ACTIONS(643), - [anon_sym_async] = ACTIONS(641), - [anon_sym_in] = ACTIONS(271), - [anon_sym_STAR_STAR] = ACTIONS(269), - [anon_sym_exec] = ACTIONS(641), - [anon_sym_type] = ACTIONS(643), - [anon_sym_EQ] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(269), + [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(269), + [anon_sym_PIPE] = ACTIONS(265), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(271), - [anon_sym_and] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(269), - [anon_sym_SLASH_SLASH] = ACTIONS(269), - [anon_sym_AMP] = ACTIONS(269), - [anon_sym_CARET] = ACTIONS(269), - [anon_sym_LT_LT] = ACTIONS(269), + [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_is] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(269), - [anon_sym_EQ_EQ] = ACTIONS(269), - [anon_sym_BANG_EQ] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(269), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_LT_GT] = ACTIONS(269), + [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(649), + [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(269), + [sym__newline] = ACTIONS(265), [sym_string_start] = ACTIONS(81), }, + [STATE(151)] = { + [sym_list_splat_pattern] = STATE(1372), + [sym_primary_expression] = STATE(1116), + [sym_binary_operator] = STATE(1377), + [sym_unary_operator] = STATE(1377), + [sym_attribute] = STATE(1377), + [sym_subscript] = STATE(1377), + [sym_call] = STATE(1377), + [sym_list] = STATE(1377), + [sym_set] = STATE(1377), + [sym_tuple] = STATE(1377), + [sym_dictionary] = STATE(1377), + [sym_list_comprehension] = STATE(1377), + [sym_dictionary_comprehension] = STATE(1377), + [sym_set_comprehension] = STATE(1377), + [sym_generator_expression] = STATE(1377), + [sym_parenthesized_expression] = STATE(1377), + [sym_concatenated_string] = STATE(1377), + [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_string_start] = ACTIONS(316), + }, [STATE(152)] = { - [sym_list_splat_pattern] = STATE(1049), - [sym_primary_expression] = STATE(965), - [sym_binary_operator] = STATE(1052), - [sym_unary_operator] = STATE(1052), - [sym_attribute] = STATE(1052), - [sym_subscript] = STATE(1052), - [sym_call] = STATE(1052), - [sym_list] = STATE(1052), - [sym_set] = STATE(1052), - [sym_tuple] = STATE(1052), - [sym_dictionary] = STATE(1052), - [sym_list_comprehension] = STATE(1052), - [sym_dictionary_comprehension] = STATE(1052), - [sym_set_comprehension] = STATE(1052), - [sym_generator_expression] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_concatenated_string] = STATE(1052), - [sym_string] = STATE(953), - [sym_await] = STATE(1052), - [sym_identifier] = ACTIONS(77), - [anon_sym_SEMI] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_from] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_COMMA] = ACTIONS(269), - [anon_sym_as] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_print] = ACTIONS(641), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_if] = ACTIONS(271), - [anon_sym_COLON] = ACTIONS(269), - [anon_sym_match] = ACTIONS(643), - [anon_sym_async] = ACTIONS(641), - [anon_sym_in] = ACTIONS(271), - [anon_sym_STAR_STAR] = ACTIONS(269), - [anon_sym_exec] = ACTIONS(641), - [anon_sym_type] = ACTIONS(643), - [anon_sym_EQ] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(269), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(271), - [anon_sym_and] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(269), - [anon_sym_SLASH_SLASH] = ACTIONS(269), - [anon_sym_AMP] = ACTIONS(269), - [anon_sym_CARET] = ACTIONS(269), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(269), - [anon_sym_EQ_EQ] = ACTIONS(269), - [anon_sym_BANG_EQ] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(269), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_LT_GT] = ACTIONS(269), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(649), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), + [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(269), - [sym_string_start] = ACTIONS(81), + [sym_string_start] = ACTIONS(684), }, [STATE(153)] = { - [sym_list_splat_pattern] = STATE(1212), - [sym_primary_expression] = STATE(1020), - [sym_binary_operator] = STATE(1251), - [sym_unary_operator] = STATE(1251), - [sym_attribute] = STATE(1251), - [sym_subscript] = STATE(1251), - [sym_call] = STATE(1251), - [sym_list] = STATE(1251), - [sym_set] = STATE(1251), - [sym_tuple] = STATE(1251), - [sym_dictionary] = STATE(1251), - [sym_list_comprehension] = STATE(1251), - [sym_dictionary_comprehension] = STATE(1251), - [sym_set_comprehension] = STATE(1251), - [sym_generator_expression] = STATE(1251), - [sym_parenthesized_expression] = STATE(1251), - [sym_concatenated_string] = STATE(1251), - [sym_string] = STATE(961), - [sym_await] = STATE(1251), - [sym_identifier] = ACTIONS(672), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_COMMA] = ACTIONS(269), - [anon_sym_as] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_print] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_COLON_EQ] = ACTIONS(284), - [anon_sym_if] = ACTIONS(271), - [anon_sym_COLON] = ACTIONS(271), - [anon_sym_match] = ACTIONS(680), - [anon_sym_async] = ACTIONS(678), - [anon_sym_in] = ACTIONS(271), - [anon_sym_STAR_STAR] = ACTIONS(269), - [anon_sym_exec] = ACTIONS(678), - [anon_sym_type] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_AT] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(684), - [anon_sym_PIPE] = ACTIONS(269), - [anon_sym_LBRACE] = ACTIONS(686), - [anon_sym_RBRACE] = ACTIONS(269), - [anon_sym_PLUS] = ACTIONS(684), - [anon_sym_not] = ACTIONS(271), - [anon_sym_and] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(269), - [anon_sym_SLASH_SLASH] = ACTIONS(269), - [anon_sym_AMP] = ACTIONS(269), - [anon_sym_CARET] = ACTIONS(269), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_TILDE] = ACTIONS(684), - [anon_sym_is] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(269), - [anon_sym_EQ_EQ] = ACTIONS(269), - [anon_sym_BANG_EQ] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(269), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_LT_GT] = ACTIONS(269), - [sym_ellipsis] = ACTIONS(688), - [sym_type_conversion] = ACTIONS(269), - [sym_integer] = ACTIONS(672), - [sym_float] = ACTIONS(688), - [anon_sym_await] = ACTIONS(690), - [sym_true] = ACTIONS(672), - [sym_false] = ACTIONS(672), - [sym_none] = ACTIONS(672), + [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_string_start] = ACTIONS(692), + [sym__newline] = ACTIONS(643), + [sym_string_start] = ACTIONS(316), }, [STATE(154)] = { - [sym_list_splat_pattern] = STATE(1300), - [sym_primary_expression] = STATE(1105), - [sym_binary_operator] = STATE(1392), - [sym_unary_operator] = STATE(1392), - [sym_attribute] = STATE(1392), - [sym_subscript] = STATE(1392), - [sym_call] = STATE(1392), - [sym_list] = STATE(1392), - [sym_set] = STATE(1392), - [sym_tuple] = STATE(1392), - [sym_dictionary] = STATE(1392), - [sym_list_comprehension] = STATE(1392), - [sym_dictionary_comprehension] = STATE(1392), - [sym_set_comprehension] = STATE(1392), - [sym_generator_expression] = STATE(1392), - [sym_parenthesized_expression] = STATE(1392), - [sym_concatenated_string] = STATE(1392), - [sym_string] = STATE(1003), - [sym_await] = STATE(1392), - [sym_identifier] = ACTIONS(316), - [anon_sym_SEMI] = ACTIONS(651), - [anon_sym_DOT] = ACTIONS(653), - [anon_sym_from] = ACTIONS(658), - [anon_sym_LPAREN] = ACTIONS(656), - [anon_sym_COMMA] = ACTIONS(651), - [anon_sym_as] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(660), - [anon_sym_print] = ACTIONS(662), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_if] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(651), - [anon_sym_match] = ACTIONS(664), - [anon_sym_async] = ACTIONS(662), - [anon_sym_in] = ACTIONS(658), - [anon_sym_STAR_STAR] = ACTIONS(694), - [anon_sym_exec] = ACTIONS(662), - [anon_sym_type] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(658), - [anon_sym_LBRACK] = ACTIONS(666), - [anon_sym_AT] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(308), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(308), - [anon_sym_not] = ACTIONS(658), - [anon_sym_and] = ACTIONS(658), - [anon_sym_or] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(653), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_is] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_LT_EQ] = ACTIONS(651), - [anon_sym_EQ_EQ] = ACTIONS(651), - [anon_sym_BANG_EQ] = ACTIONS(651), - [anon_sym_GT_EQ] = ACTIONS(651), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_LT_GT] = ACTIONS(651), - [sym_ellipsis] = ACTIONS(314), - [sym_integer] = ACTIONS(316), - [sym_float] = ACTIONS(314), - [anon_sym_await] = ACTIONS(670), - [sym_true] = ACTIONS(316), - [sym_false] = ACTIONS(316), - [sym_none] = ACTIONS(316), + [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_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__newline] = ACTIONS(651), - [sym_string_start] = ACTIONS(320), + [sym_string_start] = ACTIONS(709), }, [STATE(155)] = { - [sym_list_splat_pattern] = STATE(1212), - [sym_primary_expression] = STATE(1020), - [sym_binary_operator] = STATE(1251), - [sym_unary_operator] = STATE(1251), - [sym_attribute] = STATE(1251), - [sym_subscript] = STATE(1251), - [sym_call] = STATE(1251), - [sym_list] = STATE(1251), - [sym_set] = STATE(1251), - [sym_tuple] = STATE(1251), - [sym_dictionary] = STATE(1251), - [sym_list_comprehension] = STATE(1251), - [sym_dictionary_comprehension] = STATE(1251), - [sym_set_comprehension] = STATE(1251), - [sym_generator_expression] = STATE(1251), - [sym_parenthesized_expression] = STATE(1251), - [sym_concatenated_string] = STATE(1251), - [sym_string] = STATE(961), - [sym_await] = STATE(1251), - [sym_identifier] = ACTIONS(672), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_COMMA] = ACTIONS(276), - [anon_sym_as] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_print] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_COLON_EQ] = ACTIONS(284), - [anon_sym_if] = ACTIONS(271), - [anon_sym_COLON] = ACTIONS(271), - [anon_sym_match] = ACTIONS(680), - [anon_sym_async] = ACTIONS(678), - [anon_sym_in] = ACTIONS(271), - [anon_sym_STAR_STAR] = ACTIONS(269), - [anon_sym_exec] = ACTIONS(678), - [anon_sym_type] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_AT] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(684), - [anon_sym_PIPE] = ACTIONS(269), - [anon_sym_LBRACE] = ACTIONS(686), - [anon_sym_RBRACE] = ACTIONS(269), - [anon_sym_PLUS] = ACTIONS(684), - [anon_sym_not] = ACTIONS(271), - [anon_sym_and] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(269), - [anon_sym_SLASH_SLASH] = ACTIONS(269), - [anon_sym_AMP] = ACTIONS(269), - [anon_sym_CARET] = ACTIONS(269), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_TILDE] = ACTIONS(684), - [anon_sym_is] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(269), - [anon_sym_EQ_EQ] = ACTIONS(269), - [anon_sym_BANG_EQ] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(269), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_LT_GT] = ACTIONS(269), - [sym_ellipsis] = ACTIONS(688), - [sym_type_conversion] = ACTIONS(269), - [sym_integer] = ACTIONS(672), - [sym_float] = ACTIONS(688), - [anon_sym_await] = ACTIONS(690), - [sym_true] = ACTIONS(672), - [sym_false] = ACTIONS(672), - [sym_none] = ACTIONS(672), + [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_string_start] = ACTIONS(692), + [sym_string_start] = ACTIONS(316), }, [STATE(156)] = { - [sym_list_splat_pattern] = STATE(1300), - [sym_primary_expression] = STATE(1105), - [sym_binary_operator] = STATE(1392), - [sym_unary_operator] = STATE(1392), - [sym_attribute] = STATE(1392), - [sym_subscript] = STATE(1392), - [sym_call] = STATE(1392), - [sym_list] = STATE(1392), - [sym_set] = STATE(1392), - [sym_tuple] = STATE(1392), - [sym_dictionary] = STATE(1392), - [sym_list_comprehension] = STATE(1392), - [sym_dictionary_comprehension] = STATE(1392), - [sym_set_comprehension] = STATE(1392), - [sym_generator_expression] = STATE(1392), - [sym_parenthesized_expression] = STATE(1392), - [sym_concatenated_string] = STATE(1392), - [sym_string] = STATE(1003), - [sym_await] = STATE(1392), - [sym_identifier] = ACTIONS(316), - [anon_sym_DOT] = ACTIONS(653), - [anon_sym_LPAREN] = ACTIONS(656), - [anon_sym_COMMA] = ACTIONS(651), - [anon_sym_as] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(660), - [anon_sym_print] = ACTIONS(662), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_if] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(651), - [anon_sym_match] = ACTIONS(664), - [anon_sym_async] = ACTIONS(662), - [anon_sym_for] = ACTIONS(658), - [anon_sym_in] = ACTIONS(658), - [anon_sym_STAR_STAR] = ACTIONS(694), - [anon_sym_exec] = ACTIONS(662), - [anon_sym_type] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(658), - [anon_sym_LBRACK] = ACTIONS(666), - [anon_sym_AT] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(308), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(308), - [anon_sym_not] = ACTIONS(658), - [anon_sym_and] = ACTIONS(658), - [anon_sym_or] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(653), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_is] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_LT_EQ] = ACTIONS(651), - [anon_sym_EQ_EQ] = ACTIONS(651), - [anon_sym_BANG_EQ] = ACTIONS(651), - [anon_sym_GT_EQ] = ACTIONS(651), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_LT_GT] = ACTIONS(651), - [sym_ellipsis] = ACTIONS(314), - [sym_type_conversion] = ACTIONS(651), - [sym_integer] = ACTIONS(316), - [sym_float] = ACTIONS(314), - [anon_sym_await] = ACTIONS(670), - [sym_true] = ACTIONS(316), - [sym_false] = ACTIONS(316), - [sym_none] = ACTIONS(316), + [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_string_start] = ACTIONS(320), + [sym_string_start] = ACTIONS(731), }, [STATE(157)] = { - [sym_list_splat_pattern] = STATE(1300), - [sym_primary_expression] = STATE(1105), - [sym_binary_operator] = STATE(1392), - [sym_unary_operator] = STATE(1392), - [sym_attribute] = STATE(1392), - [sym_subscript] = STATE(1392), - [sym_call] = STATE(1392), - [sym_list] = STATE(1392), - [sym_set] = STATE(1392), - [sym_tuple] = STATE(1392), - [sym_dictionary] = STATE(1392), - [sym_list_comprehension] = STATE(1392), - [sym_dictionary_comprehension] = STATE(1392), - [sym_set_comprehension] = STATE(1392), - [sym_generator_expression] = STATE(1392), - [sym_parenthesized_expression] = STATE(1392), - [sym_concatenated_string] = STATE(1392), - [sym_string] = STATE(1003), - [sym_await] = STATE(1392), - [sym_identifier] = ACTIONS(316), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(656), - [anon_sym_COMMA] = ACTIONS(269), - [anon_sym_as] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(660), - [anon_sym_print] = ACTIONS(662), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_COLON_EQ] = ACTIONS(284), - [anon_sym_if] = ACTIONS(271), - [anon_sym_COLON] = ACTIONS(271), - [anon_sym_else] = ACTIONS(271), - [anon_sym_match] = ACTIONS(664), - [anon_sym_async] = ACTIONS(662), - [anon_sym_in] = ACTIONS(271), - [anon_sym_STAR_STAR] = ACTIONS(269), - [anon_sym_exec] = ACTIONS(662), - [anon_sym_type] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(666), - [anon_sym_AT] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(308), - [anon_sym_PIPE] = ACTIONS(269), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(308), - [anon_sym_not] = ACTIONS(271), - [anon_sym_and] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(269), - [anon_sym_SLASH_SLASH] = ACTIONS(269), - [anon_sym_AMP] = ACTIONS(269), - [anon_sym_CARET] = ACTIONS(269), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_is] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(269), - [anon_sym_EQ_EQ] = ACTIONS(269), - [anon_sym_BANG_EQ] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(269), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_LT_GT] = ACTIONS(269), - [sym_ellipsis] = ACTIONS(314), - [sym_integer] = ACTIONS(316), - [sym_float] = ACTIONS(314), - [anon_sym_await] = ACTIONS(670), - [sym_true] = ACTIONS(316), - [sym_false] = ACTIONS(316), - [sym_none] = ACTIONS(316), + [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_string_start] = ACTIONS(320), + [sym_string_start] = ACTIONS(316), }, [STATE(158)] = { - [sym_list_splat_pattern] = STATE(1407), - [sym_primary_expression] = STATE(1042), - [sym_binary_operator] = STATE(1349), - [sym_unary_operator] = STATE(1349), - [sym_attribute] = STATE(1349), - [sym_subscript] = STATE(1349), - [sym_call] = STATE(1349), - [sym_list] = STATE(1349), - [sym_set] = STATE(1349), - [sym_tuple] = STATE(1349), - [sym_dictionary] = STATE(1349), - [sym_list_comprehension] = STATE(1349), - [sym_dictionary_comprehension] = STATE(1349), - [sym_set_comprehension] = STATE(1349), - [sym_generator_expression] = STATE(1349), - [sym_parenthesized_expression] = STATE(1349), - [sym_concatenated_string] = STATE(1349), - [sym_string] = STATE(977), - [sym_await] = STATE(1349), - [sym_identifier] = ACTIONS(697), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(699), - [anon_sym_RPAREN] = ACTIONS(269), - [anon_sym_COMMA] = ACTIONS(269), - [anon_sym_as] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(701), - [anon_sym_print] = ACTIONS(703), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_COLON_EQ] = ACTIONS(284), - [anon_sym_if] = ACTIONS(271), - [anon_sym_match] = ACTIONS(705), - [anon_sym_async] = ACTIONS(703), - [anon_sym_for] = ACTIONS(271), - [anon_sym_in] = ACTIONS(271), - [anon_sym_STAR_STAR] = ACTIONS(269), - [anon_sym_exec] = ACTIONS(703), - [anon_sym_type] = ACTIONS(705), - [anon_sym_EQ] = ACTIONS(707), - [anon_sym_LBRACK] = ACTIONS(709), - [anon_sym_AT] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(711), - [anon_sym_PIPE] = ACTIONS(269), - [anon_sym_LBRACE] = ACTIONS(713), - [anon_sym_PLUS] = ACTIONS(711), - [anon_sym_not] = ACTIONS(271), - [anon_sym_and] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(269), - [anon_sym_SLASH_SLASH] = ACTIONS(269), - [anon_sym_AMP] = ACTIONS(269), - [anon_sym_CARET] = ACTIONS(269), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_TILDE] = ACTIONS(711), - [anon_sym_is] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(269), - [anon_sym_EQ_EQ] = ACTIONS(269), - [anon_sym_BANG_EQ] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(269), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_LT_GT] = ACTIONS(269), - [sym_ellipsis] = ACTIONS(715), - [sym_integer] = ACTIONS(697), - [sym_float] = ACTIONS(715), - [anon_sym_await] = ACTIONS(717), - [sym_true] = ACTIONS(697), - [sym_false] = ACTIONS(697), - [sym_none] = ACTIONS(697), + [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_string_start] = ACTIONS(719), + [sym_string_start] = ACTIONS(684), }, [STATE(159)] = { - [sym_list_splat_pattern] = STATE(1213), - [sym_primary_expression] = STATE(1007), - [sym_binary_operator] = STATE(1190), - [sym_unary_operator] = STATE(1190), - [sym_attribute] = STATE(1190), - [sym_subscript] = STATE(1190), - [sym_call] = STATE(1190), - [sym_list] = STATE(1190), - [sym_set] = STATE(1190), - [sym_tuple] = STATE(1190), - [sym_dictionary] = STATE(1190), - [sym_list_comprehension] = STATE(1190), - [sym_dictionary_comprehension] = STATE(1190), - [sym_set_comprehension] = STATE(1190), - [sym_generator_expression] = STATE(1190), - [sym_parenthesized_expression] = STATE(1190), - [sym_concatenated_string] = STATE(1190), - [sym_string] = STATE(963), - [sym_await] = STATE(1190), - [sym_identifier] = ACTIONS(721), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(723), - [anon_sym_COMMA] = ACTIONS(269), - [anon_sym_as] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(725), - [anon_sym_print] = ACTIONS(727), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_COLON_EQ] = ACTIONS(284), - [anon_sym_if] = ACTIONS(271), - [anon_sym_COLON] = ACTIONS(271), - [anon_sym_match] = ACTIONS(729), - [anon_sym_async] = ACTIONS(727), - [anon_sym_for] = ACTIONS(271), - [anon_sym_in] = ACTIONS(271), - [anon_sym_STAR_STAR] = ACTIONS(269), - [anon_sym_exec] = ACTIONS(727), - [anon_sym_type] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_AT] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(733), - [anon_sym_PIPE] = ACTIONS(269), - [anon_sym_LBRACE] = ACTIONS(735), - [anon_sym_RBRACE] = ACTIONS(269), - [anon_sym_PLUS] = ACTIONS(733), - [anon_sym_not] = ACTIONS(271), - [anon_sym_and] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(269), - [anon_sym_SLASH_SLASH] = ACTIONS(269), - [anon_sym_AMP] = ACTIONS(269), - [anon_sym_CARET] = ACTIONS(269), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_TILDE] = ACTIONS(733), - [anon_sym_is] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(269), - [anon_sym_EQ_EQ] = ACTIONS(269), - [anon_sym_BANG_EQ] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(269), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_LT_GT] = ACTIONS(269), - [sym_ellipsis] = ACTIONS(737), - [sym_integer] = ACTIONS(721), - [sym_float] = ACTIONS(737), - [anon_sym_await] = ACTIONS(739), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_none] = ACTIONS(721), + [sym_list_splat_pattern] = STATE(1259), + [sym_primary_expression] = STATE(1014), + [sym_binary_operator] = STATE(1180), + [sym_unary_operator] = STATE(1180), + [sym_attribute] = STATE(1180), + [sym_subscript] = STATE(1180), + [sym_call] = STATE(1180), + [sym_list] = STATE(1180), + [sym_set] = STATE(1180), + [sym_tuple] = STATE(1180), + [sym_dictionary] = STATE(1180), + [sym_list_comprehension] = STATE(1180), + [sym_dictionary_comprehension] = STATE(1180), + [sym_set_comprehension] = STATE(1180), + [sym_generator_expression] = STATE(1180), + [sym_parenthesized_expression] = STATE(1180), + [sym_concatenated_string] = STATE(1180), + [sym_string] = STATE(958), + [sym_await] = STATE(1180), + [sym_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(741), + [sym_string_start] = ACTIONS(753), }, [STATE(160)] = { - [sym_list_splat_pattern] = STATE(1423), - [sym_primary_expression] = STATE(1224), - [sym_binary_operator] = STATE(1425), - [sym_unary_operator] = STATE(1425), - [sym_attribute] = STATE(1425), - [sym_subscript] = STATE(1425), - [sym_call] = STATE(1425), - [sym_list] = STATE(1425), - [sym_set] = STATE(1425), - [sym_tuple] = STATE(1425), - [sym_dictionary] = STATE(1425), - [sym_list_comprehension] = STATE(1425), - [sym_dictionary_comprehension] = STATE(1425), - [sym_set_comprehension] = STATE(1425), - [sym_generator_expression] = STATE(1425), - [sym_parenthesized_expression] = STATE(1425), - [sym_concatenated_string] = STATE(1425), - [sym_string] = STATE(1098), - [sym_await] = STATE(1425), - [sym_identifier] = ACTIONS(743), - [anon_sym_DOT] = ACTIONS(653), - [anon_sym_LPAREN] = ACTIONS(745), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_as] = ACTIONS(653), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_print] = ACTIONS(749), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_COLON_EQ] = ACTIONS(284), - [anon_sym_if] = ACTIONS(653), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_match] = ACTIONS(751), - [anon_sym_async] = ACTIONS(749), - [anon_sym_for] = ACTIONS(658), - [anon_sym_in] = ACTIONS(653), - [anon_sym_STAR_STAR] = ACTIONS(694), - [anon_sym_exec] = ACTIONS(749), - [anon_sym_type] = ACTIONS(751), - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_RBRACK] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_LBRACE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(755), - [anon_sym_not] = ACTIONS(653), - [anon_sym_and] = ACTIONS(653), - [anon_sym_or] = ACTIONS(653), - [anon_sym_SLASH] = ACTIONS(653), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(755), - [anon_sym_is] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(653), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(653), - [anon_sym_LT_GT] = ACTIONS(694), - [sym_ellipsis] = ACTIONS(759), - [sym_integer] = ACTIONS(743), - [sym_float] = ACTIONS(759), - [anon_sym_await] = ACTIONS(761), - [sym_true] = ACTIONS(743), - [sym_false] = ACTIONS(743), - [sym_none] = ACTIONS(743), + [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_string_start] = ACTIONS(763), + [sym_string_start] = ACTIONS(684), }, [STATE(161)] = { - [sym_list_splat_pattern] = STATE(1212), - [sym_primary_expression] = STATE(1020), - [sym_binary_operator] = STATE(1251), - [sym_unary_operator] = STATE(1251), - [sym_attribute] = STATE(1251), - [sym_subscript] = STATE(1251), - [sym_call] = STATE(1251), - [sym_list] = STATE(1251), - [sym_set] = STATE(1251), - [sym_tuple] = STATE(1251), - [sym_dictionary] = STATE(1251), - [sym_list_comprehension] = STATE(1251), - [sym_dictionary_comprehension] = STATE(1251), - [sym_set_comprehension] = STATE(1251), - [sym_generator_expression] = STATE(1251), - [sym_parenthesized_expression] = STATE(1251), - [sym_concatenated_string] = STATE(1251), - [sym_string] = STATE(961), - [sym_await] = STATE(1251), - [sym_identifier] = ACTIONS(672), - [anon_sym_DOT] = ACTIONS(653), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_as] = ACTIONS(653), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_print] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_COLON_EQ] = ACTIONS(284), - [anon_sym_if] = ACTIONS(653), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_match] = ACTIONS(680), - [anon_sym_async] = ACTIONS(678), - [anon_sym_for] = ACTIONS(658), - [anon_sym_in] = ACTIONS(653), - [anon_sym_STAR_STAR] = ACTIONS(694), - [anon_sym_exec] = ACTIONS(678), - [anon_sym_type] = ACTIONS(680), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_AT] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(684), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_LBRACE] = ACTIONS(686), - [anon_sym_RBRACE] = ACTIONS(694), - [anon_sym_PLUS] = ACTIONS(684), - [anon_sym_not] = ACTIONS(653), - [anon_sym_and] = ACTIONS(653), - [anon_sym_or] = ACTIONS(653), - [anon_sym_SLASH] = ACTIONS(653), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(684), - [anon_sym_is] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(653), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(653), - [anon_sym_LT_GT] = ACTIONS(694), - [sym_ellipsis] = ACTIONS(688), - [sym_integer] = ACTIONS(672), - [sym_float] = ACTIONS(688), - [anon_sym_await] = ACTIONS(690), - [sym_true] = ACTIONS(672), - [sym_false] = ACTIONS(672), - [sym_none] = ACTIONS(672), + [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(692), + [sym_string_start] = ACTIONS(775), }, [STATE(162)] = { - [sym_list_splat_pattern] = STATE(1376), - [sym_primary_expression] = STATE(1114), - [sym_binary_operator] = STATE(1308), - [sym_unary_operator] = STATE(1308), - [sym_attribute] = STATE(1308), - [sym_subscript] = STATE(1308), - [sym_call] = STATE(1308), - [sym_list] = STATE(1308), - [sym_set] = STATE(1308), - [sym_tuple] = STATE(1308), - [sym_dictionary] = STATE(1308), - [sym_list_comprehension] = STATE(1308), - [sym_dictionary_comprehension] = STATE(1308), - [sym_set_comprehension] = STATE(1308), - [sym_generator_expression] = STATE(1308), - [sym_parenthesized_expression] = STATE(1308), - [sym_concatenated_string] = STATE(1308), + [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(1308), - [sym_identifier] = ACTIONS(765), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(767), - [anon_sym_RPAREN] = ACTIONS(269), - [anon_sym_COMMA] = ACTIONS(269), - [anon_sym_as] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_print] = ACTIONS(771), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_COLON_EQ] = ACTIONS(284), - [anon_sym_if] = ACTIONS(271), - [anon_sym_COLON] = ACTIONS(271), - [anon_sym_match] = ACTIONS(773), - [anon_sym_async] = ACTIONS(771), - [anon_sym_in] = ACTIONS(271), - [anon_sym_STAR_STAR] = ACTIONS(269), - [anon_sym_exec] = ACTIONS(771), - [anon_sym_type] = ACTIONS(773), - [anon_sym_EQ] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(775), - [anon_sym_AT] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_PIPE] = ACTIONS(269), - [anon_sym_LBRACE] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_not] = ACTIONS(271), - [anon_sym_and] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(269), - [anon_sym_SLASH_SLASH] = ACTIONS(269), - [anon_sym_AMP] = ACTIONS(269), - [anon_sym_CARET] = ACTIONS(269), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_is] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(269), - [anon_sym_EQ_EQ] = ACTIONS(269), - [anon_sym_BANG_EQ] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(269), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_LT_GT] = ACTIONS(269), - [sym_ellipsis] = ACTIONS(781), - [sym_integer] = ACTIONS(765), - [sym_float] = ACTIONS(781), - [anon_sym_await] = ACTIONS(783), - [sym_true] = ACTIONS(765), - [sym_false] = ACTIONS(765), - [sym_none] = ACTIONS(765), + [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(785), + [sym_string_start] = ACTIONS(799), }, [STATE(163)] = { - [sym_list_splat_pattern] = STATE(1300), - [sym_primary_expression] = STATE(1105), - [sym_binary_operator] = STATE(1392), - [sym_unary_operator] = STATE(1392), - [sym_attribute] = STATE(1392), - [sym_subscript] = STATE(1392), - [sym_call] = STATE(1392), - [sym_list] = STATE(1392), - [sym_set] = STATE(1392), - [sym_tuple] = STATE(1392), - [sym_dictionary] = STATE(1392), - [sym_list_comprehension] = STATE(1392), - [sym_dictionary_comprehension] = STATE(1392), - [sym_set_comprehension] = STATE(1392), - [sym_generator_expression] = STATE(1392), - [sym_parenthesized_expression] = STATE(1392), - [sym_concatenated_string] = STATE(1392), - [sym_string] = STATE(1003), - [sym_await] = STATE(1392), - [sym_identifier] = ACTIONS(316), - [anon_sym_DOT] = ACTIONS(653), - [anon_sym_LPAREN] = ACTIONS(656), - [anon_sym_RPAREN] = ACTIONS(651), - [anon_sym_COMMA] = ACTIONS(651), - [anon_sym_as] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(660), - [anon_sym_print] = ACTIONS(662), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_if] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(651), - [anon_sym_match] = ACTIONS(664), - [anon_sym_async] = ACTIONS(662), - [anon_sym_for] = ACTIONS(658), - [anon_sym_in] = ACTIONS(658), - [anon_sym_STAR_STAR] = ACTIONS(694), - [anon_sym_exec] = ACTIONS(662), - [anon_sym_type] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(658), - [anon_sym_LBRACK] = ACTIONS(666), - [anon_sym_AT] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(308), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(308), - [anon_sym_not] = ACTIONS(658), - [anon_sym_and] = ACTIONS(658), - [anon_sym_or] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(653), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_is] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_LT_EQ] = ACTIONS(651), - [anon_sym_EQ_EQ] = ACTIONS(651), - [anon_sym_BANG_EQ] = ACTIONS(651), - [anon_sym_GT_EQ] = ACTIONS(651), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_LT_GT] = ACTIONS(651), - [sym_ellipsis] = ACTIONS(314), - [sym_integer] = ACTIONS(316), - [sym_float] = ACTIONS(314), - [anon_sym_await] = ACTIONS(670), - [sym_true] = ACTIONS(316), - [sym_false] = ACTIONS(316), - [sym_none] = ACTIONS(316), + [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(320), + [sym_string_start] = ACTIONS(799), }, [STATE(164)] = { - [sym_list_splat_pattern] = STATE(1254), - [sym_primary_expression] = STATE(993), - [sym_binary_operator] = STATE(1148), - [sym_unary_operator] = STATE(1148), - [sym_attribute] = STATE(1148), - [sym_subscript] = STATE(1148), - [sym_call] = STATE(1148), - [sym_list] = STATE(1148), - [sym_set] = STATE(1148), - [sym_tuple] = STATE(1148), - [sym_dictionary] = STATE(1148), - [sym_list_comprehension] = STATE(1148), - [sym_dictionary_comprehension] = STATE(1148), - [sym_set_comprehension] = STATE(1148), - [sym_generator_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_concatenated_string] = STATE(1148), - [sym_string] = STATE(970), - [sym_await] = STATE(1148), - [sym_identifier] = ACTIONS(787), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(789), - [anon_sym_COMMA] = ACTIONS(269), - [anon_sym_as] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(791), - [anon_sym_print] = ACTIONS(793), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_COLON_EQ] = ACTIONS(284), - [anon_sym_if] = ACTIONS(271), - [anon_sym_COLON] = ACTIONS(271), - [anon_sym_match] = ACTIONS(795), - [anon_sym_async] = ACTIONS(793), - [anon_sym_for] = ACTIONS(271), - [anon_sym_in] = ACTIONS(271), - [anon_sym_STAR_STAR] = ACTIONS(269), - [anon_sym_exec] = ACTIONS(793), - [anon_sym_type] = ACTIONS(795), - [anon_sym_LBRACK] = ACTIONS(797), - [anon_sym_RBRACK] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_PIPE] = ACTIONS(269), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_not] = ACTIONS(271), - [anon_sym_and] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(269), - [anon_sym_SLASH_SLASH] = ACTIONS(269), - [anon_sym_AMP] = ACTIONS(269), - [anon_sym_CARET] = ACTIONS(269), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_is] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(269), - [anon_sym_EQ_EQ] = ACTIONS(269), - [anon_sym_BANG_EQ] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(269), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_LT_GT] = ACTIONS(269), - [sym_ellipsis] = ACTIONS(803), - [sym_integer] = ACTIONS(787), - [sym_float] = ACTIONS(803), - [anon_sym_await] = ACTIONS(805), - [sym_true] = ACTIONS(787), - [sym_false] = ACTIONS(787), - [sym_none] = ACTIONS(787), + [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(807), + [sym_string_start] = ACTIONS(731), }, [STATE(165)] = { - [sym_list_splat_pattern] = STATE(1212), - [sym_primary_expression] = STATE(1020), - [sym_binary_operator] = STATE(1251), - [sym_unary_operator] = STATE(1251), - [sym_attribute] = STATE(1251), - [sym_subscript] = STATE(1251), - [sym_call] = STATE(1251), - [sym_list] = STATE(1251), - [sym_set] = STATE(1251), - [sym_tuple] = STATE(1251), - [sym_dictionary] = STATE(1251), - [sym_list_comprehension] = STATE(1251), - [sym_dictionary_comprehension] = STATE(1251), - [sym_set_comprehension] = STATE(1251), - [sym_generator_expression] = STATE(1251), - [sym_parenthesized_expression] = STATE(1251), - [sym_concatenated_string] = STATE(1251), - [sym_string] = STATE(961), - [sym_await] = STATE(1251), - [sym_identifier] = ACTIONS(672), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_COMMA] = ACTIONS(269), - [anon_sym_as] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_print] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_if] = ACTIONS(271), - [anon_sym_COLON] = ACTIONS(269), - [anon_sym_match] = ACTIONS(680), - [anon_sym_async] = ACTIONS(678), - [anon_sym_in] = ACTIONS(271), - [anon_sym_STAR_STAR] = ACTIONS(269), - [anon_sym_exec] = ACTIONS(678), - [anon_sym_type] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_AT] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(684), - [anon_sym_PIPE] = ACTIONS(269), - [anon_sym_LBRACE] = ACTIONS(686), - [anon_sym_RBRACE] = ACTIONS(269), - [anon_sym_PLUS] = ACTIONS(684), - [anon_sym_not] = ACTIONS(271), - [anon_sym_and] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(269), - [anon_sym_SLASH_SLASH] = ACTIONS(269), - [anon_sym_AMP] = ACTIONS(269), - [anon_sym_CARET] = ACTIONS(269), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_TILDE] = ACTIONS(684), - [anon_sym_is] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(269), - [anon_sym_EQ_EQ] = ACTIONS(269), - [anon_sym_BANG_EQ] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(269), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_LT_GT] = ACTIONS(269), - [sym_ellipsis] = ACTIONS(688), - [sym_type_conversion] = ACTIONS(269), - [sym_integer] = ACTIONS(672), - [sym_float] = ACTIONS(688), - [anon_sym_await] = ACTIONS(690), - [sym_true] = ACTIONS(672), - [sym_false] = ACTIONS(672), - [sym_none] = ACTIONS(672), + [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(692), + [sym_string_start] = ACTIONS(709), }, [STATE(166)] = { - [sym_list_splat_pattern] = STATE(1213), - [sym_primary_expression] = STATE(1007), - [sym_binary_operator] = STATE(1190), - [sym_unary_operator] = STATE(1190), - [sym_attribute] = STATE(1190), - [sym_subscript] = STATE(1190), - [sym_call] = STATE(1190), - [sym_list] = STATE(1190), - [sym_set] = STATE(1190), - [sym_tuple] = STATE(1190), - [sym_dictionary] = STATE(1190), - [sym_list_comprehension] = STATE(1190), - [sym_dictionary_comprehension] = STATE(1190), - [sym_set_comprehension] = STATE(1190), - [sym_generator_expression] = STATE(1190), - [sym_parenthesized_expression] = STATE(1190), - [sym_concatenated_string] = STATE(1190), - [sym_string] = STATE(963), - [sym_await] = STATE(1190), - [sym_identifier] = ACTIONS(721), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(723), - [anon_sym_COMMA] = ACTIONS(269), - [anon_sym_as] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(725), - [anon_sym_print] = ACTIONS(727), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_if] = ACTIONS(271), - [anon_sym_COLON] = ACTIONS(269), - [anon_sym_match] = ACTIONS(729), - [anon_sym_async] = ACTIONS(727), - [anon_sym_for] = ACTIONS(271), - [anon_sym_in] = ACTIONS(271), - [anon_sym_STAR_STAR] = ACTIONS(269), - [anon_sym_exec] = ACTIONS(727), - [anon_sym_type] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_AT] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(733), - [anon_sym_PIPE] = ACTIONS(269), - [anon_sym_LBRACE] = ACTIONS(735), - [anon_sym_RBRACE] = ACTIONS(269), - [anon_sym_PLUS] = ACTIONS(733), - [anon_sym_not] = ACTIONS(271), - [anon_sym_and] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(269), - [anon_sym_SLASH_SLASH] = ACTIONS(269), - [anon_sym_AMP] = ACTIONS(269), - [anon_sym_CARET] = ACTIONS(269), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_TILDE] = ACTIONS(733), - [anon_sym_is] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(269), - [anon_sym_EQ_EQ] = ACTIONS(269), - [anon_sym_BANG_EQ] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(269), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_LT_GT] = ACTIONS(269), - [sym_ellipsis] = ACTIONS(737), - [sym_integer] = ACTIONS(721), - [sym_float] = ACTIONS(737), - [anon_sym_await] = ACTIONS(739), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_none] = ACTIONS(721), + [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(741), + [sym_string_start] = ACTIONS(316), }, [STATE(167)] = { - [sym_list_splat_pattern] = STATE(1376), - [sym_primary_expression] = STATE(1114), - [sym_binary_operator] = STATE(1308), - [sym_unary_operator] = STATE(1308), - [sym_attribute] = STATE(1308), - [sym_subscript] = STATE(1308), - [sym_call] = STATE(1308), - [sym_list] = STATE(1308), - [sym_set] = STATE(1308), - [sym_tuple] = STATE(1308), - [sym_dictionary] = STATE(1308), - [sym_list_comprehension] = STATE(1308), - [sym_dictionary_comprehension] = STATE(1308), - [sym_set_comprehension] = STATE(1308), - [sym_generator_expression] = STATE(1308), - [sym_parenthesized_expression] = STATE(1308), - [sym_concatenated_string] = STATE(1308), + [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(1308), - [sym_identifier] = ACTIONS(765), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(767), - [anon_sym_RPAREN] = ACTIONS(269), - [anon_sym_COMMA] = ACTIONS(269), - [anon_sym_as] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_print] = ACTIONS(771), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_COLON_EQ] = ACTIONS(284), - [anon_sym_if] = ACTIONS(271), - [anon_sym_match] = ACTIONS(773), - [anon_sym_async] = ACTIONS(771), - [anon_sym_in] = ACTIONS(271), - [anon_sym_STAR_STAR] = ACTIONS(269), - [anon_sym_exec] = ACTIONS(771), - [anon_sym_type] = ACTIONS(773), - [anon_sym_EQ] = ACTIONS(707), - [anon_sym_LBRACK] = ACTIONS(775), - [anon_sym_AT] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_PIPE] = ACTIONS(269), - [anon_sym_LBRACE] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_not] = ACTIONS(271), - [anon_sym_and] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(269), - [anon_sym_SLASH_SLASH] = ACTIONS(269), - [anon_sym_AMP] = ACTIONS(269), - [anon_sym_CARET] = ACTIONS(269), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_is] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(269), - [anon_sym_EQ_EQ] = ACTIONS(269), - [anon_sym_BANG_EQ] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(269), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_LT_GT] = ACTIONS(269), - [sym_ellipsis] = ACTIONS(781), - [sym_integer] = ACTIONS(765), - [sym_float] = ACTIONS(781), - [anon_sym_await] = ACTIONS(783), - [sym_true] = ACTIONS(765), - [sym_false] = ACTIONS(765), - [sym_none] = ACTIONS(765), + [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(785), + [sym_string_start] = ACTIONS(799), }, [STATE(168)] = { - [sym_list_splat_pattern] = STATE(1407), - [sym_primary_expression] = STATE(1042), - [sym_binary_operator] = STATE(1349), - [sym_unary_operator] = STATE(1349), - [sym_attribute] = STATE(1349), - [sym_subscript] = STATE(1349), - [sym_call] = STATE(1349), - [sym_list] = STATE(1349), - [sym_set] = STATE(1349), - [sym_tuple] = STATE(1349), - [sym_dictionary] = STATE(1349), - [sym_list_comprehension] = STATE(1349), - [sym_dictionary_comprehension] = STATE(1349), - [sym_set_comprehension] = STATE(1349), - [sym_generator_expression] = STATE(1349), - [sym_parenthesized_expression] = STATE(1349), - [sym_concatenated_string] = STATE(1349), - [sym_string] = STATE(977), - [sym_await] = STATE(1349), - [sym_identifier] = ACTIONS(697), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(699), - [anon_sym_RPAREN] = ACTIONS(269), - [anon_sym_COMMA] = ACTIONS(269), - [anon_sym_as] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(701), - [anon_sym_print] = ACTIONS(703), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_COLON_EQ] = ACTIONS(284), - [anon_sym_if] = ACTIONS(271), - [anon_sym_match] = ACTIONS(705), - [anon_sym_async] = ACTIONS(703), - [anon_sym_for] = ACTIONS(271), - [anon_sym_in] = ACTIONS(271), - [anon_sym_STAR_STAR] = ACTIONS(269), - [anon_sym_exec] = ACTIONS(703), - [anon_sym_type] = ACTIONS(705), - [anon_sym_LBRACK] = ACTIONS(709), - [anon_sym_AT] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(711), - [anon_sym_PIPE] = ACTIONS(269), - [anon_sym_LBRACE] = ACTIONS(713), - [anon_sym_PLUS] = ACTIONS(711), - [anon_sym_not] = ACTIONS(271), - [anon_sym_and] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(269), - [anon_sym_SLASH_SLASH] = ACTIONS(269), - [anon_sym_AMP] = ACTIONS(269), - [anon_sym_CARET] = ACTIONS(269), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_TILDE] = ACTIONS(711), - [anon_sym_is] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(269), - [anon_sym_EQ_EQ] = ACTIONS(269), - [anon_sym_BANG_EQ] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(269), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_LT_GT] = ACTIONS(269), - [sym_ellipsis] = ACTIONS(715), - [sym_integer] = ACTIONS(697), - [sym_float] = ACTIONS(715), - [anon_sym_await] = ACTIONS(717), - [sym_true] = ACTIONS(697), - [sym_false] = ACTIONS(697), - [sym_none] = ACTIONS(697), + [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(719), + [sym_string_start] = ACTIONS(731), }, [STATE(169)] = { - [sym_list_splat_pattern] = STATE(1254), - [sym_primary_expression] = STATE(993), - [sym_binary_operator] = STATE(1148), - [sym_unary_operator] = STATE(1148), - [sym_attribute] = STATE(1148), - [sym_subscript] = STATE(1148), - [sym_call] = STATE(1148), - [sym_list] = STATE(1148), - [sym_set] = STATE(1148), - [sym_tuple] = STATE(1148), - [sym_dictionary] = STATE(1148), - [sym_list_comprehension] = STATE(1148), - [sym_dictionary_comprehension] = STATE(1148), - [sym_set_comprehension] = STATE(1148), - [sym_generator_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_concatenated_string] = STATE(1148), - [sym_string] = STATE(970), - [sym_await] = STATE(1148), - [sym_identifier] = ACTIONS(787), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(789), - [anon_sym_COMMA] = ACTIONS(269), - [anon_sym_as] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(791), - [anon_sym_print] = ACTIONS(793), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_if] = ACTIONS(271), - [anon_sym_COLON] = ACTIONS(269), - [anon_sym_match] = ACTIONS(795), - [anon_sym_async] = ACTIONS(793), - [anon_sym_for] = ACTIONS(271), - [anon_sym_in] = ACTIONS(271), - [anon_sym_STAR_STAR] = ACTIONS(269), - [anon_sym_exec] = ACTIONS(793), - [anon_sym_type] = ACTIONS(795), - [anon_sym_LBRACK] = ACTIONS(797), - [anon_sym_RBRACK] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_PIPE] = ACTIONS(269), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_not] = ACTIONS(271), - [anon_sym_and] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(269), - [anon_sym_SLASH_SLASH] = ACTIONS(269), - [anon_sym_AMP] = ACTIONS(269), - [anon_sym_CARET] = ACTIONS(269), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_is] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(269), - [anon_sym_EQ_EQ] = ACTIONS(269), - [anon_sym_BANG_EQ] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(269), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_LT_GT] = ACTIONS(269), - [sym_ellipsis] = ACTIONS(803), - [sym_integer] = ACTIONS(787), - [sym_float] = ACTIONS(803), - [anon_sym_await] = ACTIONS(805), - [sym_true] = ACTIONS(787), - [sym_false] = ACTIONS(787), - [sym_none] = ACTIONS(787), + [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(807), + [sym__newline] = ACTIONS(308), + [sym_string_start] = ACTIONS(316), }, [STATE(170)] = { - [sym_list_splat_pattern] = STATE(1300), - [sym_primary_expression] = STATE(1105), - [sym_binary_operator] = STATE(1392), - [sym_unary_operator] = STATE(1392), - [sym_attribute] = STATE(1392), - [sym_subscript] = STATE(1392), - [sym_call] = STATE(1392), - [sym_list] = STATE(1392), - [sym_set] = STATE(1392), - [sym_tuple] = STATE(1392), - [sym_dictionary] = STATE(1392), - [sym_list_comprehension] = STATE(1392), - [sym_dictionary_comprehension] = STATE(1392), - [sym_set_comprehension] = STATE(1392), - [sym_generator_expression] = STATE(1392), - [sym_parenthesized_expression] = STATE(1392), - [sym_concatenated_string] = STATE(1392), - [sym_string] = STATE(1003), - [sym_await] = STATE(1392), - [sym_identifier] = ACTIONS(316), - [anon_sym_SEMI] = ACTIONS(312), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(656), - [anon_sym_COMMA] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(660), - [anon_sym_print] = ACTIONS(662), - [anon_sym_GT_GT] = ACTIONS(271), - [anon_sym_COLON] = ACTIONS(312), - [anon_sym_match] = ACTIONS(664), - [anon_sym_async] = ACTIONS(662), - [anon_sym_STAR_STAR] = ACTIONS(271), - [anon_sym_exec] = ACTIONS(662), - [anon_sym_type] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(312), - [anon_sym_LBRACK] = ACTIONS(666), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(271), - [anon_sym_SLASH_SLASH] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(271), - [anon_sym_CARET] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(271), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_PLUS_EQ] = ACTIONS(312), - [anon_sym_DASH_EQ] = ACTIONS(312), - [anon_sym_STAR_EQ] = ACTIONS(312), - [anon_sym_SLASH_EQ] = ACTIONS(312), - [anon_sym_AT_EQ] = ACTIONS(312), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(312), - [anon_sym_PERCENT_EQ] = ACTIONS(312), - [anon_sym_STAR_STAR_EQ] = ACTIONS(312), - [anon_sym_GT_GT_EQ] = ACTIONS(312), - [anon_sym_LT_LT_EQ] = ACTIONS(312), - [anon_sym_AMP_EQ] = ACTIONS(312), - [anon_sym_CARET_EQ] = ACTIONS(312), - [anon_sym_PIPE_EQ] = ACTIONS(312), - [sym_ellipsis] = ACTIONS(314), - [sym_integer] = ACTIONS(316), - [sym_float] = ACTIONS(314), - [anon_sym_await] = ACTIONS(670), - [sym_true] = ACTIONS(316), - [sym_false] = ACTIONS(316), - [sym_none] = ACTIONS(316), + [sym_list_splat_pattern] = STATE(1259), + [sym_primary_expression] = STATE(1014), + [sym_binary_operator] = STATE(1180), + [sym_unary_operator] = STATE(1180), + [sym_attribute] = STATE(1180), + [sym_subscript] = STATE(1180), + [sym_call] = STATE(1180), + [sym_list] = STATE(1180), + [sym_set] = STATE(1180), + [sym_tuple] = STATE(1180), + [sym_dictionary] = STATE(1180), + [sym_list_comprehension] = STATE(1180), + [sym_dictionary_comprehension] = STATE(1180), + [sym_set_comprehension] = STATE(1180), + [sym_generator_expression] = STATE(1180), + [sym_parenthesized_expression] = STATE(1180), + [sym_concatenated_string] = STATE(1180), + [sym_string] = STATE(958), + [sym_await] = STATE(1180), + [sym_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__newline] = ACTIONS(312), - [sym_string_start] = ACTIONS(320), + [sym_string_start] = ACTIONS(753), }, [STATE(171)] = { - [sym_list_splat_pattern] = STATE(1376), - [sym_primary_expression] = STATE(1114), - [sym_binary_operator] = STATE(1308), - [sym_unary_operator] = STATE(1308), - [sym_attribute] = STATE(1308), - [sym_subscript] = STATE(1308), - [sym_call] = STATE(1308), - [sym_list] = STATE(1308), - [sym_set] = STATE(1308), - [sym_tuple] = STATE(1308), - [sym_dictionary] = STATE(1308), - [sym_list_comprehension] = STATE(1308), - [sym_dictionary_comprehension] = STATE(1308), - [sym_set_comprehension] = STATE(1308), - [sym_generator_expression] = STATE(1308), - [sym_parenthesized_expression] = STATE(1308), - [sym_concatenated_string] = STATE(1308), - [sym_string] = STATE(985), - [sym_await] = STATE(1308), - [sym_identifier] = ACTIONS(765), - [anon_sym_DOT] = ACTIONS(653), - [anon_sym_LPAREN] = ACTIONS(767), - [anon_sym_RPAREN] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_as] = ACTIONS(653), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_print] = ACTIONS(771), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_COLON_EQ] = ACTIONS(284), - [anon_sym_if] = ACTIONS(653), - [anon_sym_match] = ACTIONS(773), - [anon_sym_async] = ACTIONS(771), - [anon_sym_for] = ACTIONS(658), - [anon_sym_in] = ACTIONS(653), - [anon_sym_STAR_STAR] = ACTIONS(694), - [anon_sym_exec] = ACTIONS(771), - [anon_sym_type] = ACTIONS(773), - [anon_sym_LBRACK] = ACTIONS(775), - [anon_sym_AT] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_LBRACE] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_not] = ACTIONS(653), - [anon_sym_and] = ACTIONS(653), - [anon_sym_or] = ACTIONS(653), - [anon_sym_SLASH] = ACTIONS(653), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_is] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(653), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(653), - [anon_sym_LT_GT] = ACTIONS(694), - [sym_ellipsis] = ACTIONS(781), - [sym_integer] = ACTIONS(765), - [sym_float] = ACTIONS(781), - [anon_sym_await] = ACTIONS(783), - [sym_true] = ACTIONS(765), - [sym_false] = ACTIONS(765), - [sym_none] = ACTIONS(765), + [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_string_start] = ACTIONS(785), + [sym_string_start] = ACTIONS(709), }, [STATE(172)] = { - [sym_list_splat_pattern] = STATE(1407), - [sym_primary_expression] = STATE(1042), - [sym_binary_operator] = STATE(1349), - [sym_unary_operator] = STATE(1349), - [sym_attribute] = STATE(1349), - [sym_subscript] = STATE(1349), - [sym_call] = STATE(1349), - [sym_list] = STATE(1349), - [sym_set] = STATE(1349), - [sym_tuple] = STATE(1349), - [sym_dictionary] = STATE(1349), - [sym_list_comprehension] = STATE(1349), - [sym_dictionary_comprehension] = STATE(1349), - [sym_set_comprehension] = STATE(1349), - [sym_generator_expression] = STATE(1349), - [sym_parenthesized_expression] = STATE(1349), - [sym_concatenated_string] = STATE(1349), - [sym_string] = STATE(977), - [sym_await] = STATE(1349), - [sym_identifier] = ACTIONS(697), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(699), - [anon_sym_RPAREN] = ACTIONS(276), - [anon_sym_COMMA] = ACTIONS(276), - [anon_sym_as] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(701), - [anon_sym_print] = ACTIONS(703), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_COLON_EQ] = ACTIONS(284), - [anon_sym_if] = ACTIONS(271), - [anon_sym_match] = ACTIONS(705), - [anon_sym_async] = ACTIONS(703), - [anon_sym_for] = ACTIONS(271), - [anon_sym_in] = ACTIONS(271), - [anon_sym_STAR_STAR] = ACTIONS(269), - [anon_sym_exec] = ACTIONS(703), - [anon_sym_type] = ACTIONS(705), - [anon_sym_LBRACK] = ACTIONS(709), - [anon_sym_AT] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(711), - [anon_sym_PIPE] = ACTIONS(269), - [anon_sym_LBRACE] = ACTIONS(713), - [anon_sym_PLUS] = ACTIONS(711), - [anon_sym_not] = ACTIONS(271), - [anon_sym_and] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(269), - [anon_sym_SLASH_SLASH] = ACTIONS(269), - [anon_sym_AMP] = ACTIONS(269), - [anon_sym_CARET] = ACTIONS(269), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_TILDE] = ACTIONS(711), - [anon_sym_is] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(269), - [anon_sym_EQ_EQ] = ACTIONS(269), - [anon_sym_BANG_EQ] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(269), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_LT_GT] = ACTIONS(269), - [sym_ellipsis] = ACTIONS(715), - [sym_integer] = ACTIONS(697), - [sym_float] = ACTIONS(715), - [anon_sym_await] = ACTIONS(717), - [sym_true] = ACTIONS(697), - [sym_false] = ACTIONS(697), - [sym_none] = ACTIONS(697), + [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(719), + [sym_string_start] = ACTIONS(316), }, [STATE(173)] = { - [sym_list_splat_pattern] = STATE(1300), - [sym_primary_expression] = STATE(1105), - [sym_binary_operator] = STATE(1392), - [sym_unary_operator] = STATE(1392), - [sym_attribute] = STATE(1392), - [sym_subscript] = STATE(1392), - [sym_call] = STATE(1392), - [sym_list] = STATE(1392), - [sym_set] = STATE(1392), - [sym_tuple] = STATE(1392), - [sym_dictionary] = STATE(1392), - [sym_list_comprehension] = STATE(1392), - [sym_dictionary_comprehension] = STATE(1392), - [sym_set_comprehension] = STATE(1392), - [sym_generator_expression] = STATE(1392), - [sym_parenthesized_expression] = STATE(1392), - [sym_concatenated_string] = STATE(1392), - [sym_string] = STATE(1003), - [sym_await] = STATE(1392), - [sym_identifier] = ACTIONS(316), - [anon_sym_DOT] = ACTIONS(653), - [anon_sym_LPAREN] = ACTIONS(656), - [anon_sym_COMMA] = ACTIONS(651), - [anon_sym_as] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(660), - [anon_sym_print] = ACTIONS(662), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_if] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(651), - [anon_sym_else] = ACTIONS(658), - [anon_sym_match] = ACTIONS(664), - [anon_sym_async] = ACTIONS(662), - [anon_sym_in] = ACTIONS(658), - [anon_sym_STAR_STAR] = ACTIONS(694), - [anon_sym_exec] = ACTIONS(662), - [anon_sym_type] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(658), - [anon_sym_LBRACK] = ACTIONS(666), - [anon_sym_AT] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(308), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(308), - [anon_sym_not] = ACTIONS(658), - [anon_sym_and] = ACTIONS(658), - [anon_sym_or] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(653), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_is] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_LT_EQ] = ACTIONS(651), - [anon_sym_EQ_EQ] = ACTIONS(651), - [anon_sym_BANG_EQ] = ACTIONS(651), - [anon_sym_GT_EQ] = ACTIONS(651), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_LT_GT] = ACTIONS(651), - [sym_ellipsis] = ACTIONS(314), - [sym_integer] = ACTIONS(316), - [sym_float] = ACTIONS(314), - [anon_sym_await] = ACTIONS(670), - [sym_true] = ACTIONS(316), - [sym_false] = ACTIONS(316), - [sym_none] = ACTIONS(316), + [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(320), + [sym_string_start] = ACTIONS(316), }, [STATE(174)] = { - [sym_list_splat_pattern] = STATE(1300), - [sym_primary_expression] = STATE(1105), - [sym_binary_operator] = STATE(1392), - [sym_unary_operator] = STATE(1392), - [sym_attribute] = STATE(1392), - [sym_subscript] = STATE(1392), - [sym_call] = STATE(1392), - [sym_list] = STATE(1392), - [sym_set] = STATE(1392), - [sym_tuple] = STATE(1392), - [sym_dictionary] = STATE(1392), - [sym_list_comprehension] = STATE(1392), - [sym_dictionary_comprehension] = STATE(1392), - [sym_set_comprehension] = STATE(1392), - [sym_generator_expression] = STATE(1392), - [sym_parenthesized_expression] = STATE(1392), - [sym_concatenated_string] = STATE(1392), - [sym_string] = STATE(1003), - [sym_await] = STATE(1392), - [sym_identifier] = ACTIONS(316), - [anon_sym_DOT] = ACTIONS(653), - [anon_sym_LPAREN] = ACTIONS(656), - [anon_sym_COMMA] = ACTIONS(651), - [anon_sym_as] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(660), - [anon_sym_print] = ACTIONS(662), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_if] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(651), - [anon_sym_match] = ACTIONS(664), - [anon_sym_async] = ACTIONS(662), - [anon_sym_for] = ACTIONS(658), - [anon_sym_in] = ACTIONS(658), - [anon_sym_STAR_STAR] = ACTIONS(694), - [anon_sym_exec] = ACTIONS(662), - [anon_sym_type] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(666), - [anon_sym_RBRACK] = ACTIONS(651), - [anon_sym_AT] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(308), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(308), - [anon_sym_not] = ACTIONS(658), - [anon_sym_and] = ACTIONS(658), - [anon_sym_or] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(653), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_is] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_LT_EQ] = ACTIONS(651), - [anon_sym_EQ_EQ] = ACTIONS(651), - [anon_sym_BANG_EQ] = ACTIONS(651), - [anon_sym_GT_EQ] = ACTIONS(651), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_LT_GT] = ACTIONS(651), - [sym_ellipsis] = ACTIONS(314), - [sym_integer] = ACTIONS(316), - [sym_float] = ACTIONS(314), - [anon_sym_await] = ACTIONS(670), - [sym_true] = ACTIONS(316), - [sym_false] = ACTIONS(316), - [sym_none] = ACTIONS(316), + [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(320), + [sym_string_start] = ACTIONS(775), }, [STATE(175)] = { - [sym_list_splat_pattern] = STATE(1423), - [sym_primary_expression] = STATE(1224), - [sym_binary_operator] = STATE(1425), - [sym_unary_operator] = STATE(1425), - [sym_attribute] = STATE(1425), - [sym_subscript] = STATE(1425), - [sym_call] = STATE(1425), - [sym_list] = STATE(1425), - [sym_set] = STATE(1425), - [sym_tuple] = STATE(1425), - [sym_dictionary] = STATE(1425), - [sym_list_comprehension] = STATE(1425), - [sym_dictionary_comprehension] = STATE(1425), - [sym_set_comprehension] = STATE(1425), - [sym_generator_expression] = STATE(1425), - [sym_parenthesized_expression] = STATE(1425), - [sym_concatenated_string] = STATE(1425), - [sym_string] = STATE(1098), - [sym_await] = STATE(1425), - [sym_identifier] = ACTIONS(743), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(745), - [anon_sym_COMMA] = ACTIONS(269), - [anon_sym_as] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_print] = ACTIONS(749), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_COLON_EQ] = ACTIONS(284), - [anon_sym_if] = ACTIONS(271), - [anon_sym_COLON] = ACTIONS(271), - [anon_sym_match] = ACTIONS(751), - [anon_sym_async] = ACTIONS(749), - [anon_sym_in] = ACTIONS(271), - [anon_sym_STAR_STAR] = ACTIONS(269), - [anon_sym_exec] = ACTIONS(749), - [anon_sym_type] = ACTIONS(751), - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_RBRACK] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(269), - [anon_sym_LBRACE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(755), - [anon_sym_not] = ACTIONS(271), - [anon_sym_and] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(269), - [anon_sym_SLASH_SLASH] = ACTIONS(269), - [anon_sym_AMP] = ACTIONS(269), - [anon_sym_CARET] = ACTIONS(269), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_TILDE] = ACTIONS(755), - [anon_sym_is] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(269), - [anon_sym_EQ_EQ] = ACTIONS(269), - [anon_sym_BANG_EQ] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(269), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_LT_GT] = ACTIONS(269), - [sym_ellipsis] = ACTIONS(759), - [sym_integer] = ACTIONS(743), - [sym_float] = ACTIONS(759), - [anon_sym_await] = ACTIONS(761), - [sym_true] = ACTIONS(743), - [sym_false] = ACTIONS(743), - [sym_none] = ACTIONS(743), + [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(763), + [sym_string_start] = ACTIONS(731), }, [STATE(176)] = { - [sym_list_splat_pattern] = STATE(1376), - [sym_primary_expression] = STATE(1114), - [sym_binary_operator] = STATE(1308), - [sym_unary_operator] = STATE(1308), - [sym_attribute] = STATE(1308), - [sym_subscript] = STATE(1308), - [sym_call] = STATE(1308), - [sym_list] = STATE(1308), - [sym_set] = STATE(1308), - [sym_tuple] = STATE(1308), - [sym_dictionary] = STATE(1308), - [sym_list_comprehension] = STATE(1308), - [sym_dictionary_comprehension] = STATE(1308), - [sym_set_comprehension] = STATE(1308), - [sym_generator_expression] = STATE(1308), - [sym_parenthesized_expression] = STATE(1308), - [sym_concatenated_string] = STATE(1308), + [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(1308), - [sym_identifier] = ACTIONS(765), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(767), - [anon_sym_RPAREN] = ACTIONS(269), - [anon_sym_COMMA] = ACTIONS(269), - [anon_sym_as] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_print] = ACTIONS(771), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_if] = ACTIONS(271), - [anon_sym_COLON] = ACTIONS(269), - [anon_sym_match] = ACTIONS(773), - [anon_sym_async] = ACTIONS(771), - [anon_sym_in] = ACTIONS(271), - [anon_sym_STAR_STAR] = ACTIONS(269), - [anon_sym_exec] = ACTIONS(771), - [anon_sym_type] = ACTIONS(773), - [anon_sym_EQ] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(775), - [anon_sym_AT] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_PIPE] = ACTIONS(269), - [anon_sym_LBRACE] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_not] = ACTIONS(271), - [anon_sym_and] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(269), - [anon_sym_SLASH_SLASH] = ACTIONS(269), - [anon_sym_AMP] = ACTIONS(269), - [anon_sym_CARET] = ACTIONS(269), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_is] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(269), - [anon_sym_EQ_EQ] = ACTIONS(269), - [anon_sym_BANG_EQ] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(269), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_LT_GT] = ACTIONS(269), - [sym_ellipsis] = ACTIONS(781), - [sym_integer] = ACTIONS(765), - [sym_float] = ACTIONS(781), - [anon_sym_await] = ACTIONS(783), - [sym_true] = ACTIONS(765), - [sym_false] = ACTIONS(765), - [sym_none] = ACTIONS(765), + [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(785), + [sym_string_start] = ACTIONS(799), }, [STATE(177)] = { - [sym_list_splat_pattern] = STATE(1254), - [sym_primary_expression] = STATE(993), - [sym_binary_operator] = STATE(1148), - [sym_unary_operator] = STATE(1148), - [sym_attribute] = STATE(1148), - [sym_subscript] = STATE(1148), - [sym_call] = STATE(1148), - [sym_list] = STATE(1148), - [sym_set] = STATE(1148), - [sym_tuple] = STATE(1148), - [sym_dictionary] = STATE(1148), - [sym_list_comprehension] = STATE(1148), - [sym_dictionary_comprehension] = STATE(1148), - [sym_set_comprehension] = STATE(1148), - [sym_generator_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_concatenated_string] = STATE(1148), - [sym_string] = STATE(970), - [sym_await] = STATE(1148), - [sym_identifier] = ACTIONS(787), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(789), - [anon_sym_COMMA] = ACTIONS(276), - [anon_sym_as] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(791), - [anon_sym_print] = ACTIONS(793), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_COLON_EQ] = ACTIONS(284), - [anon_sym_if] = ACTIONS(271), - [anon_sym_match] = ACTIONS(795), - [anon_sym_async] = ACTIONS(793), - [anon_sym_for] = ACTIONS(271), - [anon_sym_in] = ACTIONS(271), - [anon_sym_STAR_STAR] = ACTIONS(269), - [anon_sym_exec] = ACTIONS(793), - [anon_sym_type] = ACTIONS(795), - [anon_sym_LBRACK] = ACTIONS(797), - [anon_sym_RBRACK] = ACTIONS(276), - [anon_sym_AT] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_PIPE] = ACTIONS(269), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_not] = ACTIONS(271), - [anon_sym_and] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(269), - [anon_sym_SLASH_SLASH] = ACTIONS(269), - [anon_sym_AMP] = ACTIONS(269), - [anon_sym_CARET] = ACTIONS(269), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_is] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(269), - [anon_sym_EQ_EQ] = ACTIONS(269), - [anon_sym_BANG_EQ] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(269), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_LT_GT] = ACTIONS(269), - [sym_ellipsis] = ACTIONS(803), - [sym_integer] = ACTIONS(787), - [sym_float] = ACTIONS(803), - [anon_sym_await] = ACTIONS(805), - [sym_true] = ACTIONS(787), - [sym_false] = ACTIONS(787), - [sym_none] = ACTIONS(787), + [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(807), + [sym_string_start] = ACTIONS(775), }, [STATE(178)] = { - [sym_list_splat_pattern] = STATE(1300), - [sym_primary_expression] = STATE(1105), - [sym_binary_operator] = STATE(1392), - [sym_unary_operator] = STATE(1392), - [sym_attribute] = STATE(1392), - [sym_subscript] = STATE(1392), - [sym_call] = STATE(1392), - [sym_list] = STATE(1392), - [sym_set] = STATE(1392), - [sym_tuple] = STATE(1392), - [sym_dictionary] = STATE(1392), - [sym_list_comprehension] = STATE(1392), - [sym_dictionary_comprehension] = STATE(1392), - [sym_set_comprehension] = STATE(1392), - [sym_generator_expression] = STATE(1392), - [sym_parenthesized_expression] = STATE(1392), - [sym_concatenated_string] = STATE(1392), - [sym_string] = STATE(1003), - [sym_await] = STATE(1392), - [sym_identifier] = ACTIONS(316), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(656), - [anon_sym_COMMA] = ACTIONS(269), - [anon_sym_as] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(660), - [anon_sym_print] = ACTIONS(662), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_if] = ACTIONS(271), - [anon_sym_COLON] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_match] = ACTIONS(664), - [anon_sym_async] = ACTIONS(662), - [anon_sym_in] = ACTIONS(271), - [anon_sym_STAR_STAR] = ACTIONS(269), - [anon_sym_exec] = ACTIONS(662), - [anon_sym_type] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(666), - [anon_sym_AT] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(308), - [anon_sym_PIPE] = ACTIONS(269), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(308), - [anon_sym_not] = ACTIONS(271), - [anon_sym_and] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(269), - [anon_sym_SLASH_SLASH] = ACTIONS(269), - [anon_sym_AMP] = ACTIONS(269), - [anon_sym_CARET] = ACTIONS(269), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_is] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(269), - [anon_sym_EQ_EQ] = ACTIONS(269), - [anon_sym_BANG_EQ] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(269), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_LT_GT] = ACTIONS(269), - [sym_ellipsis] = ACTIONS(314), - [sym_integer] = ACTIONS(316), - [sym_float] = ACTIONS(314), - [anon_sym_await] = ACTIONS(670), - [sym_true] = ACTIONS(316), - [sym_false] = ACTIONS(316), - [sym_none] = ACTIONS(316), + [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(320), + [sym_string_start] = ACTIONS(316), }, [STATE(179)] = { - [sym_list_splat_pattern] = STATE(1407), - [sym_primary_expression] = STATE(1042), - [sym_binary_operator] = STATE(1349), - [sym_unary_operator] = STATE(1349), - [sym_attribute] = STATE(1349), - [sym_subscript] = STATE(1349), - [sym_call] = STATE(1349), - [sym_list] = STATE(1349), - [sym_set] = STATE(1349), - [sym_tuple] = STATE(1349), - [sym_dictionary] = STATE(1349), - [sym_list_comprehension] = STATE(1349), - [sym_dictionary_comprehension] = STATE(1349), - [sym_set_comprehension] = STATE(1349), - [sym_generator_expression] = STATE(1349), - [sym_parenthesized_expression] = STATE(1349), - [sym_concatenated_string] = STATE(1349), - [sym_string] = STATE(977), - [sym_await] = STATE(1349), - [sym_identifier] = ACTIONS(697), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(699), - [anon_sym_RPAREN] = ACTIONS(269), - [anon_sym_COMMA] = ACTIONS(269), - [anon_sym_as] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(701), - [anon_sym_print] = ACTIONS(703), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_if] = ACTIONS(271), - [anon_sym_match] = ACTIONS(705), - [anon_sym_async] = ACTIONS(703), - [anon_sym_for] = ACTIONS(271), - [anon_sym_in] = ACTIONS(271), - [anon_sym_STAR_STAR] = ACTIONS(269), - [anon_sym_exec] = ACTIONS(703), - [anon_sym_type] = ACTIONS(705), - [anon_sym_LBRACK] = ACTIONS(709), - [anon_sym_AT] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(711), - [anon_sym_PIPE] = ACTIONS(269), - [anon_sym_LBRACE] = ACTIONS(713), - [anon_sym_PLUS] = ACTIONS(711), - [anon_sym_not] = ACTIONS(271), - [anon_sym_and] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(269), - [anon_sym_SLASH_SLASH] = ACTIONS(269), - [anon_sym_AMP] = ACTIONS(269), - [anon_sym_CARET] = ACTIONS(269), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_TILDE] = ACTIONS(711), - [anon_sym_is] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(269), - [anon_sym_EQ_EQ] = ACTIONS(269), - [anon_sym_BANG_EQ] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(269), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_LT_GT] = ACTIONS(269), - [sym_ellipsis] = ACTIONS(715), - [sym_integer] = ACTIONS(697), - [sym_float] = ACTIONS(715), - [anon_sym_await] = ACTIONS(717), - [sym_true] = ACTIONS(697), - [sym_false] = ACTIONS(697), - [sym_none] = ACTIONS(697), + [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(719), + [sym_string_start] = ACTIONS(316), }, [STATE(180)] = { - [sym_list_splat_pattern] = STATE(1423), - [sym_primary_expression] = STATE(1224), - [sym_binary_operator] = STATE(1425), - [sym_unary_operator] = STATE(1425), - [sym_attribute] = STATE(1425), - [sym_subscript] = STATE(1425), - [sym_call] = STATE(1425), - [sym_list] = STATE(1425), - [sym_set] = STATE(1425), - [sym_tuple] = STATE(1425), - [sym_dictionary] = STATE(1425), - [sym_list_comprehension] = STATE(1425), - [sym_dictionary_comprehension] = STATE(1425), - [sym_set_comprehension] = STATE(1425), - [sym_generator_expression] = STATE(1425), - [sym_parenthesized_expression] = STATE(1425), - [sym_concatenated_string] = STATE(1425), - [sym_string] = STATE(1098), - [sym_await] = STATE(1425), - [sym_identifier] = ACTIONS(743), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(745), - [anon_sym_COMMA] = ACTIONS(269), - [anon_sym_as] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_print] = ACTIONS(749), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_if] = ACTIONS(271), - [anon_sym_COLON] = ACTIONS(269), - [anon_sym_match] = ACTIONS(751), - [anon_sym_async] = ACTIONS(749), - [anon_sym_in] = ACTIONS(271), - [anon_sym_STAR_STAR] = ACTIONS(269), - [anon_sym_exec] = ACTIONS(749), - [anon_sym_type] = ACTIONS(751), - [anon_sym_LBRACK] = ACTIONS(753), - [anon_sym_RBRACK] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(269), - [anon_sym_LBRACE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(755), - [anon_sym_not] = ACTIONS(271), - [anon_sym_and] = ACTIONS(271), - [anon_sym_or] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(269), - [anon_sym_SLASH_SLASH] = ACTIONS(269), - [anon_sym_AMP] = ACTIONS(269), - [anon_sym_CARET] = ACTIONS(269), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_TILDE] = ACTIONS(755), - [anon_sym_is] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(271), - [anon_sym_LT_EQ] = ACTIONS(269), - [anon_sym_EQ_EQ] = ACTIONS(269), - [anon_sym_BANG_EQ] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(269), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_LT_GT] = ACTIONS(269), - [sym_ellipsis] = ACTIONS(759), - [sym_integer] = ACTIONS(743), - [sym_float] = ACTIONS(759), - [anon_sym_await] = ACTIONS(761), - [sym_true] = ACTIONS(743), - [sym_false] = ACTIONS(743), - [sym_none] = ACTIONS(743), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(763), - }, - [STATE(181)] = { - [sym_list_splat_pattern] = STATE(1300), - [sym_primary_expression] = STATE(1105), - [sym_binary_operator] = STATE(1392), - [sym_unary_operator] = STATE(1392), - [sym_attribute] = STATE(1392), - [sym_subscript] = STATE(1392), - [sym_call] = STATE(1392), - [sym_list] = STATE(1392), - [sym_set] = STATE(1392), - [sym_tuple] = STATE(1392), - [sym_dictionary] = STATE(1392), - [sym_list_comprehension] = STATE(1392), - [sym_dictionary_comprehension] = STATE(1392), - [sym_set_comprehension] = STATE(1392), - [sym_generator_expression] = STATE(1392), - [sym_parenthesized_expression] = STATE(1392), - [sym_concatenated_string] = STATE(1392), - [sym_string] = STATE(1003), - [sym_await] = STATE(1392), - [sym_identifier] = ACTIONS(316), - [anon_sym_DOT] = ACTIONS(653), - [anon_sym_LPAREN] = ACTIONS(656), - [anon_sym_COMMA] = ACTIONS(651), - [anon_sym_STAR] = ACTIONS(660), - [anon_sym_print] = ACTIONS(662), - [anon_sym_GT_GT] = ACTIONS(653), - [anon_sym_COLON] = ACTIONS(651), - [anon_sym_match] = ACTIONS(664), - [anon_sym_async] = ACTIONS(662), - [anon_sym_STAR_STAR] = ACTIONS(653), - [anon_sym_exec] = ACTIONS(662), - [anon_sym_type] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(651), - [anon_sym_LBRACK] = ACTIONS(666), - [anon_sym_AT] = ACTIONS(653), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_PIPE] = ACTIONS(653), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(653), - [anon_sym_PERCENT] = ACTIONS(653), - [anon_sym_SLASH_SLASH] = ACTIONS(653), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_CARET] = ACTIONS(653), - [anon_sym_LT_LT] = ACTIONS(653), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_PLUS_EQ] = ACTIONS(651), - [anon_sym_DASH_EQ] = ACTIONS(651), - [anon_sym_STAR_EQ] = ACTIONS(651), - [anon_sym_SLASH_EQ] = ACTIONS(651), - [anon_sym_AT_EQ] = ACTIONS(651), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(651), - [anon_sym_PERCENT_EQ] = ACTIONS(651), - [anon_sym_STAR_STAR_EQ] = ACTIONS(651), - [anon_sym_GT_GT_EQ] = ACTIONS(651), - [anon_sym_LT_LT_EQ] = ACTIONS(651), - [anon_sym_AMP_EQ] = ACTIONS(651), - [anon_sym_CARET_EQ] = ACTIONS(651), - [anon_sym_PIPE_EQ] = ACTIONS(651), - [sym_ellipsis] = ACTIONS(314), - [sym_integer] = ACTIONS(316), - [sym_float] = ACTIONS(314), - [anon_sym_await] = ACTIONS(670), - [sym_true] = ACTIONS(316), - [sym_false] = ACTIONS(316), - [sym_none] = ACTIONS(316), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(320), - }, - [STATE(182)] = { - [sym_list_splat_pattern] = STATE(1300), - [sym_primary_expression] = STATE(1105), - [sym_binary_operator] = STATE(1392), - [sym_unary_operator] = STATE(1392), - [sym_attribute] = STATE(1392), - [sym_subscript] = STATE(1392), - [sym_call] = STATE(1392), - [sym_list] = STATE(1392), - [sym_set] = STATE(1392), - [sym_tuple] = STATE(1392), - [sym_dictionary] = STATE(1392), - [sym_list_comprehension] = STATE(1392), - [sym_dictionary_comprehension] = STATE(1392), - [sym_set_comprehension] = STATE(1392), - [sym_generator_expression] = STATE(1392), - [sym_parenthesized_expression] = STATE(1392), - [sym_concatenated_string] = STATE(1392), - [sym_string] = STATE(1003), - [sym_await] = STATE(1392), - [sym_identifier] = ACTIONS(316), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(656), - [anon_sym_COMMA] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(660), - [anon_sym_print] = ACTIONS(662), - [anon_sym_GT_GT] = ACTIONS(271), - [anon_sym_COLON] = ACTIONS(312), - [anon_sym_match] = ACTIONS(664), - [anon_sym_async] = ACTIONS(662), - [anon_sym_STAR_STAR] = ACTIONS(271), - [anon_sym_exec] = ACTIONS(662), - [anon_sym_type] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(312), - [anon_sym_LBRACK] = ACTIONS(666), - [anon_sym_AT] = ACTIONS(271), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(271), - [anon_sym_SLASH_SLASH] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(271), - [anon_sym_CARET] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(271), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_PLUS_EQ] = ACTIONS(312), - [anon_sym_DASH_EQ] = ACTIONS(312), - [anon_sym_STAR_EQ] = ACTIONS(312), - [anon_sym_SLASH_EQ] = ACTIONS(312), - [anon_sym_AT_EQ] = ACTIONS(312), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(312), - [anon_sym_PERCENT_EQ] = ACTIONS(312), - [anon_sym_STAR_STAR_EQ] = ACTIONS(312), - [anon_sym_GT_GT_EQ] = ACTIONS(312), - [anon_sym_LT_LT_EQ] = ACTIONS(312), - [anon_sym_AMP_EQ] = ACTIONS(312), - [anon_sym_CARET_EQ] = ACTIONS(312), - [anon_sym_PIPE_EQ] = ACTIONS(312), - [sym_ellipsis] = ACTIONS(314), - [sym_integer] = ACTIONS(316), - [sym_float] = ACTIONS(314), - [anon_sym_await] = ACTIONS(670), - [sym_true] = ACTIONS(316), - [sym_false] = ACTIONS(316), - [sym_none] = ACTIONS(316), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(320), - }, - [STATE(183)] = { - [sym_named_expression] = STATE(1689), - [sym__named_expression_lhs] = STATE(2626), - [sym_list_splat] = STATE(2485), - [sym_parenthesized_list_splat] = STATE(2485), - [sym_list_splat_pattern] = STATE(1254), - [sym_as_pattern] = STATE(1689), - [sym_expression] = STATE(1646), - [sym_primary_expression] = STATE(919), - [sym_not_operator] = STATE(1689), - [sym_boolean_operator] = STATE(1689), - [sym_binary_operator] = STATE(1148), - [sym_unary_operator] = STATE(1148), - [sym_comparison_operator] = STATE(1689), - [sym_lambda] = STATE(1689), - [sym_yield] = STATE(2485), - [sym_attribute] = STATE(1148), - [sym_subscript] = STATE(1148), - [sym_call] = STATE(1148), - [sym_type] = STATE(1956), - [sym_splat_type] = STATE(2005), - [sym_generic_type] = STATE(2005), - [sym_union_type] = STATE(2005), - [sym_constrained_type] = STATE(2005), - [sym_member_type] = STATE(2005), - [sym_list] = STATE(1148), - [sym_set] = STATE(1148), - [sym_tuple] = STATE(1148), - [sym_dictionary] = STATE(1148), - [sym_list_comprehension] = STATE(1148), - [sym_dictionary_comprehension] = STATE(1148), - [sym_set_comprehension] = STATE(1148), - [sym_generator_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym__collection_elements] = STATE(2725), - [sym_conditional_expression] = STATE(1689), - [sym_concatenated_string] = STATE(1148), - [sym_string] = STATE(970), - [sym_await] = STATE(1148), - [sym_identifier] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(813), - [anon_sym_print] = ACTIONS(815), - [anon_sym_match] = ACTIONS(817), - [anon_sym_async] = ACTIONS(815), - [anon_sym_STAR_STAR] = ACTIONS(819), - [anon_sym_exec] = ACTIONS(815), - [anon_sym_type] = ACTIONS(821), - [anon_sym_LBRACK] = ACTIONS(797), - [anon_sym_RBRACK] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_LBRACE] = ACTIONS(801), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_not] = ACTIONS(825), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_lambda] = ACTIONS(827), - [anon_sym_yield] = ACTIONS(829), - [sym_ellipsis] = ACTIONS(803), - [sym_integer] = ACTIONS(787), - [sym_float] = ACTIONS(803), - [anon_sym_await] = ACTIONS(831), - [sym_true] = ACTIONS(787), - [sym_false] = ACTIONS(787), - [sym_none] = ACTIONS(787), + [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(807), + [sym_string_start] = ACTIONS(709), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 30, - ACTIONS(731), 1, - anon_sym_LBRACK, - ACTIONS(735), 1, - anon_sym_LBRACE, - ACTIONS(741), 1, - sym_string_start, - ACTIONS(833), 1, + [0] = 28, + ACTIONS(9), 1, sym_identifier, - ACTIONS(835), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(837), 1, - anon_sym_COMMA, - ACTIONS(839), 1, + ACTIONS(17), 1, anon_sym_STAR, - ACTIONS(845), 1, - anon_sym_STAR_STAR, - ACTIONS(847), 1, - anon_sym_RBRACE, - ACTIONS(849), 1, + ACTIONS(61), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(851), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(853), 1, + ACTIONS(73), 1, anon_sym_yield, - ACTIONS(855), 1, + ACTIONS(79), 1, anon_sym_await, - STATE(880), 1, + ACTIONS(81), 1, + sym_string_start, + STATE(628), 1, + sym_list_splat_pattern, + STATE(949), 1, sym_primary_expression, - STATE(963), 1, + STATE(954), 1, sym_string, - STATE(1213), 1, - sym_list_splat_pattern, - STATE(1665), 1, + STATE(1623), 1, + sym_pattern, + STATE(1634), 1, + sym_pattern_list, + STATE(1816), 1, sym_expression, - STATE(1854), 1, - sym_pair, - STATE(2391), 1, - sym_dictionary_splat, - STATE(2646), 1, + STATE(2616), 1, sym__named_expression_lhs, - STATE(2683), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(737), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(843), 2, + ACTIONS(405), 2, anon_sym_match, anon_sym_type, - ACTIONS(733), 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(841), 3, + ACTIONS(407), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2274), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(721), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 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, @@ -28766,11 +28395,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1190), 16, + STATE(1099), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -28783,76 +28410,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [124] = 30, - ACTIONS(731), 1, - anon_sym_LBRACK, - ACTIONS(735), 1, + [120] = 30, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(741), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(833), 1, - sym_identifier, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(839), 1, - anon_sym_STAR, - ACTIONS(845), 1, - anon_sym_STAR_STAR, - ACTIONS(849), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(851), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(853), 1, + ACTIONS(821), 1, anon_sym_yield, - ACTIONS(855), 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(837), 1, + anon_sym_RBRACK, + ACTIONS(839), 1, anon_sym_await, - ACTIONS(857), 1, - anon_sym_COMMA, - ACTIONS(859), 1, - anon_sym_RBRACE, - STATE(880), 1, + STATE(857), 1, sym_primary_expression, - STATE(963), 1, + STATE(969), 1, sym_string, - STATE(1213), 1, + STATE(1341), 1, sym_list_splat_pattern, - STATE(1661), 1, + STATE(1714), 1, sym_expression, - STATE(1855), 1, - sym_pair, - STATE(2241), 1, - sym_dictionary_splat, - STATE(2646), 1, - sym__named_expression_lhs, - STATE(2696), 1, + STATE(2283), 1, + sym_pattern, + 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(737), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(843), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - ACTIONS(733), 3, + STATE(1352), 2, + sym_attribute, + sym_subscript, + STATE(2487), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(841), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2274), 3, + STATE(2280), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(721), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -28860,11 +28489,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1190), 16, + STATE(1280), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -28877,76 +28504,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [248] = 30, - ACTIONS(731), 1, - anon_sym_LBRACK, - ACTIONS(735), 1, + [244] = 30, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(741), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(833), 1, - sym_identifier, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(839), 1, - anon_sym_STAR, - ACTIONS(845), 1, - anon_sym_STAR_STAR, - ACTIONS(849), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(851), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(853), 1, + ACTIONS(821), 1, anon_sym_yield, - ACTIONS(855), 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(861), 1, - anon_sym_COMMA, - ACTIONS(863), 1, - anon_sym_RBRACE, - STATE(880), 1, + ACTIONS(841), 1, + anon_sym_RBRACK, + STATE(857), 1, sym_primary_expression, - STATE(963), 1, + STATE(969), 1, sym_string, - STATE(1213), 1, + STATE(1341), 1, sym_list_splat_pattern, - STATE(1654), 1, + STATE(1714), 1, sym_expression, - STATE(1862), 1, - sym_pair, - STATE(2314), 1, - sym_dictionary_splat, - STATE(2597), 1, + STATE(2283), 1, + sym_pattern, + STATE(2648), 1, + sym__patterns, + STATE(2700), 1, sym__collection_elements, - STATE(2646), 1, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(737), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(843), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - ACTIONS(733), 3, + STATE(1352), 2, + sym_attribute, + sym_subscript, + STATE(2487), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(841), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2274), 3, + STATE(2280), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(721), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -28954,11 +28583,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1190), 16, + STATE(1280), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -28971,79 +28598,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [372] = 31, - ACTIONS(713), 1, - anon_sym_LBRACE, - ACTIONS(719), 1, - sym_string_start, - ACTIONS(865), 1, + [368] = 28, + ACTIONS(9), 1, sym_identifier, - ACTIONS(867), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(869), 1, - anon_sym_RPAREN, - ACTIONS(871), 1, + ACTIONS(17), 1, anon_sym_STAR, - ACTIONS(877), 1, + ACTIONS(61), 1, anon_sym_LBRACK, - ACTIONS(879), 1, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(881), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(883), 1, + ACTIONS(73), 1, anon_sym_yield, - ACTIONS(885), 1, + ACTIONS(79), 1, anon_sym_await, - STATE(956), 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(1314), 1, - sym_list_splat_pattern, - STATE(1679), 1, - sym_expression, - STATE(2373), 1, - sym_yield, - STATE(2404), 1, + STATE(1623), 1, sym_pattern, - STATE(2653), 1, - sym__collection_elements, - STATE(2712), 1, + STATE(1634), 1, + sym_pattern_list, + STATE(1816), 1, + sym_expression, + STATE(2616), 1, sym__named_expression_lhs, - STATE(2729), 1, - sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(875), 2, + ACTIONS(405), 2, anon_sym_match, anon_sym_type, - STATE(1327), 2, + STATE(638), 2, sym_attribute, sym_subscript, - STATE(2460), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2537), 2, + STATE(1626), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(711), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(873), 3, + ACTIONS(407), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + 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, @@ -29051,7 +28675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 14, + STATE(1099), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29066,78 +28690,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [498] = 30, - ACTIONS(801), 1, + [488] = 31, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(807), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(825), 1, - anon_sym_not, - ACTIONS(827), 1, - anon_sym_lambda, - ACTIONS(829), 1, - anon_sym_yield, - ACTIONS(887), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(889), 1, + ACTIONS(845), 1, anon_sym_LPAREN, - ACTIONS(891), 1, + ACTIONS(847), 1, + anon_sym_RPAREN, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(897), 1, + ACTIONS(855), 1, anon_sym_LBRACK, - ACTIONS(899), 1, - anon_sym_RBRACK, - ACTIONS(901), 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, - STATE(919), 1, + STATE(950), 1, sym_primary_expression, - STATE(970), 1, + STATE(985), 1, sym_string, - STATE(1351), 1, + STATE(1340), 1, sym_list_splat_pattern, - STATE(1712), 1, + STATE(1717), 1, sym_expression, - STATE(2480), 1, + STATE(2289), 1, sym_pattern, - STATE(2626), 1, - sym__named_expression_lhs, - STATE(2658), 1, + STATE(2316), 1, + sym_yield, + STATE(2615), 1, sym__patterns, - STATE(2706), 1, + STATE(2698), 1, + sym__named_expression_lhs, + STATE(2737), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(803), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(895), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - STATE(1355), 2, + STATE(1343), 2, sym_attribute, sym_subscript, - STATE(2561), 2, + STATE(2287), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2546), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(799), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(893), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2485), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(787), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1689), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29145,7 +28770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1148), 14, + STATE(1331), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29160,76 +28785,80 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [622] = 30, - ACTIONS(731), 1, - anon_sym_LBRACK, - ACTIONS(735), 1, + [614] = 32, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(741), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(833), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(839), 1, - anon_sym_STAR, ACTIONS(845), 1, - anon_sym_STAR_STAR, + anon_sym_LPAREN, ACTIONS(849), 1, + anon_sym_STAR, + ACTIONS(855), 1, + anon_sym_LBRACK, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(851), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(853), 1, + ACTIONS(861), 1, anon_sym_yield, - ACTIONS(855), 1, + ACTIONS(863), 1, anon_sym_await, - ACTIONS(903), 1, - anon_sym_COMMA, - ACTIONS(905), 1, - anon_sym_RBRACE, - STATE(880), 1, + ACTIONS(865), 1, + anon_sym_RPAREN, + STATE(950), 1, sym_primary_expression, - STATE(963), 1, + STATE(985), 1, sym_string, - STATE(1213), 1, + STATE(1340), 1, sym_list_splat_pattern, - STATE(1662), 1, + STATE(1676), 1, sym_expression, - STATE(1840), 1, - sym_pair, - STATE(2296), 1, - sym_dictionary_splat, - STATE(2646), 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(2723), 1, + STATE(2743), 1, sym__collection_elements, + STATE(2756), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(737), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(843), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - ACTIONS(733), 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(841), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2274), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(721), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29237,11 +28866,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1190), 16, + STATE(1331), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -29254,79 +28881,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [746] = 31, - ACTIONS(713), 1, + [742] = 31, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(867), 1, + ACTIONS(845), 1, anon_sym_LPAREN, - ACTIONS(871), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(877), 1, + ACTIONS(855), 1, anon_sym_LBRACK, - ACTIONS(879), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(881), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(883), 1, + ACTIONS(861), 1, anon_sym_yield, - ACTIONS(885), 1, + ACTIONS(863), 1, anon_sym_await, - ACTIONS(907), 1, + ACTIONS(867), 1, anon_sym_RPAREN, - STATE(956), 1, + STATE(950), 1, sym_primary_expression, - STATE(977), 1, + STATE(985), 1, sym_string, - STATE(1314), 1, + STATE(1340), 1, sym_list_splat_pattern, - STATE(1679), 1, + STATE(1665), 1, sym_expression, - STATE(2373), 1, - sym_yield, - STATE(2404), 1, + STATE(2289), 1, sym_pattern, - STATE(2629), 1, - sym__patterns, - STATE(2653), 1, + STATE(2352), 1, + sym_yield, + STATE(2602), 1, sym__collection_elements, - STATE(2712), 1, + STATE(2615), 1, + sym__patterns, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(875), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - STATE(1327), 2, + STATE(1343), 2, sym_attribute, sym_subscript, - STATE(2460), 2, + STATE(2287), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2537), 2, + STATE(2546), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(711), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(873), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 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, @@ -29334,7 +28961,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 14, + STATE(1331), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29349,78 +28976,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [872] = 30, - ACTIONS(801), 1, + [868] = 30, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(807), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(827), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(829), 1, + ACTIONS(821), 1, anon_sym_yield, - ACTIONS(887), 1, + ACTIONS(825), 1, sym_identifier, - ACTIONS(889), 1, + ACTIONS(827), 1, anon_sym_LPAREN, - ACTIONS(891), 1, + ACTIONS(829), 1, anon_sym_STAR, - ACTIONS(897), 1, + ACTIONS(835), 1, anon_sym_LBRACK, - ACTIONS(901), 1, + ACTIONS(839), 1, anon_sym_await, - ACTIONS(909), 1, + ACTIONS(869), 1, anon_sym_RBRACK, - STATE(919), 1, + STATE(857), 1, sym_primary_expression, - STATE(970), 1, + STATE(969), 1, sym_string, - STATE(1351), 1, + STATE(1341), 1, sym_list_splat_pattern, - STATE(1706), 1, + STATE(1707), 1, sym_expression, - STATE(2480), 1, + STATE(2283), 1, sym_pattern, - STATE(2609), 1, + STATE(2648), 1, sym__patterns, - STATE(2612), 1, + STATE(2689), 1, sym__collection_elements, - STATE(2626), 1, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(803), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(895), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - STATE(1355), 2, + STATE(1352), 2, sym_attribute, sym_subscript, - STATE(2561), 2, + STATE(2487), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(799), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(893), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2485), 3, + STATE(2280), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(787), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1689), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29428,7 +29055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1148), 14, + STATE(1280), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29443,79 +29070,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [996] = 31, - ACTIONS(713), 1, + [992] = 30, + ACTIONS(743), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(871), 1, sym_identifier, - ACTIONS(867), 1, + ACTIONS(873), 1, anon_sym_LPAREN, - ACTIONS(871), 1, - anon_sym_STAR, + ACTIONS(875), 1, + anon_sym_COMMA, ACTIONS(877), 1, - anon_sym_LBRACK, - ACTIONS(879), 1, + anon_sym_STAR, + ACTIONS(883), 1, + anon_sym_STAR_STAR, + ACTIONS(885), 1, + anon_sym_RBRACE, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(881), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(883), 1, + ACTIONS(891), 1, anon_sym_yield, - ACTIONS(885), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(911), 1, - anon_sym_RPAREN, - STATE(956), 1, + STATE(893), 1, sym_primary_expression, - STATE(977), 1, + STATE(958), 1, sym_string, - STATE(1314), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1679), 1, + STATE(1655), 1, sym_expression, - STATE(2373), 1, - sym_yield, - STATE(2404), 1, - sym_pattern, - STATE(2629), 1, - sym__patterns, - STATE(2653), 1, + STATE(1856), 1, + sym_pair, + STATE(2234), 1, + sym_dictionary_splat, + STATE(2644), 1, sym__collection_elements, - STATE(2712), 1, + STATE(2645), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(875), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - STATE(1327), 2, - sym_attribute, - sym_subscript, - STATE(2460), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2537), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(711), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(873), 3, + ACTIONS(879), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 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(1787), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29523,9 +29147,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 14, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -29538,78 +29164,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1122] = 30, - ACTIONS(801), 1, + [1116] = 31, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(807), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(825), 1, - anon_sym_not, - ACTIONS(827), 1, - anon_sym_lambda, - ACTIONS(829), 1, - anon_sym_yield, - ACTIONS(887), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(889), 1, + ACTIONS(845), 1, anon_sym_LPAREN, - ACTIONS(891), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(897), 1, + ACTIONS(855), 1, anon_sym_LBRACK, - ACTIONS(901), 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(913), 1, - anon_sym_RBRACK, - STATE(919), 1, + ACTIONS(895), 1, + anon_sym_RPAREN, + STATE(950), 1, sym_primary_expression, - STATE(970), 1, + STATE(985), 1, sym_string, - STATE(1351), 1, + STATE(1340), 1, sym_list_splat_pattern, - STATE(1715), 1, + STATE(1718), 1, sym_expression, - STATE(2480), 1, + STATE(2289), 1, sym_pattern, - STATE(2626), 1, - sym__named_expression_lhs, - STATE(2734), 1, - sym__collection_elements, - STATE(2747), 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(803), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(895), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - STATE(1355), 2, + STATE(1343), 2, sym_attribute, sym_subscript, - STATE(2561), 2, + STATE(2287), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2546), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(799), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(893), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2485), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(787), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1689), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29617,7 +29244,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1148), 14, + STATE(1331), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29632,76 +29259,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1246] = 30, - ACTIONS(731), 1, + [1242] = 30, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(741), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(833), 1, + ACTIONS(871), 1, sym_identifier, - ACTIONS(835), 1, + ACTIONS(873), 1, anon_sym_LPAREN, - ACTIONS(839), 1, + ACTIONS(877), 1, anon_sym_STAR, - ACTIONS(845), 1, + ACTIONS(883), 1, anon_sym_STAR_STAR, - ACTIONS(849), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(851), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(853), 1, + ACTIONS(891), 1, anon_sym_yield, - ACTIONS(855), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(915), 1, + ACTIONS(897), 1, anon_sym_COMMA, - ACTIONS(917), 1, + ACTIONS(899), 1, anon_sym_RBRACE, - STATE(880), 1, + STATE(893), 1, sym_primary_expression, - STATE(963), 1, + STATE(958), 1, sym_string, - STATE(1213), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1663), 1, + STATE(1650), 1, sym_expression, - STATE(1842), 1, + STATE(1829), 1, sym_pair, - STATE(2346), 1, + STATE(2284), 1, sym_dictionary_splat, - STATE(2646), 1, - sym__named_expression_lhs, - STATE(2677), 1, + STATE(2629), 1, sym__collection_elements, + STATE(2645), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(737), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(843), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - ACTIONS(733), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(841), 3, + ACTIONS(879), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2274), 3, + STATE(2372), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(721), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29709,7 +29336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1190), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29726,76 +29353,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1370] = 30, - ACTIONS(731), 1, - anon_sym_LBRACK, - ACTIONS(735), 1, + [1366] = 31, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(741), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(833), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(835), 1, - anon_sym_LPAREN, - ACTIONS(839), 1, - anon_sym_STAR, ACTIONS(845), 1, - anon_sym_STAR_STAR, + anon_sym_LPAREN, ACTIONS(849), 1, + anon_sym_STAR, + ACTIONS(855), 1, + anon_sym_LBRACK, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(851), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(853), 1, + ACTIONS(861), 1, anon_sym_yield, - ACTIONS(855), 1, + ACTIONS(863), 1, anon_sym_await, - ACTIONS(919), 1, - anon_sym_COMMA, - ACTIONS(921), 1, - anon_sym_RBRACE, - STATE(880), 1, + ACTIONS(901), 1, + anon_sym_RPAREN, + STATE(950), 1, sym_primary_expression, - STATE(963), 1, + STATE(985), 1, sym_string, - STATE(1213), 1, + STATE(1340), 1, sym_list_splat_pattern, - STATE(1660), 1, + STATE(1718), 1, sym_expression, - STATE(1848), 1, - sym_pair, - STATE(2442), 1, - sym_dictionary_splat, - STATE(2646), 1, - sym__named_expression_lhs, - STATE(2695), 1, + STATE(2289), 1, + sym_pattern, + STATE(2476), 1, + sym_yield, + STATE(2641), 1, sym__collection_elements, + STATE(2698), 1, + sym__named_expression_lhs, + STATE(2709), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(737), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(843), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - ACTIONS(733), 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(841), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2274), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(721), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29803,11 +29433,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1190), 16, + STATE(1331), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -29820,76 +29448,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1494] = 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, + [1492] = 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(632), 1, - sym_list_splat_pattern, - STATE(951), 1, + ACTIONS(903), 1, + anon_sym_RBRACK, + STATE(857), 1, sym_primary_expression, - STATE(953), 1, + STATE(969), 1, sym_string, - STATE(1623), 1, - sym_pattern, - STATE(1631), 1, - sym_pattern_list, - STATE(1812), 1, + STATE(1341), 1, + sym_list_splat_pattern, + STATE(1709), 1, sym_expression, - STATE(2724), 1, + STATE(2283), 1, + sym_pattern, + STATE(2678), 1, + sym__patterns, + STATE(2716), 1, sym__named_expression_lhs, + STATE(2775), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(409), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - STATE(635), 2, + STATE(1352), 2, sym_attribute, sym_subscript, - STATE(1638), 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(411), 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(2560), 5, - sym_expression_list, - sym_assignment, - sym_augmented_assignment, - sym__right_hand_side, - sym_yield, - STATE(1659), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29897,7 +29527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1052), 14, + STATE(1280), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29912,80 +29542,172 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1614] = 32, - ACTIONS(713), 1, + [1616] = 30, + ACTIONS(743), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(871), 1, sym_identifier, - ACTIONS(867), 1, + ACTIONS(873), 1, anon_sym_LPAREN, - ACTIONS(871), 1, - anon_sym_STAR, ACTIONS(877), 1, - anon_sym_LBRACK, - ACTIONS(879), 1, + anon_sym_STAR, + ACTIONS(883), 1, + anon_sym_STAR_STAR, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(881), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(883), 1, + ACTIONS(891), 1, anon_sym_yield, - ACTIONS(885), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(923), 1, - anon_sym_RPAREN, - STATE(956), 1, + ACTIONS(905), 1, + anon_sym_COMMA, + ACTIONS(907), 1, + anon_sym_RBRACE, + STATE(893), 1, sym_primary_expression, - STATE(977), 1, + STATE(958), 1, sym_string, - STATE(1314), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1672), 1, + STATE(1657), 1, sym_expression, - STATE(2377), 1, - sym_yield, - STATE(2404), 1, - sym_pattern, - STATE(2457), 1, - sym_parenthesized_list_splat, - STATE(2465), 1, - sym_list_splat, - STATE(2616), 1, - sym__collection_elements, - STATE(2712), 1, + STATE(1860), 1, + sym_pair, + STATE(2276), 1, + sym_dictionary_splat, + STATE(2645), 1, sym__named_expression_lhs, - STATE(2729), 1, + STATE(2740), 1, + sym__collection_elements, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(749), 2, + sym_ellipsis, + sym_float, + ACTIONS(881), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(745), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(879), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2372), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(733), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1754), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1180), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [1740] = 30, + 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(821), 1, + anon_sym_yield, + 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(909), 1, + anon_sym_RBRACK, + STATE(857), 1, + sym_primary_expression, + STATE(969), 1, + sym_string, + STATE(1341), 1, + sym_list_splat_pattern, + STATE(1705), 1, + sym_expression, + STATE(2283), 1, + sym_pattern, + STATE(2716), 1, + sym__named_expression_lhs, + STATE(2718), 1, sym__patterns, + STATE(2719), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(875), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - STATE(1327), 2, + STATE(1352), 2, sym_attribute, sym_subscript, - STATE(2537), 2, + STATE(2487), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(711), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(873), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 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(1787), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29993,7 +29715,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 14, + STATE(1280), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30008,79 +29730,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1742] = 31, - ACTIONS(713), 1, + [1864] = 31, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(867), 1, + ACTIONS(845), 1, anon_sym_LPAREN, - ACTIONS(871), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(877), 1, + ACTIONS(855), 1, anon_sym_LBRACK, - ACTIONS(879), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(881), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(883), 1, + ACTIONS(861), 1, anon_sym_yield, - ACTIONS(885), 1, + ACTIONS(863), 1, anon_sym_await, - ACTIONS(925), 1, + ACTIONS(911), 1, anon_sym_RPAREN, - STATE(956), 1, + STATE(950), 1, sym_primary_expression, - STATE(977), 1, + STATE(985), 1, sym_string, - STATE(1314), 1, + STATE(1340), 1, sym_list_splat_pattern, - STATE(1679), 1, + STATE(1718), 1, sym_expression, - STATE(2373), 1, - sym_yield, - STATE(2404), 1, + STATE(2289), 1, sym_pattern, - STATE(2653), 1, + STATE(2476), 1, + sym_yield, + STATE(2615), 1, + sym__patterns, + STATE(2641), 1, sym__collection_elements, - STATE(2712), 1, + STATE(2698), 1, sym__named_expression_lhs, - STATE(2776), 1, - sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(875), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - STATE(1327), 2, + STATE(1343), 2, sym_attribute, sym_subscript, - STATE(2460), 2, + STATE(2287), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2537), 2, + STATE(2546), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(711), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(873), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 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, @@ -30088,7 +29810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 14, + STATE(1331), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30103,78 +29825,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1868] = 30, - ACTIONS(801), 1, + [1990] = 30, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(807), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(827), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(829), 1, + ACTIONS(821), 1, anon_sym_yield, - ACTIONS(887), 1, + ACTIONS(825), 1, sym_identifier, - ACTIONS(889), 1, + ACTIONS(827), 1, anon_sym_LPAREN, - ACTIONS(891), 1, + ACTIONS(829), 1, anon_sym_STAR, - ACTIONS(897), 1, + ACTIONS(835), 1, anon_sym_LBRACK, - ACTIONS(901), 1, + ACTIONS(839), 1, anon_sym_await, - ACTIONS(927), 1, + ACTIONS(913), 1, anon_sym_RBRACK, - STATE(919), 1, + STATE(857), 1, sym_primary_expression, - STATE(970), 1, + STATE(969), 1, sym_string, - STATE(1351), 1, + STATE(1341), 1, sym_list_splat_pattern, - STATE(1709), 1, + STATE(1713), 1, sym_expression, - STATE(2480), 1, + STATE(2283), 1, sym_pattern, - STATE(2609), 1, + STATE(2614), 1, + sym__collection_elements, + STATE(2648), 1, sym__patterns, - STATE(2626), 1, + STATE(2716), 1, sym__named_expression_lhs, - STATE(2725), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(803), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(895), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - STATE(1355), 2, + STATE(1352), 2, sym_attribute, sym_subscript, - STATE(2561), 2, + STATE(2487), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(799), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(893), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2485), 3, + STATE(2280), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(787), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1689), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30182,7 +29904,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1148), 14, + STATE(1280), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30197,76 +29919,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1992] = 30, - ACTIONS(731), 1, + [2114] = 30, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(741), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(833), 1, + ACTIONS(871), 1, sym_identifier, - ACTIONS(835), 1, + ACTIONS(873), 1, anon_sym_LPAREN, - ACTIONS(839), 1, + ACTIONS(877), 1, anon_sym_STAR, - ACTIONS(845), 1, + ACTIONS(883), 1, anon_sym_STAR_STAR, - ACTIONS(849), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(851), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(853), 1, + ACTIONS(891), 1, anon_sym_yield, - ACTIONS(855), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(929), 1, + ACTIONS(915), 1, anon_sym_COMMA, - ACTIONS(931), 1, + ACTIONS(917), 1, anon_sym_RBRACE, - STATE(880), 1, + STATE(893), 1, sym_primary_expression, - STATE(963), 1, + STATE(958), 1, sym_string, - STATE(1213), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1664), 1, + STATE(1659), 1, sym_expression, - STATE(1849), 1, + STATE(1868), 1, sym_pair, - STATE(2369), 1, + STATE(2324), 1, sym_dictionary_splat, - STATE(2604), 1, - sym__collection_elements, - STATE(2646), 1, + STATE(2645), 1, sym__named_expression_lhs, + STATE(2683), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(737), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(843), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - ACTIONS(733), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(841), 3, + ACTIONS(879), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2274), 3, + STATE(2372), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(721), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30274,7 +29996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1190), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30291,78 +30013,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2116] = 30, - ACTIONS(801), 1, - anon_sym_LBRACE, - ACTIONS(807), 1, - sym_string_start, - ACTIONS(825), 1, - anon_sym_not, - ACTIONS(827), 1, - anon_sym_lambda, - ACTIONS(829), 1, - anon_sym_yield, - ACTIONS(887), 1, + [2238] = 28, + ACTIONS(9), 1, sym_identifier, - ACTIONS(889), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(891), 1, + ACTIONS(17), 1, anon_sym_STAR, - ACTIONS(897), 1, + ACTIONS(61), 1, anon_sym_LBRACK, - ACTIONS(901), 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(933), 1, - anon_sym_RBRACK, - STATE(919), 1, + ACTIONS(81), 1, + sym_string_start, + STATE(628), 1, + sym_list_splat_pattern, + STATE(949), 1, sym_primary_expression, - STATE(970), 1, + STATE(954), 1, sym_string, - STATE(1351), 1, - sym_list_splat_pattern, - STATE(1669), 1, - sym_expression, - STATE(2480), 1, + STATE(1623), 1, sym_pattern, - STATE(2626), 1, + STATE(1634), 1, + sym_pattern_list, + STATE(1816), 1, + sym_expression, + STATE(2616), 1, sym__named_expression_lhs, - STATE(2747), 1, - sym__patterns, - STATE(2750), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(803), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(895), 2, + ACTIONS(405), 2, anon_sym_match, anon_sym_type, - STATE(1355), 2, + STATE(638), 2, sym_attribute, sym_subscript, - STATE(2561), 2, + STATE(1626), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(799), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(893), 3, + ACTIONS(407), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2485), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(787), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1689), 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, @@ -30370,7 +30090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1148), 14, + STATE(1099), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30385,79 +30105,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2240] = 31, - ACTIONS(713), 1, + [2358] = 30, + ACTIONS(743), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(871), 1, sym_identifier, - ACTIONS(867), 1, + ACTIONS(873), 1, anon_sym_LPAREN, - ACTIONS(871), 1, - anon_sym_STAR, ACTIONS(877), 1, - anon_sym_LBRACK, - ACTIONS(879), 1, + anon_sym_STAR, + ACTIONS(883), 1, + anon_sym_STAR_STAR, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(881), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(883), 1, + ACTIONS(891), 1, anon_sym_yield, - ACTIONS(885), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(935), 1, - anon_sym_RPAREN, - STATE(956), 1, + ACTIONS(919), 1, + anon_sym_COMMA, + ACTIONS(921), 1, + anon_sym_RBRACE, + STATE(893), 1, sym_primary_expression, - STATE(977), 1, + STATE(958), 1, sym_string, - STATE(1314), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1699), 1, + STATE(1656), 1, sym_expression, - STATE(2404), 1, - sym_pattern, - STATE(2407), 1, - sym_yield, - STATE(2629), 1, - sym__patterns, - STATE(2712), 1, + STATE(1836), 1, + sym_pair, + STATE(2461), 1, + sym_dictionary_splat, + STATE(2645), 1, sym__named_expression_lhs, - STATE(2766), 1, + STATE(2725), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(875), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - STATE(1327), 2, - sym_attribute, - sym_subscript, - STATE(2460), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2537), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(711), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(873), 3, + ACTIONS(879), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 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(1787), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30465,9 +30182,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 14, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -30480,79 +30199,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2366] = 31, - ACTIONS(713), 1, + [2482] = 31, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(867), 1, + ACTIONS(845), 1, anon_sym_LPAREN, - ACTIONS(871), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(877), 1, + ACTIONS(855), 1, anon_sym_LBRACK, - ACTIONS(879), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(881), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(883), 1, + ACTIONS(861), 1, anon_sym_yield, - ACTIONS(885), 1, + ACTIONS(863), 1, anon_sym_await, - ACTIONS(937), 1, + ACTIONS(923), 1, anon_sym_RPAREN, - STATE(956), 1, + STATE(950), 1, sym_primary_expression, - STATE(977), 1, + STATE(985), 1, sym_string, - STATE(1314), 1, + STATE(1340), 1, sym_list_splat_pattern, - STATE(1679), 1, + STATE(1718), 1, sym_expression, - STATE(2373), 1, - sym_yield, - STATE(2404), 1, + STATE(2289), 1, sym_pattern, - STATE(2642), 1, - sym__patterns, - STATE(2653), 1, + STATE(2476), 1, + sym_yield, + STATE(2641), 1, sym__collection_elements, - STATE(2712), 1, + STATE(2698), 1, sym__named_expression_lhs, + STATE(2756), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(875), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - STATE(1327), 2, + STATE(1343), 2, sym_attribute, sym_subscript, - STATE(2460), 2, + STATE(2287), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2537), 2, + STATE(2546), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(711), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(873), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 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, @@ -30560,7 +30279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 14, + STATE(1331), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30575,78 +30294,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2492] = 30, - ACTIONS(801), 1, + [2608] = 30, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(807), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(827), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(829), 1, + ACTIONS(821), 1, anon_sym_yield, - ACTIONS(887), 1, + ACTIONS(825), 1, sym_identifier, - ACTIONS(889), 1, + ACTIONS(827), 1, anon_sym_LPAREN, - ACTIONS(891), 1, + ACTIONS(829), 1, anon_sym_STAR, - ACTIONS(897), 1, + ACTIONS(835), 1, anon_sym_LBRACK, - ACTIONS(901), 1, + ACTIONS(839), 1, anon_sym_await, - ACTIONS(939), 1, + ACTIONS(925), 1, anon_sym_RBRACK, - STATE(919), 1, + STATE(857), 1, sym_primary_expression, - STATE(970), 1, + STATE(969), 1, sym_string, - STATE(1351), 1, + STATE(1341), 1, sym_list_splat_pattern, - STATE(1709), 1, + STATE(1707), 1, sym_expression, - STATE(2480), 1, + STATE(2283), 1, sym_pattern, - STATE(2626), 1, - sym__named_expression_lhs, - STATE(2725), 1, + STATE(2689), 1, sym__collection_elements, - STATE(2747), 1, + STATE(2716), 1, + sym__named_expression_lhs, + STATE(2718), 1, sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(803), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(895), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - STATE(1355), 2, + STATE(1352), 2, sym_attribute, sym_subscript, - STATE(2561), 2, + STATE(2487), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(799), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(893), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2485), 3, + STATE(2280), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(787), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1689), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30654,7 +30373,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1148), 14, + STATE(1280), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30669,79 +30388,173 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2616] = 31, - ACTIONS(713), 1, + [2732] = 30, + ACTIONS(743), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(871), 1, sym_identifier, - ACTIONS(867), 1, + ACTIONS(873), 1, anon_sym_LPAREN, - ACTIONS(871), 1, - anon_sym_STAR, ACTIONS(877), 1, + anon_sym_STAR, + ACTIONS(883), 1, + anon_sym_STAR_STAR, + ACTIONS(887), 1, + anon_sym_not, + ACTIONS(889), 1, + anon_sym_lambda, + ACTIONS(891), 1, + anon_sym_yield, + ACTIONS(893), 1, + anon_sym_await, + ACTIONS(927), 1, + anon_sym_COMMA, + ACTIONS(929), 1, + anon_sym_RBRACE, + STATE(893), 1, + sym_primary_expression, + STATE(958), 1, + sym_string, + STATE(1259), 1, + sym_list_splat_pattern, + STATE(1660), 1, + sym_expression, + 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(749), 2, + sym_ellipsis, + sym_float, + ACTIONS(881), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(745), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(879), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2372), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(733), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1754), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1180), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [2856] = 31, + ACTIONS(793), 1, + anon_sym_LBRACE, + ACTIONS(799), 1, + sym_string_start, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(845), 1, + anon_sym_LPAREN, + ACTIONS(849), 1, + anon_sym_STAR, + ACTIONS(855), 1, anon_sym_LBRACK, - ACTIONS(879), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(881), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(883), 1, + ACTIONS(861), 1, anon_sym_yield, - ACTIONS(885), 1, + ACTIONS(863), 1, anon_sym_await, - ACTIONS(941), 1, + ACTIONS(931), 1, anon_sym_RPAREN, - STATE(956), 1, + STATE(950), 1, sym_primary_expression, - STATE(977), 1, + STATE(985), 1, sym_string, - STATE(1314), 1, + STATE(1340), 1, sym_list_splat_pattern, - STATE(1679), 1, + STATE(1718), 1, sym_expression, - STATE(2373), 1, - sym_yield, - STATE(2404), 1, + STATE(2289), 1, sym_pattern, - STATE(2653), 1, + STATE(2476), 1, + sym_yield, + STATE(2641), 1, sym__collection_elements, - STATE(2654), 1, - sym__patterns, - STATE(2712), 1, + STATE(2698), 1, sym__named_expression_lhs, + STATE(2726), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(875), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - STATE(1327), 2, + STATE(1343), 2, sym_attribute, sym_subscript, - STATE(2460), 2, + STATE(2287), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2537), 2, + STATE(2546), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(711), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(873), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 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, @@ -30749,7 +30562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 14, + STATE(1331), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30764,78 +30577,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2742] = 30, - ACTIONS(801), 1, + [2982] = 30, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(807), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(827), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(829), 1, + ACTIONS(821), 1, anon_sym_yield, - ACTIONS(887), 1, + ACTIONS(825), 1, sym_identifier, - ACTIONS(889), 1, + ACTIONS(827), 1, anon_sym_LPAREN, - ACTIONS(891), 1, + ACTIONS(829), 1, anon_sym_STAR, - ACTIONS(897), 1, + ACTIONS(835), 1, anon_sym_LBRACK, - ACTIONS(901), 1, + ACTIONS(839), 1, anon_sym_await, - ACTIONS(943), 1, + ACTIONS(933), 1, anon_sym_RBRACK, - STATE(919), 1, + STATE(857), 1, sym_primary_expression, - STATE(970), 1, + STATE(969), 1, sym_string, - STATE(1351), 1, + STATE(1341), 1, sym_list_splat_pattern, - STATE(1709), 1, + STATE(1707), 1, sym_expression, - STATE(2480), 1, + STATE(2283), 1, sym_pattern, - STATE(2626), 1, - sym__named_expression_lhs, - STATE(2658), 1, + STATE(2648), 1, sym__patterns, - STATE(2725), 1, + STATE(2689), 1, sym__collection_elements, + STATE(2716), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(803), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(895), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - STATE(1355), 2, + STATE(1352), 2, sym_attribute, sym_subscript, - STATE(2561), 2, + STATE(2487), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(799), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(893), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2485), 3, + STATE(2280), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(787), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1689), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30843,7 +30656,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1148), 14, + STATE(1280), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30858,76 +30671,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2866] = 30, - ACTIONS(731), 1, + [3106] = 30, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(741), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(833), 1, + ACTIONS(871), 1, sym_identifier, - ACTIONS(835), 1, + ACTIONS(873), 1, anon_sym_LPAREN, - ACTIONS(839), 1, + ACTIONS(877), 1, anon_sym_STAR, - ACTIONS(845), 1, + ACTIONS(883), 1, anon_sym_STAR_STAR, - ACTIONS(849), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(851), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(853), 1, + ACTIONS(891), 1, anon_sym_yield, - ACTIONS(855), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(945), 1, + ACTIONS(935), 1, anon_sym_COMMA, - ACTIONS(947), 1, + ACTIONS(937), 1, anon_sym_RBRACE, - STATE(880), 1, + STATE(893), 1, sym_primary_expression, - STATE(963), 1, + STATE(958), 1, sym_string, - STATE(1213), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1650), 1, + STATE(1661), 1, sym_expression, - STATE(1857), 1, + STATE(1869), 1, sym_pair, - STATE(2413), 1, + STATE(2379), 1, sym_dictionary_splat, - STATE(2606), 1, - sym__collection_elements, - STATE(2646), 1, + STATE(2645), 1, sym__named_expression_lhs, + STATE(2665), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(737), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(843), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - ACTIONS(733), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(841), 3, + ACTIONS(879), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2274), 3, + STATE(2372), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(721), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30935,7 +30748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1190), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30952,79 +30765,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2990] = 31, - ACTIONS(713), 1, + [3230] = 31, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(867), 1, + ACTIONS(845), 1, anon_sym_LPAREN, - ACTIONS(871), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(877), 1, + ACTIONS(855), 1, anon_sym_LBRACK, - ACTIONS(879), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(881), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(883), 1, + ACTIONS(861), 1, anon_sym_yield, - ACTIONS(885), 1, + ACTIONS(863), 1, anon_sym_await, - ACTIONS(949), 1, + ACTIONS(939), 1, anon_sym_RPAREN, - STATE(956), 1, + STATE(950), 1, sym_primary_expression, - STATE(977), 1, + STATE(985), 1, sym_string, - STATE(1314), 1, + STATE(1340), 1, sym_list_splat_pattern, - STATE(1699), 1, + STATE(1718), 1, sym_expression, - STATE(2404), 1, + STATE(2289), 1, sym_pattern, - STATE(2407), 1, + STATE(2476), 1, sym_yield, - STATE(2629), 1, + STATE(2641), 1, + sym__collection_elements, + STATE(2655), 1, sym__patterns, - STATE(2712), 1, + STATE(2698), 1, sym__named_expression_lhs, - STATE(2766), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(875), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - STATE(1327), 2, + STATE(1343), 2, sym_attribute, sym_subscript, - STATE(2460), 2, + STATE(2287), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2537), 2, + STATE(2546), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(711), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(873), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 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, @@ -31032,7 +30845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 14, + STATE(1331), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31047,78 +30860,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3116] = 30, - ACTIONS(801), 1, + [3356] = 30, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(807), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(827), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(829), 1, + ACTIONS(821), 1, anon_sym_yield, - ACTIONS(887), 1, + ACTIONS(825), 1, sym_identifier, - ACTIONS(889), 1, + ACTIONS(827), 1, anon_sym_LPAREN, - ACTIONS(891), 1, + ACTIONS(829), 1, anon_sym_STAR, - ACTIONS(897), 1, + ACTIONS(835), 1, anon_sym_LBRACK, - ACTIONS(901), 1, + ACTIONS(839), 1, anon_sym_await, - ACTIONS(951), 1, + ACTIONS(941), 1, anon_sym_RBRACK, - STATE(919), 1, + STATE(857), 1, sym_primary_expression, - STATE(970), 1, + STATE(969), 1, sym_string, - STATE(1351), 1, + STATE(1341), 1, sym_list_splat_pattern, - STATE(1709), 1, + STATE(1707), 1, sym_expression, - STATE(2480), 1, + STATE(2283), 1, sym_pattern, - STATE(2626), 1, - sym__named_expression_lhs, - STATE(2703), 1, + STATE(2678), 1, sym__patterns, - STATE(2725), 1, + STATE(2689), 1, sym__collection_elements, + STATE(2716), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(803), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(895), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - STATE(1355), 2, + STATE(1352), 2, sym_attribute, sym_subscript, - STATE(2561), 2, + STATE(2487), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(799), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(893), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2485), 3, + STATE(2280), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(787), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1689), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31126,7 +30939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1148), 14, + STATE(1280), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31141,78 +30954,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3240] = 30, - ACTIONS(801), 1, + [3480] = 30, + ACTIONS(743), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(807), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(825), 1, - anon_sym_not, - ACTIONS(827), 1, - anon_sym_lambda, - ACTIONS(829), 1, - anon_sym_yield, - ACTIONS(887), 1, + ACTIONS(871), 1, sym_identifier, - ACTIONS(889), 1, + ACTIONS(873), 1, anon_sym_LPAREN, - ACTIONS(891), 1, + ACTIONS(877), 1, anon_sym_STAR, - ACTIONS(897), 1, - anon_sym_LBRACK, - ACTIONS(901), 1, + ACTIONS(883), 1, + anon_sym_STAR_STAR, + ACTIONS(887), 1, + anon_sym_not, + ACTIONS(889), 1, + anon_sym_lambda, + ACTIONS(891), 1, + anon_sym_yield, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(953), 1, - anon_sym_RBRACK, - STATE(919), 1, + ACTIONS(943), 1, + anon_sym_COMMA, + ACTIONS(945), 1, + anon_sym_RBRACE, + STATE(893), 1, sym_primary_expression, - STATE(970), 1, + STATE(958), 1, sym_string, - STATE(1351), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1709), 1, + STATE(1662), 1, sym_expression, - STATE(2480), 1, - sym_pattern, - STATE(2626), 1, - sym__named_expression_lhs, - STATE(2662), 1, - sym__patterns, - STATE(2725), 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(803), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(895), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - STATE(1355), 2, - sym_attribute, - sym_subscript, - STATE(2561), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(799), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(893), 3, + ACTIONS(879), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2485), 3, + STATE(2372), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(787), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1689), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31220,9 +31031,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1148), 14, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -31235,170 +31048,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3364] = 30, - ACTIONS(801), 1, + [3604] = 31, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(807), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(825), 1, - anon_sym_not, - ACTIONS(827), 1, - anon_sym_lambda, - ACTIONS(829), 1, - anon_sym_yield, - ACTIONS(887), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(889), 1, + ACTIONS(845), 1, anon_sym_LPAREN, - ACTIONS(891), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(897), 1, + ACTIONS(855), 1, anon_sym_LBRACK, - ACTIONS(901), 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(955), 1, - anon_sym_RBRACK, - STATE(919), 1, + ACTIONS(947), 1, + anon_sym_RPAREN, + STATE(950), 1, sym_primary_expression, - STATE(970), 1, + STATE(985), 1, sym_string, - STATE(1351), 1, + STATE(1340), 1, sym_list_splat_pattern, - STATE(1669), 1, + STATE(1717), 1, sym_expression, - STATE(2480), 1, + STATE(2289), 1, sym_pattern, - STATE(2626), 1, - sym__named_expression_lhs, - STATE(2747), 1, + STATE(2316), 1, + sym_yield, + STATE(2615), 1, sym__patterns, - STATE(2750), 1, + STATE(2698), 1, + sym__named_expression_lhs, + STATE(2737), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(803), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(895), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - STATE(1355), 2, + STATE(1343), 2, sym_attribute, sym_subscript, - STATE(2561), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(799), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(893), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - STATE(2485), 3, + STATE(2287), 2, sym_list_splat, sym_parenthesized_list_splat, - sym_yield, - ACTIONS(787), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1689), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1148), 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, - [3488] = 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, - 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(81), 1, - sym_string_start, - STATE(632), 1, - sym_list_splat_pattern, - STATE(951), 1, - sym_primary_expression, - STATE(953), 1, - sym_string, - STATE(1623), 1, - sym_pattern, - STATE(1631), 1, - sym_pattern_list, - STATE(1812), 1, - sym_expression, - STATE(2724), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(409), 2, - anon_sym_match, - anon_sym_type, - STATE(635), 2, - sym_attribute, - sym_subscript, - STATE(1638), 2, + STATE(2546), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(65), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(411), 3, + ACTIONS(851), 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(2504), 5, - sym_expression_list, - sym_assignment, - sym_augmented_assignment, - sym__right_hand_side, - sym_yield, - STATE(1659), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31406,7 +31128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1052), 14, + STATE(1331), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31421,171 +31143,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3608] = 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, + [3730] = 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, - anon_sym_await, - ACTIONS(81), 1, - sym_string_start, - STATE(632), 1, - sym_list_splat_pattern, - STATE(951), 1, - sym_primary_expression, - STATE(953), 1, - sym_string, - STATE(1623), 1, - sym_pattern, - STATE(1631), 1, - sym_pattern_list, - STATE(1812), 1, - sym_expression, - STATE(2724), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(409), 2, - anon_sym_match, - anon_sym_type, - STATE(635), 2, - sym_attribute, - sym_subscript, - STATE(1638), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(411), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(2549), 5, - sym_expression_list, - sym_assignment, - sym_augmented_assignment, - sym__right_hand_side, - sym_yield, - STATE(1659), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1052), 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, - [3728] = 31, - ACTIONS(713), 1, - anon_sym_LBRACE, - ACTIONS(719), 1, - sym_string_start, - ACTIONS(865), 1, + ACTIONS(825), 1, sym_identifier, - ACTIONS(867), 1, + ACTIONS(827), 1, anon_sym_LPAREN, - ACTIONS(871), 1, + ACTIONS(829), 1, anon_sym_STAR, - ACTIONS(877), 1, + ACTIONS(835), 1, anon_sym_LBRACK, - ACTIONS(879), 1, - anon_sym_not, - ACTIONS(881), 1, - anon_sym_lambda, - ACTIONS(883), 1, - anon_sym_yield, - ACTIONS(885), 1, + ACTIONS(839), 1, anon_sym_await, - ACTIONS(957), 1, - anon_sym_RPAREN, - STATE(956), 1, + ACTIONS(949), 1, + anon_sym_RBRACK, + STATE(857), 1, sym_primary_expression, - STATE(977), 1, + STATE(969), 1, sym_string, - STATE(1314), 1, + STATE(1341), 1, sym_list_splat_pattern, - STATE(1692), 1, + STATE(1707), 1, sym_expression, - STATE(2368), 1, - sym_yield, - STATE(2404), 1, + STATE(2283), 1, sym_pattern, - STATE(2629), 1, - sym__patterns, - STATE(2631), 1, + STATE(2689), 1, sym__collection_elements, - STATE(2712), 1, + STATE(2716), 1, sym__named_expression_lhs, + STATE(2774), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(875), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - STATE(1327), 2, + STATE(1352), 2, sym_attribute, sym_subscript, - STATE(2460), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2537), 2, + STATE(2487), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(711), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(873), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 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(1787), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31593,7 +31222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 14, + STATE(1280), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31609,77 +31238,77 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [3854] = 30, - ACTIONS(801), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(807), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(827), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(829), 1, + ACTIONS(821), 1, anon_sym_yield, - ACTIONS(887), 1, + ACTIONS(825), 1, sym_identifier, - ACTIONS(889), 1, + ACTIONS(827), 1, anon_sym_LPAREN, - ACTIONS(891), 1, + ACTIONS(829), 1, anon_sym_STAR, - ACTIONS(897), 1, + ACTIONS(835), 1, anon_sym_LBRACK, - ACTIONS(901), 1, + ACTIONS(839), 1, anon_sym_await, - ACTIONS(959), 1, + ACTIONS(951), 1, anon_sym_RBRACK, - STATE(919), 1, + STATE(857), 1, sym_primary_expression, - STATE(970), 1, + STATE(969), 1, sym_string, - STATE(1351), 1, + STATE(1341), 1, sym_list_splat_pattern, - STATE(1709), 1, + STATE(1707), 1, sym_expression, - STATE(2480), 1, + STATE(2283), 1, sym_pattern, - STATE(2626), 1, - sym__named_expression_lhs, - STATE(2725), 1, - sym__collection_elements, - STATE(2747), 1, + STATE(2664), 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(803), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(895), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - STATE(1355), 2, + STATE(1352), 2, sym_attribute, sym_subscript, - STATE(2561), 2, + STATE(2487), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(799), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(893), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2485), 3, + STATE(2280), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(787), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1689), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31687,7 +31316,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1148), 14, + STATE(1280), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31703,79 +31332,79 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [3978] = 32, - ACTIONS(713), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(865), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(867), 1, + ACTIONS(845), 1, anon_sym_LPAREN, - ACTIONS(871), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(877), 1, + ACTIONS(855), 1, anon_sym_LBRACK, - ACTIONS(879), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(881), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(883), 1, + ACTIONS(861), 1, anon_sym_yield, - ACTIONS(885), 1, + ACTIONS(863), 1, anon_sym_await, - ACTIONS(961), 1, + ACTIONS(953), 1, anon_sym_RPAREN, - STATE(956), 1, + STATE(950), 1, sym_primary_expression, - STATE(977), 1, + STATE(985), 1, sym_string, - STATE(1314), 1, + STATE(1340), 1, sym_list_splat_pattern, - STATE(1719), 1, + STATE(1678), 1, sym_expression, - STATE(2246), 1, + STATE(2289), 1, + sym_pattern, + STATE(2318), 1, sym_list_splat, - STATE(2249), 1, + STATE(2325), 1, sym_parenthesized_list_splat, - STATE(2292), 1, + STATE(2456), 1, sym_yield, - STATE(2404), 1, - sym_pattern, - STATE(2656), 1, - sym__collection_elements, - STATE(2712), 1, + STATE(2698), 1, sym__named_expression_lhs, - STATE(2776), 1, + STATE(2709), 1, sym__patterns, + STATE(2712), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(875), 2, + ACTIONS(853), 2, anon_sym_match, anon_sym_type, - STATE(1327), 2, + STATE(1343), 2, sym_attribute, sym_subscript, - STATE(2537), 2, + STATE(2546), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(711), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(873), 3, + ACTIONS(851), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 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, @@ -31783,7 +31412,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 14, + STATE(1331), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31799,58 +31428,58 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4106] = 22, - ACTIONS(303), 1, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(304), 1, anon_sym_TILDE, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(963), 1, + ACTIONS(955), 1, sym_identifier, - ACTIONS(967), 1, + ACTIONS(959), 1, anon_sym_LPAREN, - ACTIONS(969), 1, + ACTIONS(961), 1, anon_sym_STAR, - ACTIONS(975), 1, + ACTIONS(967), 1, anon_sym_LBRACK, - ACTIONS(977), 1, + ACTIONS(969), 1, anon_sym_await, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1322), 1, + STATE(1345), 1, sym_list_splat_pattern, - STATE(1588), 1, + STATE(1593), 1, sym_pattern, STATE(1598), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(668), 2, + ACTIONS(660), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(973), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - STATE(1341), 2, + STATE(1346), 2, sym_attribute, sym_subscript, - STATE(1592), 2, + STATE(1597), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(971), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1392), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31865,7 +31494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(965), 17, + ACTIONS(957), 17, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -31884,58 +31513,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, [4213] = 22, - ACTIONS(303), 1, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(304), 1, anon_sym_TILDE, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(963), 1, + ACTIONS(955), 1, sym_identifier, - ACTIONS(967), 1, + ACTIONS(959), 1, anon_sym_LPAREN, - ACTIONS(969), 1, + ACTIONS(961), 1, anon_sym_STAR, - ACTIONS(975), 1, + ACTIONS(967), 1, anon_sym_LBRACK, - ACTIONS(977), 1, + ACTIONS(969), 1, anon_sym_await, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1322), 1, + STATE(1345), 1, sym_list_splat_pattern, - STATE(1588), 1, + STATE(1593), 1, sym_pattern, STATE(1598), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(668), 2, + ACTIONS(660), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(973), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - STATE(1341), 2, + STATE(1346), 2, sym_attribute, sym_subscript, - STATE(1592), 2, + STATE(1597), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(971), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1392), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31950,7 +31579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(979), 17, + ACTIONS(971), 17, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -31969,70 +31598,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, [4320] = 27, - ACTIONS(745), 1, - anon_sym_LPAREN, - ACTIONS(753), 1, - anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(819), 1, - anon_sym_STAR_STAR, - ACTIONS(981), 1, + ACTIONS(891), 1, + anon_sym_yield, + ACTIONS(973), 1, sym_identifier, - ACTIONS(983), 1, + ACTIONS(975), 1, + anon_sym_LPAREN, + ACTIONS(977), 1, anon_sym_STAR, - ACTIONS(987), 1, - anon_sym_match, - ACTIONS(989), 1, - anon_sym_type, - ACTIONS(991), 1, - anon_sym_RBRACK, - ACTIONS(993), 1, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(989), 1, anon_sym_await, - STATE(972), 1, + STATE(901), 1, sym_primary_expression, - STATE(1098), 1, + STATE(975), 1, sym_string, - STATE(1423), 1, + STATE(1181), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1720), 1, sym_expression, - STATE(2003), 1, - sym_type, - STATE(2595), 1, + STATE(2579), 1, + sym_pattern, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(755), 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(985), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2005), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1743), 7, + STATE(2057), 4, + sym_expression_list, + sym_pattern_list, + sym_yield, + sym__f_expression, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32040,11 +31671,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1279), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -32058,70 +31687,70 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4436] = 27, - ACTIONS(745), 1, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(819), 1, + ACTIONS(811), 1, anon_sym_STAR_STAR, - ACTIONS(981), 1, + ACTIONS(991), 1, sym_identifier, - ACTIONS(983), 1, + ACTIONS(993), 1, anon_sym_STAR, - ACTIONS(987), 1, + ACTIONS(997), 1, anon_sym_match, - ACTIONS(989), 1, + ACTIONS(999), 1, anon_sym_type, - ACTIONS(993), 1, + ACTIONS(1001), 1, + anon_sym_RBRACK, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(999), 1, - anon_sym_RBRACK, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1756), 1, sym_expression, - STATE(2003), 1, + STATE(2040), 1, sym_type, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2005), 5, + STATE(2046), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32129,7 +31758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32147,70 +31776,70 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4552] = 27, - ACTIONS(745), 1, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(819), 1, + ACTIONS(811), 1, anon_sym_STAR_STAR, - ACTIONS(981), 1, + ACTIONS(991), 1, sym_identifier, - ACTIONS(983), 1, + ACTIONS(993), 1, anon_sym_STAR, - ACTIONS(987), 1, + ACTIONS(997), 1, anon_sym_match, - ACTIONS(989), 1, + ACTIONS(999), 1, anon_sym_type, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1001), 1, + ACTIONS(1009), 1, anon_sym_RBRACK, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1756), 1, sym_expression, - STATE(2003), 1, + STATE(2040), 1, sym_type, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2005), 5, + STATE(2046), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32218,7 +31847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32236,72 +31865,70 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4668] = 27, - ACTIONS(686), 1, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(692), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(853), 1, - anon_sym_yield, - ACTIONS(1003), 1, + ACTIONS(811), 1, + anon_sym_STAR_STAR, + ACTIONS(991), 1, sym_identifier, - ACTIONS(1005), 1, - anon_sym_LPAREN, - ACTIONS(1007), 1, + ACTIONS(993), 1, anon_sym_STAR, - ACTIONS(1013), 1, - anon_sym_LBRACK, - ACTIONS(1015), 1, + ACTIONS(997), 1, + anon_sym_match, + ACTIONS(999), 1, + anon_sym_type, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1019), 1, + ACTIONS(1007), 1, anon_sym_await, - STATE(888), 1, + ACTIONS(1011), 1, + anon_sym_RBRACK, + STATE(963), 1, sym_primary_expression, - STATE(961), 1, + STATE(1081), 1, sym_string, - STATE(1191), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1734), 1, + STATE(1756), 1, sym_expression, - STATE(2533), 1, - sym_pattern, - STATE(2787), 1, + STATE(2040), 1, + sym_type, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(688), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1011), 2, - anon_sym_match, - anon_sym_type, - STATE(1193), 2, - sym_attribute, - sym_subscript, - STATE(1638), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(684), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1009), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(672), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2058), 4, - sym_expression_list, - sym_pattern_list, - sym_yield, - sym__f_expression, - STATE(1776), 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, @@ -32309,9 +31936,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1251), 14, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -32325,70 +31954,70 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4784] = 27, - ACTIONS(745), 1, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(819), 1, + ACTIONS(811), 1, anon_sym_STAR_STAR, - ACTIONS(981), 1, + ACTIONS(991), 1, sym_identifier, - ACTIONS(983), 1, + ACTIONS(993), 1, anon_sym_STAR, - ACTIONS(987), 1, + ACTIONS(997), 1, anon_sym_match, - ACTIONS(989), 1, + ACTIONS(999), 1, anon_sym_type, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1021), 1, + ACTIONS(1013), 1, anon_sym_RBRACK, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1756), 1, sym_expression, - STATE(2003), 1, + STATE(2040), 1, sym_type, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2005), 5, + STATE(2046), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32396,7 +32025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32414,70 +32043,70 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4900] = 27, - ACTIONS(745), 1, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(819), 1, + ACTIONS(811), 1, anon_sym_STAR_STAR, - ACTIONS(981), 1, + ACTIONS(991), 1, sym_identifier, - ACTIONS(983), 1, + ACTIONS(993), 1, anon_sym_STAR, - ACTIONS(987), 1, + ACTIONS(997), 1, anon_sym_match, - ACTIONS(989), 1, + ACTIONS(999), 1, anon_sym_type, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1023), 1, + ACTIONS(1015), 1, anon_sym_RBRACK, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1756), 1, sym_expression, - STATE(2003), 1, + STATE(2040), 1, sym_type, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2005), 5, + STATE(2046), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32485,7 +32114,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32503,72 +32132,70 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [5016] = 27, - ACTIONS(686), 1, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(692), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(853), 1, - anon_sym_yield, - ACTIONS(1003), 1, + ACTIONS(811), 1, + anon_sym_STAR_STAR, + ACTIONS(991), 1, sym_identifier, - ACTIONS(1005), 1, - anon_sym_LPAREN, - ACTIONS(1007), 1, + ACTIONS(993), 1, anon_sym_STAR, - ACTIONS(1013), 1, - anon_sym_LBRACK, - ACTIONS(1015), 1, + ACTIONS(997), 1, + anon_sym_match, + ACTIONS(999), 1, + anon_sym_type, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1019), 1, + ACTIONS(1007), 1, anon_sym_await, - STATE(888), 1, + ACTIONS(1017), 1, + anon_sym_RBRACK, + STATE(963), 1, sym_primary_expression, - STATE(961), 1, + STATE(1081), 1, sym_string, - STATE(1191), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1734), 1, + STATE(1756), 1, sym_expression, - STATE(2533), 1, - sym_pattern, - STATE(2787), 1, + STATE(2040), 1, + sym_type, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(688), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1011), 2, - anon_sym_match, - anon_sym_type, - STATE(1193), 2, - sym_attribute, - sym_subscript, - STATE(1638), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(684), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1009), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(672), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1998), 4, - sym_expression_list, - sym_pattern_list, - sym_yield, - sym__f_expression, - STATE(1776), 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, @@ -32576,9 +32203,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1251), 14, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -32592,70 +32221,70 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [5132] = 27, - ACTIONS(745), 1, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(819), 1, + ACTIONS(811), 1, anon_sym_STAR_STAR, - ACTIONS(981), 1, + ACTIONS(991), 1, sym_identifier, - ACTIONS(983), 1, + ACTIONS(993), 1, anon_sym_STAR, - ACTIONS(987), 1, + ACTIONS(997), 1, anon_sym_match, - ACTIONS(989), 1, + ACTIONS(999), 1, anon_sym_type, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1025), 1, + ACTIONS(1019), 1, anon_sym_RBRACK, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1756), 1, sym_expression, - STATE(2003), 1, + STATE(2040), 1, sym_type, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2005), 5, + STATE(2046), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32663,7 +32292,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32681,70 +32310,70 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [5248] = 27, - ACTIONS(745), 1, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(819), 1, + ACTIONS(811), 1, anon_sym_STAR_STAR, - ACTIONS(981), 1, + ACTIONS(991), 1, sym_identifier, - ACTIONS(983), 1, + ACTIONS(993), 1, anon_sym_STAR, - ACTIONS(987), 1, + ACTIONS(997), 1, anon_sym_match, - ACTIONS(989), 1, + ACTIONS(999), 1, anon_sym_type, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1027), 1, + ACTIONS(1021), 1, anon_sym_RBRACK, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1756), 1, sym_expression, - STATE(2003), 1, + STATE(2040), 1, sym_type, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2005), 5, + STATE(2046), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32752,7 +32381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32770,70 +32399,72 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [5364] = 27, - ACTIONS(745), 1, - anon_sym_LPAREN, - ACTIONS(753), 1, - anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(819), 1, - anon_sym_STAR_STAR, - ACTIONS(981), 1, + ACTIONS(891), 1, + anon_sym_yield, + ACTIONS(973), 1, sym_identifier, - ACTIONS(983), 1, + ACTIONS(975), 1, + anon_sym_LPAREN, + ACTIONS(977), 1, anon_sym_STAR, - ACTIONS(987), 1, - anon_sym_match, - ACTIONS(989), 1, - anon_sym_type, - ACTIONS(993), 1, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(989), 1, anon_sym_await, - ACTIONS(1029), 1, - anon_sym_RBRACK, - STATE(972), 1, + STATE(901), 1, sym_primary_expression, - STATE(1098), 1, + STATE(975), 1, sym_string, - STATE(1423), 1, + STATE(1181), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1720), 1, sym_expression, - STATE(2003), 1, - sym_type, - STATE(2595), 1, + STATE(2579), 1, + sym_pattern, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(755), 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(985), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2005), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1743), 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, @@ -32841,11 +32472,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1279), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -32859,68 +32488,68 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [5480] = 26, - ACTIONS(745), 1, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(819), 1, + ACTIONS(811), 1, anon_sym_STAR_STAR, - ACTIONS(981), 1, + ACTIONS(991), 1, sym_identifier, - ACTIONS(983), 1, + ACTIONS(993), 1, anon_sym_STAR, - ACTIONS(987), 1, + ACTIONS(997), 1, anon_sym_match, - ACTIONS(989), 1, + ACTIONS(999), 1, anon_sym_type, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1756), 1, sym_expression, - STATE(1911), 1, + STATE(1931), 1, sym_type, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2005), 5, + STATE(2046), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32928,7 +32557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32946,68 +32575,68 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [5593] = 26, - ACTIONS(67), 1, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(721), 1, + anon_sym_LBRACK, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(391), 1, + ACTIONS(1023), 1, + sym_identifier, + ACTIONS(1025), 1, + anon_sym_STAR, + ACTIONS(1029), 1, anon_sym_match, - ACTIONS(402), 1, - anon_sym_await, - ACTIONS(637), 1, - anon_sym_LPAREN, - ACTIONS(645), 1, - anon_sym_LBRACK, ACTIONS(1031), 1, - sym_identifier, + anon_sym_STAR_STAR, ACTIONS(1033), 1, - anon_sym_STAR, + anon_sym_type, ACTIONS(1035), 1, - anon_sym_STAR_STAR, + anon_sym_not, ACTIONS(1037), 1, - anon_sym_type, - STATE(853), 1, - sym_primary_expression, + anon_sym_lambda, + ACTIONS(1039), 1, + anon_sym_await, STATE(953), 1, + sym_primary_expression, + STATE(995), 1, sym_string, - STATE(1049), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1731), 1, + STATE(1733), 1, sym_expression, - STATE(1996), 1, + STATE(1967), 1, sym_type, - STATE(2724), 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(387), 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(1968), 5, + STATE(1922), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1659), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33015,7 +32644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1052), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33033,68 +32662,68 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [5706] = 26, - ACTIONS(767), 1, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(775), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1039), 1, + ACTIONS(1023), 1, sym_identifier, - ACTIONS(1041), 1, + ACTIONS(1025), 1, anon_sym_STAR, - ACTIONS(1045), 1, + ACTIONS(1029), 1, anon_sym_match, - ACTIONS(1047), 1, + ACTIONS(1031), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1033), 1, anon_sym_type, - ACTIONS(1051), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1055), 1, + ACTIONS(1039), 1, anon_sym_await, - STATE(952), 1, + STATE(953), 1, sym_primary_expression, - STATE(985), 1, + STATE(995), 1, sym_string, - STATE(1376), 1, + STATE(1301), 1, sym_list_splat_pattern, STATE(1733), 1, sym_expression, - STATE(1980), 1, + STATE(1881), 1, sym_type, - STATE(2639), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(777), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1043), 3, + ACTIONS(1027), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(765), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1899), 5, + STATE(1922), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1721), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33102,7 +32731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33119,70 +32748,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5819] = 27, - ACTIONS(709), 1, - anon_sym_LBRACK, - ACTIONS(713), 1, + [5819] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(719), 1, - sym_string_start, - ACTIONS(879), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(881), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1057), 1, - sym_identifier, - ACTIONS(1059), 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(1061), 1, - anon_sym_RPAREN, - ACTIONS(1063), 1, - anon_sym_COMMA, - ACTIONS(1065), 1, + ACTIONS(637), 1, + anon_sym_LBRACK, + ACTIONS(1041), 1, + sym_identifier, + ACTIONS(1043), 1, anon_sym_STAR, - ACTIONS(1071), 1, + ACTIONS(1045), 1, anon_sym_STAR_STAR, - ACTIONS(1073), 1, - anon_sym_await, - STATE(956), 1, + ACTIONS(1047), 1, + anon_sym_type, + STATE(845), 1, sym_primary_expression, - STATE(977), 1, + STATE(954), 1, sym_string, - STATE(1407), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1688), 1, + STATE(1724), 1, sym_expression, - STATE(2352), 1, - sym_parenthesized_list_splat, - STATE(2712), 1, + STATE(1991), 1, + sym_type, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1069), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(711), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1067), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2351), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(697), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 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, @@ -33190,7 +32818,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33207,69 +32835,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5934] = 26, - ACTIONS(767), 1, - anon_sym_LPAREN, - ACTIONS(775), 1, - anon_sym_LBRACK, - ACTIONS(779), 1, - anon_sym_LBRACE, - ACTIONS(785), 1, - sym_string_start, - ACTIONS(1039), 1, + [5932] = 26, + ACTIONS(263), 1, sym_identifier, - ACTIONS(1041), 1, - anon_sym_STAR, - ACTIONS(1045), 1, + ACTIONS(285), 1, anon_sym_match, - ACTIONS(1047), 1, + ACTIONS(290), 1, + anon_sym_type, + 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(333), 1, anon_sym_STAR_STAR, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, ACTIONS(1049), 1, - anon_sym_type, + anon_sym_STAR, ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1053), 1, - anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_await, STATE(952), 1, sym_primary_expression, - STATE(985), 1, + STATE(984), 1, sym_string, - STATE(1376), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1733), 1, + STATE(1762), 1, sym_expression, - STATE(1981), 1, + STATE(1996), 1, sym_type, - STATE(2639), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(777), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1043), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(765), 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(1899), 5, + STATE(2074), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1721), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33277,7 +32905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33294,69 +32922,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6047] = 26, - ACTIONS(267), 1, - sym_identifier, - ACTIONS(289), 1, - anon_sym_match, - ACTIONS(294), 1, - anon_sym_type, - ACTIONS(303), 1, + [6045] = 27, + ACTIONS(721), 1, + anon_sym_LBRACK, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(310), 1, - anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_await, - ACTIONS(320), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(337), 1, - anon_sym_STAR_STAR, - ACTIONS(656), 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(666), 1, - anon_sym_LBRACK, - ACTIONS(1075), 1, + ACTIONS(1057), 1, + anon_sym_RPAREN, + ACTIONS(1059), 1, + anon_sym_COMMA, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1077), 1, - anon_sym_not, - STATE(955), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, + anon_sym_await, + STATE(953), 1, sym_primary_expression, - STATE(1003), 1, + STATE(995), 1, sym_string, - STATE(1300), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1763), 1, + STATE(1827), 1, sym_expression, - STATE(2481), 1, - sym_type, - STATE(2772), 1, + STATE(2242), 1, + sym_parenthesized_list_splat, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(1065), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 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(2083), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1737), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33364,7 +32993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33382,68 +33011,68 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [6160] = 26, - ACTIONS(267), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(289), 1, + ACTIONS(285), 1, anon_sym_match, - ACTIONS(294), 1, + ACTIONS(290), 1, anon_sym_type, - ACTIONS(303), 1, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(337), 1, + ACTIONS(333), 1, anon_sym_STAR_STAR, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1075), 1, + ACTIONS(1049), 1, anon_sym_STAR, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1763), 1, + STATE(1762), 1, sym_expression, - STATE(1997), 1, + STATE(2402), 1, sym_type, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2083), 5, + STATE(2074), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33451,7 +33080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33468,70 +33097,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6273] = 27, - ACTIONS(775), 1, + [6273] = 28, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(849), 1, + anon_sym_STAR, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(859), 1, anon_sym_lambda, + ACTIONS(861), 1, + anon_sym_yield, ACTIONS(1071), 1, - anon_sym_STAR_STAR, - ACTIONS(1079), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1073), 1, anon_sym_LPAREN, - ACTIONS(1083), 1, + ACTIONS(1075), 1, anon_sym_RPAREN, - ACTIONS(1085), 1, - anon_sym_COMMA, - ACTIONS(1087), 1, - anon_sym_STAR, - ACTIONS(1093), 1, + ACTIONS(1081), 1, anon_sym_await, - STATE(952), 1, + STATE(950), 1, sym_primary_expression, STATE(985), 1, sym_string, - STATE(1376), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1875), 1, + STATE(1687), 1, sym_expression, - STATE(2248), 1, - sym_parenthesized_list_splat, - STATE(2639), 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(781), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1091), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + STATE(2287), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1089), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2247), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(765), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33539,7 +33169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33556,81 +33186,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6388] = 26, - ACTIONS(267), 1, - sym_identifier, - ACTIONS(289), 1, - anon_sym_match, - ACTIONS(294), 1, - anon_sym_type, - ACTIONS(303), 1, + [6390] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, - anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_await, - ACTIONS(320), 1, + ACTIONS(304), 1, + anon_sym_TILDE, + ACTIONS(316), 1, sym_string_start, - ACTIONS(337), 1, - anon_sym_STAR_STAR, - ACTIONS(656), 1, + ACTIONS(1083), 1, + sym_identifier, + ACTIONS(1085), 1, anon_sym_LPAREN, - ACTIONS(666), 1, - anon_sym_LBRACK, - ACTIONS(1075), 1, + ACTIONS(1087), 1, anon_sym_STAR, - ACTIONS(1077), 1, - anon_sym_not, - STATE(955), 1, - sym_primary_expression, - STATE(1003), 1, + ACTIONS(1093), 1, + anon_sym_LBRACK, + ACTIONS(1095), 1, + anon_sym_await, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1475), 1, sym_list_splat_pattern, - STATE(1763), 1, - sym_expression, - STATE(2338), 1, - sym_type, - STATE(2772), 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(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, + ACTIONS(660), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1091), 2, + anon_sym_match, + anon_sym_type, + STATE(1476), 2, + sym_attribute, + sym_subscript, + STATE(1626), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2083), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1737), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -33643,69 +33253,86 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6501] = 26, - ACTIONS(745), 1, - anon_sym_LPAREN, - ACTIONS(753), 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(757), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(819), 1, + ACTIONS(857), 1, + anon_sym_not, + ACTIONS(859), 1, + anon_sym_lambda, + ACTIONS(1067), 1, anon_sym_STAR_STAR, - ACTIONS(981), 1, + ACTIONS(1073), 1, + anon_sym_LPAREN, + ACTIONS(1097), 1, sym_identifier, - ACTIONS(983), 1, + ACTIONS(1099), 1, + anon_sym_RPAREN, + ACTIONS(1101), 1, + anon_sym_COMMA, + ACTIONS(1103), 1, anon_sym_STAR, - ACTIONS(987), 1, - anon_sym_match, - ACTIONS(989), 1, - anon_sym_type, - ACTIONS(993), 1, - anon_sym_not, - ACTIONS(995), 1, - anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1109), 1, anon_sym_await, - STATE(972), 1, + STATE(950), 1, sym_primary_expression, - STATE(1098), 1, + STATE(985), 1, sym_string, - STATE(1423), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1688), 1, sym_expression, - STATE(2003), 1, - sym_type, - STATE(2595), 1, + STATE(2368), 1, + sym_parenthesized_list_splat, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(755), 3, + ACTIONS(1107), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(1105), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + STATE(2479), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2005), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1743), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33713,7 +33340,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33730,82 +33357,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6614] = 27, - ACTIONS(709), 1, - anon_sym_LBRACK, - ACTIONS(713), 1, + [6610] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(304), 1, + anon_sym_TILDE, + ACTIONS(316), 1, sym_string_start, - ACTIONS(879), 1, - anon_sym_not, - ACTIONS(881), 1, - anon_sym_lambda, - ACTIONS(1057), 1, + ACTIONS(1083), 1, sym_identifier, - ACTIONS(1059), 1, + ACTIONS(1085), 1, anon_sym_LPAREN, - ACTIONS(1065), 1, + ACTIONS(1087), 1, anon_sym_STAR, - ACTIONS(1071), 1, - anon_sym_STAR_STAR, - ACTIONS(1073), 1, - anon_sym_await, + ACTIONS(1093), 1, + anon_sym_LBRACK, ACTIONS(1095), 1, - anon_sym_RPAREN, - ACTIONS(1097), 1, - anon_sym_COMMA, - STATE(956), 1, - sym_primary_expression, - STATE(977), 1, + anon_sym_await, + STATE(984), 1, sym_string, - STATE(1407), 1, + STATE(1475), 1, sym_list_splat_pattern, - STATE(1693), 1, - sym_expression, - STATE(2374), 1, - sym_parenthesized_list_splat, - STATE(2712), 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(715), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(1069), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(711), 3, + ACTIONS(660), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1067), 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, - STATE(2492), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(697), 4, + ACTIONS(312), 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(1349), 16, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -33818,7 +33424,23 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6729] = 26, + 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(69), 1, @@ -33827,33 +33449,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym_string_start, - ACTIONS(391), 1, + ACTIONS(387), 1, anon_sym_match, - ACTIONS(402), 1, + ACTIONS(398), 1, anon_sym_await, - ACTIONS(637), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(645), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1031), 1, + ACTIONS(1041), 1, sym_identifier, - ACTIONS(1033), 1, + ACTIONS(1043), 1, anon_sym_STAR, - ACTIONS(1035), 1, + ACTIONS(1045), 1, anon_sym_STAR_STAR, - ACTIONS(1037), 1, + ACTIONS(1047), 1, anon_sym_type, - STATE(853), 1, + STATE(845), 1, sym_primary_expression, - STATE(953), 1, + STATE(954), 1, sym_string, - STATE(1049), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1731), 1, + STATE(1724), 1, sym_expression, - STATE(1889), 1, + STATE(1940), 1, sym_type, - STATE(2724), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -33865,7 +33487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(387), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -33874,13 +33496,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1968), 5, + STATE(1973), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1659), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33888,7 +33510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1052), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33905,69 +33527,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6842] = 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(391), 1, - anon_sym_match, - ACTIONS(402), 1, - anon_sym_await, - ACTIONS(637), 1, + [6828] = 26, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(645), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(1031), 1, + ACTIONS(769), 1, + anon_sym_LBRACE, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(811), 1, + anon_sym_STAR_STAR, + ACTIONS(991), 1, sym_identifier, - ACTIONS(1033), 1, + ACTIONS(993), 1, anon_sym_STAR, - ACTIONS(1035), 1, - anon_sym_STAR_STAR, - ACTIONS(1037), 1, + ACTIONS(997), 1, + anon_sym_match, + ACTIONS(999), 1, anon_sym_type, - STATE(853), 1, + ACTIONS(1003), 1, + anon_sym_not, + ACTIONS(1005), 1, + anon_sym_lambda, + ACTIONS(1007), 1, + anon_sym_await, + STATE(963), 1, sym_primary_expression, - STATE(953), 1, + STATE(1081), 1, sym_string, - STATE(1049), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1731), 1, + STATE(1756), 1, sym_expression, - STATE(1920), 1, + STATE(2040), 1, sym_type, - STATE(2724), 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(65), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(387), 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(1968), 5, + STATE(2046), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1659), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33975,7 +33597,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1052), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33992,70 +33614,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6955] = 27, - ACTIONS(709), 1, + [6941] = 27, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(881), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(1057), 1, - sym_identifier, - ACTIONS(1059), 1, - anon_sym_LPAREN, - ACTIONS(1065), 1, - anon_sym_STAR, - ACTIONS(1071), 1, + ACTIONS(1067), 1, anon_sym_STAR_STAR, ACTIONS(1073), 1, + anon_sym_LPAREN, + ACTIONS(1097), 1, + sym_identifier, + ACTIONS(1103), 1, + anon_sym_STAR, + ACTIONS(1109), 1, anon_sym_await, - ACTIONS(1083), 1, + ACTIONS(1111), 1, anon_sym_RPAREN, - ACTIONS(1085), 1, + ACTIONS(1113), 1, anon_sym_COMMA, - STATE(956), 1, + STATE(950), 1, sym_primary_expression, - STATE(977), 1, + STATE(985), 1, sym_string, - STATE(1407), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1680), 1, + STATE(1700), 1, sym_expression, - STATE(2248), 1, + STATE(2405), 1, sym_parenthesized_list_splat, - STATE(2712), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1069), 2, + ACTIONS(1107), 2, anon_sym_match, anon_sym_type, - ACTIONS(711), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1067), 3, + ACTIONS(1105), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2247), 3, + STATE(2404), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(697), 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, @@ -34063,7 +33685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34080,69 +33702,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7070] = 26, - ACTIONS(767), 1, - anon_sym_LPAREN, - ACTIONS(775), 1, - anon_sym_LBRACK, - ACTIONS(779), 1, - anon_sym_LBRACE, - ACTIONS(785), 1, - sym_string_start, - ACTIONS(1039), 1, + [7056] = 26, + ACTIONS(263), 1, sym_identifier, - ACTIONS(1041), 1, - anon_sym_STAR, - ACTIONS(1045), 1, + ACTIONS(285), 1, anon_sym_match, - ACTIONS(1047), 1, + ACTIONS(290), 1, + anon_sym_type, + 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(333), 1, anon_sym_STAR_STAR, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, ACTIONS(1049), 1, - anon_sym_type, + anon_sym_STAR, ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1053), 1, - anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_await, STATE(952), 1, sym_primary_expression, - STATE(985), 1, + STATE(984), 1, sym_string, - STATE(1376), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1733), 1, + STATE(1762), 1, sym_expression, - STATE(1962), 1, + STATE(2235), 1, sym_type, - STATE(2639), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(777), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1043), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(765), 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(1899), 5, + STATE(2074), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1721), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34150,7 +33772,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34167,69 +33789,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7183] = 26, - ACTIONS(767), 1, - anon_sym_LPAREN, - ACTIONS(775), 1, - anon_sym_LBRACK, - ACTIONS(779), 1, - anon_sym_LBRACE, - ACTIONS(785), 1, - sym_string_start, - ACTIONS(1039), 1, + [7169] = 26, + ACTIONS(263), 1, sym_identifier, - ACTIONS(1041), 1, - anon_sym_STAR, - ACTIONS(1045), 1, + ACTIONS(285), 1, anon_sym_match, - ACTIONS(1047), 1, + ACTIONS(290), 1, + anon_sym_type, + 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(333), 1, anon_sym_STAR_STAR, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, ACTIONS(1049), 1, - anon_sym_type, + anon_sym_STAR, ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1053), 1, - anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_await, STATE(952), 1, sym_primary_expression, - STATE(985), 1, + STATE(984), 1, sym_string, - STATE(1376), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1733), 1, + STATE(1762), 1, sym_expression, - STATE(2027), 1, + STATE(2265), 1, sym_type, - STATE(2639), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(777), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1043), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(765), 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(1899), 5, + STATE(2074), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1721), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34237,7 +33859,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34254,69 +33876,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7296] = 26, - ACTIONS(267), 1, + [7282] = 26, + ACTIONS(263), 1, sym_identifier, - ACTIONS(289), 1, + ACTIONS(285), 1, anon_sym_match, - ACTIONS(294), 1, + ACTIONS(290), 1, anon_sym_type, - ACTIONS(303), 1, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(337), 1, + ACTIONS(333), 1, anon_sym_STAR_STAR, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1075), 1, + ACTIONS(1049), 1, anon_sym_STAR, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1763), 1, + STATE(1762), 1, sym_expression, - STATE(2239), 1, + STATE(2449), 1, sym_type, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2083), 5, + STATE(2074), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34324,7 +33946,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34341,70 +33963,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7409] = 27, - ACTIONS(709), 1, - anon_sym_LBRACK, - ACTIONS(713), 1, + [7395] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(719), 1, - sym_string_start, - ACTIONS(879), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(881), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1057), 1, - sym_identifier, - ACTIONS(1059), 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(1065), 1, + ACTIONS(637), 1, + anon_sym_LBRACK, + ACTIONS(1041), 1, + sym_identifier, + ACTIONS(1043), 1, anon_sym_STAR, - ACTIONS(1071), 1, + ACTIONS(1045), 1, anon_sym_STAR_STAR, - ACTIONS(1073), 1, - anon_sym_await, - ACTIONS(1099), 1, - anon_sym_RPAREN, - ACTIONS(1101), 1, - anon_sym_COMMA, - STATE(956), 1, + ACTIONS(1047), 1, + anon_sym_type, + STATE(845), 1, sym_primary_expression, - STATE(977), 1, + STATE(954), 1, sym_string, - STATE(1407), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1698), 1, + STATE(1724), 1, sym_expression, - STATE(2396), 1, - sym_parenthesized_list_splat, - STATE(2712), 1, + STATE(1885), 1, + sym_type, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1069), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(711), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1067), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2395), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(697), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 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, @@ -34412,7 +34033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34429,70 +34050,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7524] = 27, - ACTIONS(709), 1, - anon_sym_LBRACK, + [7508] = 26, ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(721), 1, + anon_sym_LBRACK, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(879), 1, - anon_sym_not, - ACTIONS(881), 1, - anon_sym_lambda, - ACTIONS(1057), 1, + ACTIONS(1023), 1, sym_identifier, - ACTIONS(1059), 1, - anon_sym_LPAREN, - ACTIONS(1065), 1, + ACTIONS(1025), 1, anon_sym_STAR, - ACTIONS(1071), 1, + ACTIONS(1029), 1, + anon_sym_match, + ACTIONS(1031), 1, anon_sym_STAR_STAR, - ACTIONS(1073), 1, + ACTIONS(1033), 1, + anon_sym_type, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, + anon_sym_lambda, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1103), 1, - anon_sym_RPAREN, - ACTIONS(1105), 1, - anon_sym_COMMA, - STATE(956), 1, + STATE(953), 1, sym_primary_expression, - STATE(977), 1, + STATE(995), 1, sym_string, - STATE(1407), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1677), 1, + STATE(1733), 1, sym_expression, - STATE(2479), 1, - sym_parenthesized_list_splat, - STATE(2712), 1, + STATE(1924), 1, + sym_type, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1069), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(711), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1067), 3, + ACTIONS(1027), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2471), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(697), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1922), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34500,7 +34120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34517,69 +34137,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7639] = 26, - ACTIONS(267), 1, + [7621] = 26, + 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(289), 1, + ACTIONS(1025), 1, + anon_sym_STAR, + ACTIONS(1029), 1, anon_sym_match, - ACTIONS(294), 1, + ACTIONS(1031), 1, + anon_sym_STAR_STAR, + ACTIONS(1033), 1, anon_sym_type, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(337), 1, - anon_sym_STAR_STAR, - ACTIONS(656), 1, - anon_sym_LPAREN, - ACTIONS(666), 1, - anon_sym_LBRACK, - ACTIONS(1075), 1, - anon_sym_STAR, - ACTIONS(1077), 1, - anon_sym_not, - STATE(955), 1, + STATE(953), 1, sym_primary_expression, - STATE(1003), 1, + STATE(995), 1, sym_string, - STATE(1300), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1763), 1, + STATE(1733), 1, sym_expression, - STATE(2320), 1, + STATE(2100), 1, sym_type, - STATE(2772), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 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(2083), 5, + STATE(1922), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1737), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34587,7 +34207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34604,61 +34224,82 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7752] = 22, - ACTIONS(303), 1, + [7734] = 27, + ACTIONS(789), 1, + anon_sym_LBRACK, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(308), 1, - anon_sym_TILDE, - ACTIONS(320), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1107), 1, - sym_identifier, - ACTIONS(1109), 1, + ACTIONS(857), 1, + anon_sym_not, + ACTIONS(859), 1, + anon_sym_lambda, + ACTIONS(1057), 1, + anon_sym_RPAREN, + ACTIONS(1059), 1, + anon_sym_COMMA, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1073), 1, anon_sym_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1097), 1, + sym_identifier, + ACTIONS(1103), 1, anon_sym_STAR, - ACTIONS(1117), 1, - anon_sym_LBRACK, - ACTIONS(1119), 1, + ACTIONS(1109), 1, anon_sym_await, - STATE(1003), 1, + STATE(950), 1, + sym_primary_expression, + STATE(985), 1, sym_string, - STATE(1461), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1612), 1, - sym_primary_expression, - STATE(1628), 1, - sym_pattern, + STATE(1668), 1, + sym_expression, + STATE(2242), 1, + sym_parenthesized_list_splat, + STATE(2698), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(668), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1115), 2, + ACTIONS(1107), 2, anon_sym_match, anon_sym_type, - STATE(1464), 2, - sym_attribute, - sym_subscript, - STATE(1638), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1113), 3, + ACTIONS(791), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1105), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 4, + STATE(2241), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1392), 14, + STATE(1807), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -34671,86 +34312,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(965), 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, - [7857] = 27, - ACTIONS(709), 1, + [7849] = 27, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(881), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(1057), 1, - sym_identifier, - ACTIONS(1059), 1, - anon_sym_LPAREN, - ACTIONS(1065), 1, - anon_sym_STAR, - ACTIONS(1071), 1, + ACTIONS(1067), 1, anon_sym_STAR_STAR, ACTIONS(1073), 1, + anon_sym_LPAREN, + ACTIONS(1097), 1, + sym_identifier, + ACTIONS(1103), 1, + anon_sym_STAR, + ACTIONS(1109), 1, anon_sym_await, - ACTIONS(1121), 1, + ACTIONS(1115), 1, anon_sym_RPAREN, - ACTIONS(1123), 1, + ACTIONS(1117), 1, anon_sym_COMMA, - STATE(956), 1, + STATE(950), 1, sym_primary_expression, - STATE(977), 1, + STATE(985), 1, sym_string, - STATE(1407), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1703), 1, + STATE(1677), 1, sym_expression, - STATE(2418), 1, + STATE(2286), 1, sym_parenthesized_list_splat, - STATE(2712), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1069), 2, + ACTIONS(1107), 2, anon_sym_match, anon_sym_type, - ACTIONS(711), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1067), 3, + ACTIONS(1105), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2417), 3, + STATE(2285), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(697), 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, @@ -34758,7 +34383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34775,69 +34400,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7972] = 26, - ACTIONS(67), 1, + [7964] = 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(391), 1, - anon_sym_match, - ACTIONS(402), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(637), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(333), 1, + anon_sym_STAR_STAR, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(645), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1031), 1, - sym_identifier, - ACTIONS(1033), 1, + ACTIONS(1049), 1, anon_sym_STAR, - ACTIONS(1035), 1, - anon_sym_STAR_STAR, - ACTIONS(1037), 1, - anon_sym_type, - STATE(853), 1, + ACTIONS(1051), 1, + anon_sym_not, + STATE(952), 1, sym_primary_expression, - STATE(953), 1, + STATE(984), 1, sym_string, - STATE(1049), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1731), 1, + STATE(1762), 1, sym_expression, - STATE(1921), 1, + STATE(2301), 1, sym_type, - STATE(2724), 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(387), 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(1968), 5, + STATE(2074), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1659), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34845,7 +34470,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1052), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34862,71 +34487,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8085] = 28, - ACTIONS(709), 1, + [8077] = 27, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(871), 1, - anon_sym_STAR, - ACTIONS(879), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(881), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(883), 1, - anon_sym_yield, - ACTIONS(1059), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1073), 1, anon_sym_LPAREN, - ACTIONS(1125), 1, + ACTIONS(1097), 1, sym_identifier, - ACTIONS(1127), 1, - anon_sym_RPAREN, - ACTIONS(1133), 1, + ACTIONS(1103), 1, + anon_sym_STAR, + ACTIONS(1109), 1, anon_sym_await, - STATE(956), 1, + ACTIONS(1119), 1, + anon_sym_RPAREN, + ACTIONS(1121), 1, + anon_sym_COMMA, + STATE(950), 1, sym_primary_expression, - STATE(977), 1, + STATE(985), 1, sym_string, - STATE(1407), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1668), 1, + STATE(1684), 1, sym_expression, - STATE(2366), 1, - sym_with_item, - STATE(2373), 1, - sym_yield, - STATE(2653), 1, - sym__collection_elements, - STATE(2712), 1, + STATE(2333), 1, + sym_parenthesized_list_splat, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1131), 2, + ACTIONS(1107), 2, anon_sym_match, anon_sym_type, - STATE(2460), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(711), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1129), 3, + ACTIONS(1105), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 4, + STATE(2332), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + 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, @@ -34934,7 +34558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34951,69 +34575,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8202] = 26, - ACTIONS(745), 1, - anon_sym_LPAREN, - ACTIONS(753), 1, - anon_sym_LBRACK, - ACTIONS(757), 1, - anon_sym_LBRACE, - ACTIONS(763), 1, - sym_string_start, - ACTIONS(819), 1, - anon_sym_STAR_STAR, - ACTIONS(981), 1, + [8192] = 26, + ACTIONS(263), 1, sym_identifier, - ACTIONS(983), 1, - anon_sym_STAR, - ACTIONS(987), 1, + ACTIONS(285), 1, anon_sym_match, - ACTIONS(989), 1, + ACTIONS(290), 1, anon_sym_type, - ACTIONS(993), 1, - anon_sym_not, - ACTIONS(995), 1, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(314), 1, anon_sym_await, - STATE(972), 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(1098), 1, + STATE(984), 1, sym_string, - STATE(1423), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1762), 1, sym_expression, - STATE(2025), 1, + STATE(1987), 1, sym_type, - STATE(2595), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(755), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 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(2005), 5, + STATE(2074), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1743), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35021,7 +34645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35038,70 +34662,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8315] = 27, - ACTIONS(709), 1, + [8305] = 26, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(879), 1, - anon_sym_not, - ACTIONS(881), 1, - anon_sym_lambda, - ACTIONS(1057), 1, + ACTIONS(811), 1, + anon_sym_STAR_STAR, + ACTIONS(991), 1, sym_identifier, - ACTIONS(1059), 1, - anon_sym_LPAREN, - ACTIONS(1065), 1, + ACTIONS(993), 1, anon_sym_STAR, - ACTIONS(1071), 1, - anon_sym_STAR_STAR, - ACTIONS(1073), 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(1135), 1, - anon_sym_RPAREN, - ACTIONS(1137), 1, - anon_sym_COMMA, - STATE(956), 1, + STATE(963), 1, sym_primary_expression, - STATE(977), 1, + STATE(1081), 1, sym_string, - STATE(1407), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1684), 1, + STATE(1756), 1, sym_expression, - STATE(2302), 1, - sym_parenthesized_list_splat, - STATE(2712), 1, + STATE(2084), 1, + sym_type, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1069), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(711), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1067), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2301), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(697), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 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, @@ -35109,7 +34732,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35126,69 +34749,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8430] = 26, - ACTIONS(745), 1, - anon_sym_LPAREN, - ACTIONS(753), 1, + [8418] = 27, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(819), 1, + ACTIONS(857), 1, + anon_sym_not, + ACTIONS(859), 1, + anon_sym_lambda, + ACTIONS(1067), 1, anon_sym_STAR_STAR, - ACTIONS(981), 1, + ACTIONS(1073), 1, + anon_sym_LPAREN, + ACTIONS(1097), 1, sym_identifier, - ACTIONS(983), 1, + ACTIONS(1103), 1, anon_sym_STAR, - ACTIONS(987), 1, - anon_sym_match, - ACTIONS(989), 1, - anon_sym_type, - ACTIONS(993), 1, - anon_sym_not, - ACTIONS(995), 1, - anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1109), 1, anon_sym_await, - STATE(972), 1, + ACTIONS(1123), 1, + anon_sym_RPAREN, + ACTIONS(1125), 1, + anon_sym_COMMA, + STATE(950), 1, sym_primary_expression, - STATE(1098), 1, + STATE(985), 1, sym_string, - STATE(1423), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1690), 1, sym_expression, - STATE(2026), 1, - sym_type, - STATE(2595), 1, + STATE(2232), 1, + sym_parenthesized_list_splat, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(755), 3, + ACTIONS(1107), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(1105), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + STATE(2361), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2005), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1743), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35196,7 +34820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35213,68 +34837,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8543] = 25, - ACTIONS(674), 1, + [8533] = 26, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(692), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(811), 1, + anon_sym_STAR_STAR, + ACTIONS(991), 1, + sym_identifier, + ACTIONS(993), 1, anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(997), 1, + anon_sym_match, + ACTIONS(999), 1, + anon_sym_type, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1139), 1, - sym_identifier, - ACTIONS(1141), 1, - anon_sym_from, - ACTIONS(1149), 1, + ACTIONS(1007), 1, anon_sym_await, - STATE(888), 1, + STATE(963), 1, sym_primary_expression, - STATE(961), 1, + STATE(1081), 1, sym_string, - STATE(1212), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1735), 1, + STATE(1756), 1, sym_expression, - STATE(2063), 1, - sym_expression_list, - STATE(2787), 1, + STATE(2085), 1, + sym_type, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(688), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1147), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(684), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1145), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(672), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1143), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1776), 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, @@ -35282,7 +34907,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1251), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35299,69 +34924,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8654] = 26, - ACTIONS(745), 1, - anon_sym_LPAREN, - ACTIONS(753), 1, + [8646] = 27, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(819), 1, + ACTIONS(857), 1, + anon_sym_not, + ACTIONS(859), 1, + anon_sym_lambda, + ACTIONS(1067), 1, anon_sym_STAR_STAR, - ACTIONS(981), 1, + ACTIONS(1073), 1, + anon_sym_LPAREN, + ACTIONS(1097), 1, sym_identifier, - ACTIONS(983), 1, + ACTIONS(1103), 1, anon_sym_STAR, - ACTIONS(987), 1, - anon_sym_match, - ACTIONS(989), 1, - anon_sym_type, - ACTIONS(993), 1, - anon_sym_not, - ACTIONS(995), 1, - anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1109), 1, anon_sym_await, - STATE(972), 1, + ACTIONS(1127), 1, + anon_sym_RPAREN, + ACTIONS(1129), 1, + anon_sym_COMMA, + STATE(950), 1, sym_primary_expression, - STATE(1098), 1, + STATE(985), 1, sym_string, - STATE(1423), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1695), 1, sym_expression, - STATE(1956), 1, - sym_type, - STATE(2595), 1, + STATE(2384), 1, + sym_parenthesized_list_splat, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(755), 3, + ACTIONS(1107), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(1105), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + STATE(2383), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2005), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1743), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35369,7 +34995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35386,69 +35012,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8767] = 26, - ACTIONS(267), 1, - sym_identifier, - ACTIONS(289), 1, - anon_sym_match, - ACTIONS(294), 1, - anon_sym_type, - ACTIONS(303), 1, + [8761] = 27, + ACTIONS(789), 1, + anon_sym_LBRACK, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(310), 1, - anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_await, - ACTIONS(320), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(337), 1, + ACTIONS(857), 1, + anon_sym_not, + ACTIONS(859), 1, + anon_sym_lambda, + ACTIONS(1067), 1, anon_sym_STAR_STAR, - ACTIONS(656), 1, + ACTIONS(1073), 1, anon_sym_LPAREN, - ACTIONS(666), 1, - anon_sym_LBRACK, - ACTIONS(1075), 1, + ACTIONS(1097), 1, + sym_identifier, + ACTIONS(1103), 1, anon_sym_STAR, - ACTIONS(1077), 1, - anon_sym_not, - STATE(955), 1, + ACTIONS(1109), 1, + anon_sym_await, + ACTIONS(1131), 1, + anon_sym_RPAREN, + ACTIONS(1133), 1, + anon_sym_COMMA, + STATE(950), 1, sym_primary_expression, - STATE(1003), 1, + STATE(985), 1, sym_string, - STATE(1300), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1763), 1, + STATE(1701), 1, sym_expression, - STATE(1995), 1, - sym_type, - STATE(2772), 1, + STATE(2409), 1, + sym_parenthesized_list_splat, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(1107), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(1105), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2408), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2083), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1737), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35456,7 +35083,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35473,69 +35100,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8880] = 26, - ACTIONS(745), 1, + [8876] = 25, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(819), 1, - anon_sym_STAR_STAR, - ACTIONS(981), 1, - sym_identifier, - ACTIONS(983), 1, + ACTIONS(977), 1, anon_sym_STAR, - ACTIONS(987), 1, - anon_sym_match, - ACTIONS(989), 1, - anon_sym_type, - ACTIONS(993), 1, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1135), 1, + sym_identifier, + ACTIONS(1137), 1, + anon_sym_from, + ACTIONS(1145), 1, anon_sym_await, - STATE(972), 1, + STATE(901), 1, sym_primary_expression, - STATE(1098), 1, + STATE(975), 1, sym_string, - STATE(1423), 1, + STATE(1197), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1734), 1, sym_expression, - STATE(1881), 1, - sym_type, - STATE(2595), 1, + STATE(2021), 1, + sym_expression_list, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(755), 3, + ACTIONS(1143), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2005), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1743), 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, @@ -35543,7 +35169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35560,69 +35186,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8993] = 26, - ACTIONS(745), 1, + [8987] = 26, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(819), 1, + ACTIONS(811), 1, anon_sym_STAR_STAR, - ACTIONS(981), 1, + ACTIONS(991), 1, sym_identifier, - ACTIONS(983), 1, + ACTIONS(993), 1, anon_sym_STAR, - ACTIONS(987), 1, + ACTIONS(997), 1, anon_sym_match, - ACTIONS(989), 1, + ACTIONS(999), 1, anon_sym_type, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1756), 1, sym_expression, - STATE(1950), 1, + STATE(1945), 1, sym_type, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2005), 5, + STATE(2046), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35630,7 +35256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35647,70 +35273,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9106] = 27, - ACTIONS(709), 1, + [9100] = 26, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(879), 1, - anon_sym_not, - ACTIONS(881), 1, - anon_sym_lambda, - ACTIONS(1057), 1, + ACTIONS(811), 1, + anon_sym_STAR_STAR, + ACTIONS(991), 1, sym_identifier, - ACTIONS(1059), 1, - anon_sym_LPAREN, - ACTIONS(1065), 1, + ACTIONS(993), 1, anon_sym_STAR, - ACTIONS(1071), 1, - anon_sym_STAR_STAR, - ACTIONS(1073), 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(1151), 1, - anon_sym_RPAREN, - ACTIONS(1153), 1, - anon_sym_COMMA, - STATE(956), 1, + STATE(963), 1, sym_primary_expression, - STATE(977), 1, + STATE(1081), 1, sym_string, - STATE(1407), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1674), 1, + STATE(1756), 1, sym_expression, - STATE(2285), 1, - sym_parenthesized_list_splat, - STATE(2712), 1, + STATE(1914), 1, + sym_type, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1069), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(711), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1067), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2284), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(697), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 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, @@ -35718,7 +35343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35735,69 +35360,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9221] = 26, - ACTIONS(267), 1, - sym_identifier, - ACTIONS(289), 1, - anon_sym_match, - ACTIONS(294), 1, - anon_sym_type, - ACTIONS(303), 1, + [9213] = 26, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(310), 1, - anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_await, - ACTIONS(320), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(337), 1, + ACTIONS(811), 1, anon_sym_STAR_STAR, - ACTIONS(656), 1, - anon_sym_LPAREN, - ACTIONS(666), 1, - anon_sym_LBRACK, - ACTIONS(1075), 1, + ACTIONS(991), 1, + sym_identifier, + ACTIONS(993), 1, anon_sym_STAR, - ACTIONS(1077), 1, + ACTIONS(997), 1, + anon_sym_match, + ACTIONS(999), 1, + anon_sym_type, + ACTIONS(1003), 1, anon_sym_not, - STATE(955), 1, + ACTIONS(1005), 1, + anon_sym_lambda, + ACTIONS(1007), 1, + anon_sym_await, + STATE(963), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1081), 1, sym_string, - STATE(1300), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1763), 1, + STATE(1756), 1, sym_expression, - STATE(2453), 1, + STATE(1895), 1, sym_type, - STATE(2772), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 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(2083), 5, + STATE(2046), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1737), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35805,7 +35430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35822,69 +35447,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9334] = 26, - ACTIONS(267), 1, + [9326] = 26, + ACTIONS(263), 1, sym_identifier, - ACTIONS(289), 1, + ACTIONS(285), 1, anon_sym_match, - ACTIONS(294), 1, + ACTIONS(290), 1, anon_sym_type, - ACTIONS(303), 1, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(337), 1, + ACTIONS(333), 1, anon_sym_STAR_STAR, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1075), 1, + ACTIONS(1049), 1, anon_sym_STAR, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1763), 1, + STATE(1762), 1, sym_expression, - STATE(2454), 1, + STATE(2445), 1, sym_type, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2083), 5, + STATE(2074), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35892,7 +35517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35909,69 +35534,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9447] = 26, - ACTIONS(267), 1, + [9439] = 26, + ACTIONS(263), 1, sym_identifier, - ACTIONS(289), 1, + ACTIONS(285), 1, anon_sym_match, - ACTIONS(294), 1, + ACTIONS(290), 1, anon_sym_type, - ACTIONS(303), 1, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(337), 1, + ACTIONS(333), 1, anon_sym_STAR_STAR, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1075), 1, + ACTIONS(1049), 1, anon_sym_STAR, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1763), 1, + STATE(1762), 1, sym_expression, - STATE(2455), 1, + STATE(2447), 1, sym_type, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2083), 5, + STATE(2074), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35979,7 +35604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35996,69 +35621,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9560] = 26, - ACTIONS(267), 1, + [9552] = 26, + ACTIONS(263), 1, sym_identifier, - ACTIONS(289), 1, + ACTIONS(285), 1, anon_sym_match, - ACTIONS(294), 1, + ACTIONS(290), 1, anon_sym_type, - ACTIONS(303), 1, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(337), 1, + ACTIONS(333), 1, anon_sym_STAR_STAR, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1075), 1, + ACTIONS(1049), 1, anon_sym_STAR, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1763), 1, + STATE(1762), 1, sym_expression, - STATE(2456), 1, + STATE(2448), 1, sym_type, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2083), 5, + STATE(2074), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36066,7 +35691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36083,61 +35708,81 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9673] = 22, - ACTIONS(303), 1, + [9665] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(308), 1, - anon_sym_TILDE, - ACTIONS(320), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym_string_start, - ACTIONS(1107), 1, - sym_identifier, - ACTIONS(1109), 1, + ACTIONS(387), 1, + anon_sym_match, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(1111), 1, - anon_sym_STAR, - ACTIONS(1117), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1119), 1, - anon_sym_await, - STATE(1003), 1, + ACTIONS(1041), 1, + sym_identifier, + 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(954), 1, sym_string, - STATE(1461), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1612), 1, - sym_primary_expression, - STATE(1628), 1, - sym_pattern, + STATE(1724), 1, + sym_expression, + STATE(1883), 1, + sym_type, + STATE(2616), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(668), 2, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1115), 2, - anon_sym_match, - anon_sym_type, - STATE(1464), 2, - sym_attribute, - sym_subscript, - STATE(1638), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1113), 3, + anon_sym_TILDE, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1392), 14, + 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, + 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, @@ -36150,84 +35795,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(979), 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, - [9778] = 26, - ACTIONS(775), 1, + [9778] = 28, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(849), 1, + anon_sym_STAR, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(859), 1, anon_sym_lambda, + ACTIONS(861), 1, + anon_sym_yield, ACTIONS(1071), 1, - anon_sym_STAR_STAR, - ACTIONS(1079), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1073), 1, anon_sym_LPAREN, - ACTIONS(1087), 1, - anon_sym_STAR, - ACTIONS(1093), 1, + ACTIONS(1081), 1, anon_sym_await, - ACTIONS(1155), 1, + ACTIONS(1147), 1, anon_sym_RPAREN, - STATE(952), 1, + STATE(950), 1, sym_primary_expression, STATE(985), 1, sym_string, - STATE(1376), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1683), 1, sym_expression, - STATE(2532), 1, + STATE(2238), 1, + sym_list_splat, + STATE(2239), 1, sym_parenthesized_list_splat, - STATE(2639), 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(781), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1091), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1089), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2518), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(765), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36235,7 +35866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36252,69 +35883,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9890] = 27, - ACTIONS(709), 1, + [9894] = 28, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(871), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(879), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(881), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(883), 1, + ACTIONS(861), 1, anon_sym_yield, - ACTIONS(1059), 1, - anon_sym_LPAREN, - ACTIONS(1125), 1, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1127), 1, - anon_sym_RPAREN, - ACTIONS(1133), 1, + ACTIONS(1073), 1, + anon_sym_LPAREN, + ACTIONS(1081), 1, anon_sym_await, - STATE(956), 1, + ACTIONS(1149), 1, + anon_sym_RPAREN, + STATE(950), 1, sym_primary_expression, - STATE(977), 1, + STATE(985), 1, sym_string, - STATE(1407), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1679), 1, + STATE(1678), 1, sym_expression, - STATE(2373), 1, + STATE(2318), 1, + sym_list_splat, + STATE(2325), 1, + sym_parenthesized_list_splat, + STATE(2456), 1, sym_yield, - STATE(2653), 1, - sym__collection_elements, - STATE(2712), 1, + STATE(2698), 1, sym__named_expression_lhs, + STATE(2712), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1131), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - STATE(2460), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(711), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1129), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 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, @@ -36322,7 +35954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36339,68 +35971,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10004] = 26, - ACTIONS(797), 1, + [10010] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(801), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(807), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(811), 1, - anon_sym_LPAREN, - ACTIONS(823), 1, - anon_sym_RBRACK, - ACTIONS(825), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(827), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(829), 1, - anon_sym_yield, - ACTIONS(831), 1, - anon_sym_await, - ACTIONS(891), 1, - anon_sym_STAR, - ACTIONS(1157), 1, + ACTIONS(1053), 1, sym_identifier, - STATE(919), 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(970), 1, + STATE(995), 1, sym_string, - STATE(1254), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1709), 1, + STATE(1952), 1, sym_expression, - STATE(2626), 1, + STATE(2516), 1, + sym_parenthesized_list_splat, + STATE(2638), 1, sym__named_expression_lhs, - STATE(2725), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(803), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(817), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(799), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(815), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2485), 3, + STATE(2512), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(787), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1689), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36408,7 +36040,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1148), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36425,69 +36057,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10116] = 27, - ACTIONS(709), 1, + [10122] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(871), 1, - anon_sym_STAR, - ACTIONS(879), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(881), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(883), 1, - anon_sym_yield, - ACTIONS(1059), 1, - anon_sym_LPAREN, - ACTIONS(1125), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1133), 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(1159), 1, + ACTIONS(1153), 1, anon_sym_RPAREN, - STATE(956), 1, + STATE(953), 1, sym_primary_expression, - STATE(977), 1, + STATE(995), 1, sym_string, - STATE(1407), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1696), 1, + STATE(1952), 1, sym_expression, - STATE(2389), 1, - sym_yield, - STATE(2668), 1, - sym__collection_elements, - STATE(2712), 1, + STATE(2516), 1, + sym_parenthesized_list_splat, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1131), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - STATE(2460), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(711), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1129), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 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(1787), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36495,7 +36126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36512,68 +36143,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10230] = 26, - ACTIONS(797), 1, + [10234] = 27, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(801), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(807), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(811), 1, - anon_sym_LPAREN, - ACTIONS(825), 1, + ACTIONS(849), 1, + anon_sym_STAR, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(827), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(829), 1, + ACTIONS(861), 1, anon_sym_yield, - ACTIONS(831), 1, - anon_sym_await, - ACTIONS(891), 1, - anon_sym_STAR, - ACTIONS(1157), 1, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1161), 1, - anon_sym_RBRACK, - STATE(919), 1, + ACTIONS(1073), 1, + anon_sym_LPAREN, + ACTIONS(1075), 1, + anon_sym_RPAREN, + ACTIONS(1081), 1, + anon_sym_await, + STATE(950), 1, sym_primary_expression, - STATE(970), 1, + STATE(985), 1, sym_string, - STATE(1254), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1714), 1, + STATE(1718), 1, sym_expression, - STATE(2626), 1, - sym__named_expression_lhs, - STATE(2663), 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(803), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(817), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(799), 3, + STATE(2287), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(815), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2485), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(787), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1689), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36581,7 +36213,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1148), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36598,70 +36230,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10342] = 28, - ACTIONS(709), 1, + [10348] = 26, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(871), 1, - anon_sym_STAR, - ACTIONS(879), 1, + ACTIONS(803), 1, + anon_sym_LPAREN, + ACTIONS(815), 1, + anon_sym_RBRACK, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(881), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(883), 1, + ACTIONS(821), 1, anon_sym_yield, - ACTIONS(1059), 1, - anon_sym_LPAREN, - ACTIONS(1125), 1, - sym_identifier, - ACTIONS(1133), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1163), 1, - anon_sym_RPAREN, - STATE(956), 1, + ACTIONS(829), 1, + anon_sym_STAR, + ACTIONS(1155), 1, + sym_identifier, + STATE(857), 1, sym_primary_expression, - STATE(977), 1, + STATE(969), 1, sym_string, - STATE(1407), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1719), 1, + STATE(1707), 1, sym_expression, - STATE(2246), 1, - sym_list_splat, - STATE(2249), 1, - sym_parenthesized_list_splat, - STATE(2292), 1, - sym_yield, - STATE(2656), 1, + STATE(2689), 1, sym__collection_elements, - STATE(2712), 1, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1131), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(711), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1129), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 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(1787), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36669,7 +36299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36686,70 +36316,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10458] = 28, - ACTIONS(709), 1, + [10460] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(871), 1, - anon_sym_STAR, - ACTIONS(879), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(881), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(883), 1, - anon_sym_yield, - ACTIONS(1059), 1, - anon_sym_LPAREN, - ACTIONS(1125), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1133), 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(1165), 1, + ACTIONS(1157), 1, anon_sym_RPAREN, - STATE(956), 1, + STATE(953), 1, sym_primary_expression, - STATE(977), 1, + STATE(995), 1, sym_string, - STATE(1407), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1687), 1, + STATE(1952), 1, sym_expression, - STATE(2243), 1, - sym_list_splat, - STATE(2244), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2343), 1, - sym_yield, - STATE(2657), 1, - sym__collection_elements, - STATE(2712), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1131), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(711), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1129), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 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(1787), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36757,7 +36385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36774,68 +36402,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10574] = 26, - ACTIONS(775), 1, + [10572] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1071), 1, - anon_sym_STAR_STAR, - ACTIONS(1079), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1087), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1093), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1167), 1, + ACTIONS(1159), 1, anon_sym_RPAREN, - STATE(952), 1, + STATE(953), 1, sym_primary_expression, - STATE(985), 1, + STATE(995), 1, sym_string, - STATE(1376), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1952), 1, sym_expression, - STATE(2532), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2639), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1091), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1089), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2518), 3, + STATE(2512), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(765), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36843,7 +36471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36860,68 +36488,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10686] = 26, - ACTIONS(775), 1, + [10684] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1071), 1, - anon_sym_STAR_STAR, - ACTIONS(1079), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1087), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1093), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1169), 1, + ACTIONS(1161), 1, anon_sym_RPAREN, - STATE(952), 1, + STATE(953), 1, sym_primary_expression, - STATE(985), 1, + STATE(995), 1, sym_string, - STATE(1376), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1952), 1, sym_expression, - STATE(2532), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2639), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1091), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1089), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2518), 3, + STATE(2512), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(765), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36929,7 +36557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36946,68 +36574,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10798] = 26, - ACTIONS(775), 1, + [10796] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1071), 1, - anon_sym_STAR_STAR, - ACTIONS(1079), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1087), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1093), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1163), 1, anon_sym_RPAREN, - STATE(952), 1, + STATE(953), 1, sym_primary_expression, - STATE(985), 1, + STATE(995), 1, sym_string, - STATE(1376), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1952), 1, sym_expression, - STATE(2532), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2639), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1091), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1089), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2518), 3, + STATE(2512), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(765), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37015,7 +36643,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37032,68 +36660,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10910] = 26, - ACTIONS(775), 1, + [10908] = 27, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(849), 1, + anon_sym_STAR, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(859), 1, anon_sym_lambda, + ACTIONS(861), 1, + anon_sym_yield, ACTIONS(1071), 1, - anon_sym_STAR_STAR, - ACTIONS(1079), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1073), 1, anon_sym_LPAREN, - ACTIONS(1087), 1, - anon_sym_STAR, - ACTIONS(1093), 1, + ACTIONS(1081), 1, anon_sym_await, - ACTIONS(1173), 1, + ACTIONS(1165), 1, anon_sym_RPAREN, - STATE(952), 1, + STATE(950), 1, sym_primary_expression, STATE(985), 1, sym_string, - STATE(1376), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1693), 1, sym_expression, - STATE(2532), 1, - sym_parenthesized_list_splat, - STATE(2639), 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(781), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1091), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + STATE(2287), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1089), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2518), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(765), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37101,7 +36730,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37119,67 +36748,67 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [11022] = 26, - ACTIONS(775), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(803), 1, + anon_sym_LPAREN, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(1071), 1, - anon_sym_STAR_STAR, - ACTIONS(1079), 1, - sym_identifier, - ACTIONS(1081), 1, - anon_sym_LPAREN, - ACTIONS(1087), 1, - anon_sym_STAR, - ACTIONS(1093), 1, + ACTIONS(821), 1, + anon_sym_yield, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1175), 1, - anon_sym_RPAREN, - STATE(952), 1, + ACTIONS(829), 1, + anon_sym_STAR, + ACTIONS(1155), 1, + sym_identifier, + ACTIONS(1167), 1, + anon_sym_RBRACK, + STATE(857), 1, sym_primary_expression, - STATE(985), 1, + STATE(969), 1, sym_string, - STATE(1376), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1712), 1, sym_expression, - STATE(2532), 1, - sym_parenthesized_list_splat, - STATE(2639), 1, + STATE(2666), 1, + sym__collection_elements, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1091), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1089), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2518), 3, + STATE(2280), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(765), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37187,7 +36816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37204,68 +36833,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11134] = 26, - ACTIONS(775), 1, + [11134] = 28, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(849), 1, + anon_sym_STAR, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(859), 1, anon_sym_lambda, + ACTIONS(861), 1, + anon_sym_yield, ACTIONS(1071), 1, - anon_sym_STAR_STAR, - ACTIONS(1079), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1073), 1, anon_sym_LPAREN, - ACTIONS(1087), 1, - anon_sym_STAR, - ACTIONS(1093), 1, + ACTIONS(1081), 1, anon_sym_await, - ACTIONS(1177), 1, + ACTIONS(1169), 1, anon_sym_RPAREN, - STATE(952), 1, + STATE(950), 1, sym_primary_expression, STATE(985), 1, sym_string, - STATE(1376), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1676), 1, sym_expression, - STATE(2532), 1, + STATE(2273), 1, + sym_yield, + STATE(2466), 1, + sym_list_splat, + STATE(2467), 1, sym_parenthesized_list_splat, - STATE(2639), 1, + STATE(2698), 1, sym__named_expression_lhs, + STATE(2743), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1091), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1089), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2518), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(765), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37273,7 +36904,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37290,69 +36921,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11246] = 27, - ACTIONS(709), 1, + [11250] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(871), 1, - anon_sym_STAR, - ACTIONS(879), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(881), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(883), 1, - anon_sym_yield, - ACTIONS(1059), 1, - anon_sym_LPAREN, - ACTIONS(1125), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1133), 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(1179), 1, + ACTIONS(1171), 1, anon_sym_RPAREN, - STATE(956), 1, + STATE(953), 1, sym_primary_expression, - STATE(977), 1, + STATE(995), 1, sym_string, - STATE(1407), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1672), 1, + STATE(1952), 1, sym_expression, - STATE(2377), 1, - sym_yield, - STATE(2616), 1, - sym__collection_elements, - STATE(2712), 1, + STATE(2516), 1, + sym_parenthesized_list_splat, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1131), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - STATE(2460), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(711), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1129), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 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(1787), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37360,7 +36990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37377,68 +37007,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11360] = 26, - ACTIONS(797), 1, + [11362] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(801), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(807), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(811), 1, - anon_sym_LPAREN, - ACTIONS(825), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(827), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(829), 1, - anon_sym_yield, - ACTIONS(831), 1, - anon_sym_await, - ACTIONS(891), 1, - anon_sym_STAR, - ACTIONS(1157), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1181), 1, - anon_sym_RBRACK, - STATE(919), 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(1173), 1, + anon_sym_RPAREN, + STATE(953), 1, sym_primary_expression, - STATE(970), 1, + STATE(995), 1, sym_string, - STATE(1254), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1716), 1, + STATE(1952), 1, sym_expression, - STATE(2626), 1, + STATE(2516), 1, + sym_parenthesized_list_splat, + STATE(2638), 1, sym__named_expression_lhs, - STATE(2672), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(803), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(817), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(799), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(815), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2485), 3, + STATE(2512), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(787), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1689), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37446,7 +37076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1148), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37463,70 +37093,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11472] = 28, - ACTIONS(709), 1, + [11474] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(871), 1, - anon_sym_STAR, - ACTIONS(879), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(881), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(883), 1, - anon_sym_yield, - ACTIONS(1059), 1, - anon_sym_LPAREN, - ACTIONS(1125), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1133), 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(1159), 1, + ACTIONS(1175), 1, anon_sym_RPAREN, - STATE(956), 1, + STATE(953), 1, sym_primary_expression, - STATE(977), 1, + STATE(995), 1, sym_string, - STATE(1407), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1696), 1, + STATE(1952), 1, sym_expression, - STATE(2389), 1, - sym_yield, - STATE(2457), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2465), 1, - sym_list_splat, - STATE(2668), 1, - sym__collection_elements, - STATE(2712), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1131), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(711), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1129), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 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(1787), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37534,7 +37162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37551,68 +37179,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11588] = 26, - ACTIONS(775), 1, + [11586] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1071), 1, - anon_sym_STAR_STAR, - ACTIONS(1079), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1087), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1093), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1183), 1, + ACTIONS(1177), 1, anon_sym_RPAREN, - STATE(952), 1, + STATE(953), 1, sym_primary_expression, - STATE(985), 1, + STATE(995), 1, sym_string, - STATE(1376), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1952), 1, sym_expression, - STATE(2532), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2639), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1091), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1089), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2518), 3, + STATE(2512), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(765), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37620,7 +37248,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37637,68 +37265,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11700] = 26, - ACTIONS(775), 1, + [11698] = 27, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(849), 1, + anon_sym_STAR, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(859), 1, anon_sym_lambda, + ACTIONS(861), 1, + anon_sym_yield, ACTIONS(1071), 1, - anon_sym_STAR_STAR, - ACTIONS(1079), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1073), 1, anon_sym_LPAREN, - ACTIONS(1087), 1, - anon_sym_STAR, - ACTIONS(1093), 1, + ACTIONS(1081), 1, anon_sym_await, - ACTIONS(1185), 1, + ACTIONS(1149), 1, anon_sym_RPAREN, - STATE(952), 1, + STATE(950), 1, sym_primary_expression, STATE(985), 1, sym_string, - STATE(1376), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1678), 1, sym_expression, - STATE(2532), 1, - sym_parenthesized_list_splat, - STATE(2639), 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(781), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1091), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + STATE(2287), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1089), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2518), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(765), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37706,7 +37335,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37724,67 +37353,67 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [11812] = 26, - ACTIONS(775), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(803), 1, + anon_sym_LPAREN, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(1071), 1, - anon_sym_STAR_STAR, - ACTIONS(1079), 1, - sym_identifier, - ACTIONS(1081), 1, - anon_sym_LPAREN, - ACTIONS(1087), 1, - anon_sym_STAR, - ACTIONS(1093), 1, + ACTIONS(821), 1, + anon_sym_yield, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1187), 1, - anon_sym_RPAREN, - STATE(952), 1, + ACTIONS(829), 1, + anon_sym_STAR, + ACTIONS(1155), 1, + sym_identifier, + ACTIONS(1179), 1, + anon_sym_RBRACK, + STATE(857), 1, sym_primary_expression, - STATE(985), 1, + STATE(969), 1, sym_string, - STATE(1376), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1715), 1, sym_expression, - STATE(2532), 1, - sym_parenthesized_list_splat, - STATE(2639), 1, + STATE(2657), 1, + sym__collection_elements, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1091), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1089), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2518), 3, + STATE(2280), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(765), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37792,7 +37421,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37809,68 +37438,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11924] = 26, - ACTIONS(775), 1, + [11924] = 28, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(849), 1, + anon_sym_STAR, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(859), 1, anon_sym_lambda, + ACTIONS(861), 1, + anon_sym_yield, ACTIONS(1071), 1, - anon_sym_STAR_STAR, - ACTIONS(1079), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1073), 1, anon_sym_LPAREN, - ACTIONS(1087), 1, - anon_sym_STAR, - ACTIONS(1093), 1, + ACTIONS(1081), 1, anon_sym_await, - ACTIONS(1189), 1, + ACTIONS(1165), 1, anon_sym_RPAREN, - STATE(952), 1, + STATE(950), 1, sym_primary_expression, STATE(985), 1, sym_string, - STATE(1376), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1693), 1, sym_expression, - STATE(2532), 1, + STATE(2318), 1, + sym_list_splat, + STATE(2325), 1, sym_parenthesized_list_splat, - STATE(2639), 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(781), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1091), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1089), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2518), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(765), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37878,7 +37509,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37895,69 +37526,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12036] = 27, - ACTIONS(709), 1, + [12040] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(871), 1, - anon_sym_STAR, - ACTIONS(879), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(881), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(883), 1, - anon_sym_yield, - ACTIONS(1059), 1, - anon_sym_LPAREN, - ACTIONS(1125), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1133), 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(1191), 1, + ACTIONS(1181), 1, anon_sym_RPAREN, - STATE(956), 1, + STATE(953), 1, sym_primary_expression, - STATE(977), 1, + STATE(995), 1, sym_string, - STATE(1407), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1702), 1, + STATE(1952), 1, sym_expression, - STATE(2412), 1, - sym_yield, - STATE(2599), 1, - sym__collection_elements, - STATE(2712), 1, + STATE(2516), 1, + sym_parenthesized_list_splat, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1131), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - STATE(2460), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(711), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1129), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 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(1787), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37965,7 +37595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37982,68 +37612,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12150] = 26, - ACTIONS(797), 1, + [12152] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(801), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(807), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(811), 1, - anon_sym_LPAREN, - ACTIONS(825), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(827), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(829), 1, - anon_sym_yield, - ACTIONS(831), 1, - anon_sym_await, - ACTIONS(891), 1, - anon_sym_STAR, - ACTIONS(1157), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1193), 1, - anon_sym_RBRACK, - STATE(919), 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(1183), 1, + anon_sym_RPAREN, + STATE(953), 1, sym_primary_expression, - STATE(970), 1, + STATE(995), 1, sym_string, - STATE(1254), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1706), 1, + STATE(1952), 1, sym_expression, - STATE(2612), 1, - sym__collection_elements, - STATE(2626), 1, + STATE(2516), 1, + sym_parenthesized_list_splat, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(803), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(817), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(799), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(815), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2485), 3, + STATE(2512), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(787), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1689), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38051,7 +37681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1148), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38068,70 +37698,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12262] = 28, - ACTIONS(709), 1, + [12264] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(871), 1, - anon_sym_STAR, - ACTIONS(879), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(881), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(883), 1, - anon_sym_yield, - ACTIONS(1059), 1, - anon_sym_LPAREN, - ACTIONS(1125), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1133), 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(1191), 1, + ACTIONS(1185), 1, anon_sym_RPAREN, - STATE(956), 1, + STATE(953), 1, sym_primary_expression, - STATE(977), 1, + STATE(995), 1, sym_string, - STATE(1407), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1702), 1, + STATE(1952), 1, sym_expression, - STATE(2246), 1, - sym_list_splat, - STATE(2249), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2412), 1, - sym_yield, - STATE(2599), 1, - sym__collection_elements, - STATE(2712), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1131), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(711), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1129), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 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(1787), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38139,7 +37767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38156,68 +37784,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12378] = 26, - ACTIONS(775), 1, + [12376] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1071), 1, - anon_sym_STAR_STAR, - ACTIONS(1079), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1087), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1093), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1195), 1, + ACTIONS(1187), 1, anon_sym_RPAREN, - STATE(952), 1, + STATE(953), 1, sym_primary_expression, - STATE(985), 1, + STATE(995), 1, sym_string, - STATE(1376), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1952), 1, sym_expression, - STATE(2532), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2639), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1091), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1089), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2518), 3, + STATE(2512), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(765), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38225,7 +37853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38242,70 +37870,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12490] = 28, - ACTIONS(709), 1, + [12488] = 27, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(871), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(879), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(881), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(883), 1, + ACTIONS(861), 1, anon_sym_yield, - ACTIONS(1059), 1, - anon_sym_LPAREN, - ACTIONS(1125), 1, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1133), 1, + ACTIONS(1073), 1, + anon_sym_LPAREN, + ACTIONS(1081), 1, anon_sym_await, - ACTIONS(1179), 1, + ACTIONS(1189), 1, anon_sym_RPAREN, - STATE(956), 1, + STATE(950), 1, sym_primary_expression, - STATE(977), 1, + STATE(985), 1, sym_string, - STATE(1407), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1672), 1, + STATE(1699), 1, sym_expression, - STATE(2377), 1, + STATE(2401), 1, sym_yield, - STATE(2457), 1, - sym_parenthesized_list_splat, - STATE(2465), 1, - sym_list_splat, - STATE(2616), 1, + STATE(2589), 1, sym__collection_elements, - STATE(2712), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1131), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(711), 3, + STATE(2287), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1129), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 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, @@ -38313,7 +37940,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38330,68 +37957,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12606] = 26, - ACTIONS(775), 1, + [12602] = 26, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(803), 1, + anon_sym_LPAREN, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(1071), 1, - anon_sym_STAR_STAR, - ACTIONS(1079), 1, - sym_identifier, - ACTIONS(1081), 1, - anon_sym_LPAREN, - ACTIONS(1087), 1, - anon_sym_STAR, - ACTIONS(1093), 1, + ACTIONS(821), 1, + anon_sym_yield, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1197), 1, - anon_sym_RPAREN, - STATE(952), 1, + ACTIONS(829), 1, + anon_sym_STAR, + ACTIONS(1155), 1, + sym_identifier, + ACTIONS(1191), 1, + anon_sym_RBRACK, + STATE(857), 1, sym_primary_expression, - STATE(985), 1, + STATE(969), 1, sym_string, - STATE(1376), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1705), 1, sym_expression, - STATE(2532), 1, - sym_parenthesized_list_splat, - STATE(2639), 1, + STATE(2716), 1, sym__named_expression_lhs, + STATE(2719), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1091), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1089), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2518), 3, + STATE(2280), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(765), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38399,7 +38026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38416,68 +38043,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12718] = 26, - ACTIONS(775), 1, + [12714] = 28, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(849), 1, + anon_sym_STAR, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(859), 1, anon_sym_lambda, + ACTIONS(861), 1, + anon_sym_yield, ACTIONS(1071), 1, - anon_sym_STAR_STAR, - ACTIONS(1079), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1073), 1, anon_sym_LPAREN, - ACTIONS(1087), 1, - anon_sym_STAR, - ACTIONS(1093), 1, + ACTIONS(1081), 1, anon_sym_await, - ACTIONS(1199), 1, + ACTIONS(1189), 1, anon_sym_RPAREN, - STATE(952), 1, + STATE(950), 1, sym_primary_expression, STATE(985), 1, sym_string, - STATE(1376), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1699), 1, sym_expression, - STATE(2532), 1, + STATE(2401), 1, + sym_yield, + STATE(2466), 1, + sym_list_splat, + STATE(2467), 1, sym_parenthesized_list_splat, - STATE(2639), 1, + STATE(2589), 1, + sym__collection_elements, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1091), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1089), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2518), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(765), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38485,7 +38114,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38503,67 +38132,67 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [12830] = 26, - ACTIONS(775), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1071), 1, - anon_sym_STAR_STAR, - ACTIONS(1079), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1087), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1093), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1201), 1, + ACTIONS(1193), 1, anon_sym_RPAREN, - STATE(952), 1, + STATE(953), 1, sym_primary_expression, - STATE(985), 1, + STATE(995), 1, sym_string, - STATE(1376), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1952), 1, sym_expression, - STATE(2532), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2639), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1091), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1089), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2518), 3, + STATE(2512), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(765), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38571,7 +38200,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38589,67 +38218,67 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [12942] = 26, - ACTIONS(775), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1071), 1, - anon_sym_STAR_STAR, - ACTIONS(1079), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1087), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1093), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1203), 1, + ACTIONS(1195), 1, anon_sym_RPAREN, - STATE(952), 1, + STATE(953), 1, sym_primary_expression, - STATE(985), 1, + STATE(995), 1, sym_string, - STATE(1376), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1952), 1, sym_expression, - STATE(2532), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2639), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1091), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1089), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2518), 3, + STATE(2512), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(765), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38657,7 +38286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38675,67 +38304,67 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [13054] = 26, - ACTIONS(775), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1071), 1, - anon_sym_STAR_STAR, - ACTIONS(1079), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1087), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1093), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1205), 1, + ACTIONS(1197), 1, anon_sym_RPAREN, - STATE(952), 1, + STATE(953), 1, sym_primary_expression, - STATE(985), 1, + STATE(995), 1, sym_string, - STATE(1376), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1952), 1, sym_expression, - STATE(2532), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2639), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1091), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1089), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2518), 3, + STATE(2512), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(765), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38743,7 +38372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38760,68 +38389,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13166] = 26, - ACTIONS(775), 1, + [13166] = 27, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(849), 1, + anon_sym_STAR, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(859), 1, anon_sym_lambda, + ACTIONS(861), 1, + anon_sym_yield, ACTIONS(1071), 1, - anon_sym_STAR_STAR, - ACTIONS(1079), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1073), 1, anon_sym_LPAREN, - ACTIONS(1087), 1, - anon_sym_STAR, - ACTIONS(1093), 1, + ACTIONS(1081), 1, anon_sym_await, - ACTIONS(1207), 1, + ACTIONS(1169), 1, anon_sym_RPAREN, - STATE(952), 1, + STATE(950), 1, sym_primary_expression, STATE(985), 1, sym_string, - STATE(1376), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1676), 1, sym_expression, - STATE(2532), 1, - sym_parenthesized_list_splat, - STATE(2639), 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(781), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1091), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + STATE(2287), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1089), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2518), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(765), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38829,7 +38459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38846,69 +38476,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13278] = 27, - ACTIONS(709), 1, + [13280] = 26, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(871), 1, - anon_sym_STAR, - ACTIONS(879), 1, + ACTIONS(803), 1, + anon_sym_LPAREN, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(881), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(883), 1, + ACTIONS(821), 1, anon_sym_yield, - ACTIONS(1059), 1, - anon_sym_LPAREN, - ACTIONS(1125), 1, - sym_identifier, - ACTIONS(1133), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1163), 1, - anon_sym_RPAREN, - STATE(956), 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(977), 1, + STATE(969), 1, sym_string, - STATE(1407), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1719), 1, + STATE(1709), 1, sym_expression, - STATE(2292), 1, - sym_yield, - STATE(2656), 1, - sym__collection_elements, - STATE(2712), 1, + STATE(2716), 1, sym__named_expression_lhs, + STATE(2775), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1131), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - STATE(2460), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(711), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1129), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 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(1787), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38916,7 +38545,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38933,68 +38562,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13392] = 26, - ACTIONS(797), 1, + [13392] = 28, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(801), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(807), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(811), 1, - anon_sym_LPAREN, - ACTIONS(825), 1, + ACTIONS(849), 1, + anon_sym_STAR, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(827), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(829), 1, + ACTIONS(861), 1, anon_sym_yield, - ACTIONS(831), 1, - anon_sym_await, - ACTIONS(891), 1, - anon_sym_STAR, - ACTIONS(1157), 1, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1209), 1, - anon_sym_RBRACK, - STATE(919), 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(970), 1, + STATE(985), 1, sym_string, - STATE(1254), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1712), 1, + STATE(1665), 1, sym_expression, - STATE(2626), 1, - sym__named_expression_lhs, - STATE(2706), 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(803), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(817), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(799), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(815), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2485), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(787), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1689), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39002,7 +38633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1148), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39019,70 +38650,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13504] = 28, - ACTIONS(709), 1, + [13508] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(871), 1, - anon_sym_STAR, - ACTIONS(879), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(881), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(883), 1, - anon_sym_yield, - ACTIONS(1059), 1, - anon_sym_LPAREN, - ACTIONS(1125), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1133), 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(1211), 1, + ACTIONS(1203), 1, anon_sym_RPAREN, - STATE(956), 1, + STATE(953), 1, sym_primary_expression, - STATE(977), 1, + STATE(995), 1, sym_string, - STATE(1407), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1692), 1, + STATE(1952), 1, sym_expression, - STATE(2243), 1, - sym_list_splat, - STATE(2244), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2368), 1, - sym_yield, - STATE(2631), 1, - sym__collection_elements, - STATE(2712), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1131), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(711), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1129), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 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(1787), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39090,7 +38719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39108,67 +38737,67 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [13620] = 26, - ACTIONS(775), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1071), 1, - anon_sym_STAR_STAR, - ACTIONS(1079), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1087), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1093), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1213), 1, + ACTIONS(1205), 1, anon_sym_RPAREN, - STATE(952), 1, + STATE(953), 1, sym_primary_expression, - STATE(985), 1, + STATE(995), 1, sym_string, - STATE(1376), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1952), 1, sym_expression, - STATE(2532), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2639), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1091), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1089), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2518), 3, + STATE(2512), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(765), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39176,7 +38805,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39194,67 +38823,67 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [13732] = 26, - ACTIONS(775), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1071), 1, - anon_sym_STAR_STAR, - ACTIONS(1079), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1087), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1093), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1215), 1, + ACTIONS(1207), 1, anon_sym_RPAREN, - STATE(952), 1, + STATE(953), 1, sym_primary_expression, - STATE(985), 1, + STATE(995), 1, sym_string, - STATE(1376), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1952), 1, sym_expression, - STATE(2532), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2639), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1091), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1089), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2518), 3, + STATE(2512), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(765), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39262,7 +38891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39280,67 +38909,67 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [13844] = 26, - ACTIONS(775), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1071), 1, - anon_sym_STAR_STAR, - ACTIONS(1079), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1087), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1093), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1217), 1, + ACTIONS(1209), 1, anon_sym_RPAREN, - STATE(952), 1, + STATE(953), 1, sym_primary_expression, - STATE(985), 1, + STATE(995), 1, sym_string, - STATE(1376), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1952), 1, sym_expression, - STATE(2532), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2639), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1091), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1089), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2518), 3, + STATE(2512), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(765), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39348,7 +38977,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39365,68 +38994,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13956] = 26, - ACTIONS(775), 1, + [13956] = 27, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(849), 1, + anon_sym_STAR, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(859), 1, anon_sym_lambda, + ACTIONS(861), 1, + anon_sym_yield, ACTIONS(1071), 1, - anon_sym_STAR_STAR, - ACTIONS(1079), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1073), 1, anon_sym_LPAREN, - ACTIONS(1087), 1, - anon_sym_STAR, - ACTIONS(1093), 1, + ACTIONS(1081), 1, anon_sym_await, - ACTIONS(1219), 1, + ACTIONS(1201), 1, anon_sym_RPAREN, - STATE(952), 1, + STATE(950), 1, sym_primary_expression, STATE(985), 1, sym_string, - STATE(1376), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1665), 1, sym_expression, - STATE(2532), 1, - sym_parenthesized_list_splat, - STATE(2639), 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(781), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1091), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + STATE(2287), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1089), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2518), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(765), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39434,7 +39064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39451,68 +39081,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14068] = 26, - ACTIONS(775), 1, + [14070] = 26, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(803), 1, + anon_sym_LPAREN, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(1071), 1, - anon_sym_STAR_STAR, - ACTIONS(1079), 1, - sym_identifier, - ACTIONS(1081), 1, - anon_sym_LPAREN, - ACTIONS(1087), 1, - anon_sym_STAR, - ACTIONS(1093), 1, + ACTIONS(821), 1, + anon_sym_yield, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1221), 1, - anon_sym_RPAREN, - STATE(952), 1, + ACTIONS(829), 1, + anon_sym_STAR, + ACTIONS(1155), 1, + sym_identifier, + ACTIONS(1211), 1, + anon_sym_RBRACK, + STATE(857), 1, sym_primary_expression, - STATE(985), 1, + STATE(969), 1, sym_string, - STATE(1376), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1716), 1, sym_expression, - STATE(2532), 1, - sym_parenthesized_list_splat, - STATE(2639), 1, + STATE(2592), 1, + sym__collection_elements, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1091), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1089), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2518), 3, + STATE(2280), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(765), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39520,7 +39150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39537,69 +39167,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14180] = 27, - ACTIONS(709), 1, + [14182] = 27, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(871), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(879), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(881), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(883), 1, + ACTIONS(861), 1, anon_sym_yield, - ACTIONS(1059), 1, - anon_sym_LPAREN, - ACTIONS(1125), 1, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1133), 1, + ACTIONS(1073), 1, + anon_sym_LPAREN, + ACTIONS(1081), 1, anon_sym_await, - ACTIONS(1211), 1, + ACTIONS(1213), 1, anon_sym_RPAREN, - STATE(956), 1, + STATE(950), 1, sym_primary_expression, - STATE(977), 1, + STATE(985), 1, sym_string, - STATE(1407), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1692), 1, + STATE(1717), 1, sym_expression, - STATE(2368), 1, + STATE(2316), 1, sym_yield, - STATE(2631), 1, - sym__collection_elements, - STATE(2712), 1, + STATE(2698), 1, sym__named_expression_lhs, + STATE(2737), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1131), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - STATE(2460), 2, + STATE(2287), 2, sym_list_splat, sym_parenthesized_list_splat, - ACTIONS(711), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1129), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 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, @@ -39607,7 +39237,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39624,68 +39254,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14294] = 26, - ACTIONS(797), 1, + [14296] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(801), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(807), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(811), 1, - anon_sym_LPAREN, - ACTIONS(825), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(827), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(829), 1, - anon_sym_yield, - ACTIONS(831), 1, - anon_sym_await, - ACTIONS(891), 1, - anon_sym_STAR, - ACTIONS(1157), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1223), 1, - anon_sym_RBRACK, - STATE(919), 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(1215), 1, + anon_sym_RPAREN, + STATE(953), 1, sym_primary_expression, - STATE(970), 1, + STATE(995), 1, sym_string, - STATE(1254), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1717), 1, + STATE(1952), 1, sym_expression, - STATE(2602), 1, - sym__collection_elements, - STATE(2626), 1, + STATE(2516), 1, + sym_parenthesized_list_splat, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(803), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(817), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(799), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(815), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2485), 3, + STATE(2512), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(787), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1689), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39693,7 +39323,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1148), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39710,68 +39340,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14406] = 26, - ACTIONS(775), 1, + [14408] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1071), 1, - anon_sym_STAR_STAR, - ACTIONS(1079), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1087), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1093), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1225), 1, + ACTIONS(1217), 1, anon_sym_RPAREN, - STATE(952), 1, + STATE(953), 1, sym_primary_expression, - STATE(985), 1, + STATE(995), 1, sym_string, - STATE(1376), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1952), 1, sym_expression, - STATE(2532), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2639), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1091), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1089), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2518), 3, + STATE(2512), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(765), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39779,7 +39409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39796,68 +39426,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14518] = 26, - ACTIONS(775), 1, + [14520] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1071), 1, - anon_sym_STAR_STAR, - ACTIONS(1079), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1087), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1093), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1227), 1, + ACTIONS(1219), 1, anon_sym_RPAREN, - STATE(952), 1, + STATE(953), 1, sym_primary_expression, - STATE(985), 1, + STATE(995), 1, sym_string, - STATE(1376), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1952), 1, sym_expression, - STATE(2532), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2639), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1091), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1089), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2518), 3, + STATE(2512), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(765), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39865,7 +39495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39882,68 +39512,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14630] = 26, - ACTIONS(775), 1, + [14632] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1071), 1, - anon_sym_STAR_STAR, - ACTIONS(1079), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1087), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1093), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1229), 1, + ACTIONS(1221), 1, anon_sym_RPAREN, - STATE(952), 1, + STATE(953), 1, sym_primary_expression, - STATE(985), 1, + STATE(995), 1, sym_string, - STATE(1376), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1952), 1, sym_expression, - STATE(2532), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2639), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1091), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1089), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2518), 3, + STATE(2512), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(765), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39951,7 +39581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39968,68 +39598,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14742] = 26, - ACTIONS(775), 1, + [14744] = 27, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(849), 1, + anon_sym_STAR, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(859), 1, anon_sym_lambda, + ACTIONS(861), 1, + anon_sym_yield, ACTIONS(1071), 1, - anon_sym_STAR_STAR, - ACTIONS(1079), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1073), 1, anon_sym_LPAREN, - ACTIONS(1087), 1, - anon_sym_STAR, - ACTIONS(1093), 1, + ACTIONS(1081), 1, anon_sym_await, - ACTIONS(1231), 1, + ACTIONS(1147), 1, anon_sym_RPAREN, - STATE(952), 1, + STATE(950), 1, sym_primary_expression, STATE(985), 1, sym_string, - STATE(1376), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1683), 1, sym_expression, - STATE(2532), 1, - sym_parenthesized_list_splat, - STATE(2639), 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(781), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1091), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + STATE(2287), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1089), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2518), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(765), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40037,7 +39668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40054,69 +39685,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14854] = 27, - ACTIONS(709), 1, + [14858] = 26, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(871), 1, - anon_sym_STAR, - ACTIONS(879), 1, + ACTIONS(803), 1, + anon_sym_LPAREN, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(881), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(883), 1, + ACTIONS(821), 1, anon_sym_yield, - ACTIONS(1059), 1, - anon_sym_LPAREN, - ACTIONS(1125), 1, - sym_identifier, - ACTIONS(1133), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1165), 1, - anon_sym_RPAREN, - STATE(956), 1, + ACTIONS(829), 1, + anon_sym_STAR, + ACTIONS(1155), 1, + sym_identifier, + ACTIONS(1223), 1, + anon_sym_RBRACK, + STATE(857), 1, sym_primary_expression, - STATE(977), 1, + STATE(969), 1, sym_string, - STATE(1407), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1687), 1, + STATE(1713), 1, sym_expression, - STATE(2343), 1, - sym_yield, - STATE(2657), 1, + STATE(2614), 1, sym__collection_elements, - STATE(2712), 1, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1131), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - STATE(2460), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(711), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1129), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 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(1787), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40124,7 +39754,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40141,68 +39771,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14968] = 26, - ACTIONS(797), 1, + [14970] = 26, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(801), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(807), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(811), 1, + ACTIONS(803), 1, anon_sym_LPAREN, - ACTIONS(825), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(827), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(829), 1, + ACTIONS(821), 1, anon_sym_yield, - ACTIONS(831), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(891), 1, + ACTIONS(829), 1, anon_sym_STAR, - ACTIONS(1157), 1, + ACTIONS(1155), 1, sym_identifier, - ACTIONS(1233), 1, + ACTIONS(1225), 1, anon_sym_RBRACK, - STATE(919), 1, + STATE(857), 1, sym_primary_expression, - STATE(970), 1, + STATE(969), 1, sym_string, - STATE(1254), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1715), 1, + STATE(1714), 1, sym_expression, - STATE(2626), 1, - sym__named_expression_lhs, - STATE(2734), 1, + STATE(2700), 1, sym__collection_elements, + STATE(2716), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(803), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(817), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(799), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(815), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2485), 3, + STATE(2280), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(787), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1689), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40210,7 +39840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1148), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40227,68 +39857,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15080] = 26, - ACTIONS(775), 1, + [15082] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1071), 1, - anon_sym_STAR_STAR, - ACTIONS(1079), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1087), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1093), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1235), 1, + ACTIONS(1227), 1, anon_sym_RPAREN, - STATE(952), 1, + STATE(953), 1, sym_primary_expression, - STATE(985), 1, + STATE(995), 1, sym_string, - STATE(1376), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1952), 1, sym_expression, - STATE(2532), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2639), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1091), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1089), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2518), 3, + STATE(2512), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(765), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40296,7 +39926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40313,68 +39943,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15192] = 26, - ACTIONS(775), 1, + [15194] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1071), 1, - anon_sym_STAR_STAR, - ACTIONS(1079), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1087), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1093), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1237), 1, + ACTIONS(1229), 1, anon_sym_RPAREN, - STATE(952), 1, + STATE(953), 1, sym_primary_expression, - STATE(985), 1, + STATE(995), 1, sym_string, - STATE(1376), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1952), 1, sym_expression, - STATE(2532), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2639), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1091), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1089), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2518), 3, + STATE(2512), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(765), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40382,7 +40012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40399,68 +40029,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15304] = 26, - ACTIONS(775), 1, + [15306] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1071), 1, - anon_sym_STAR_STAR, - ACTIONS(1079), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1087), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1093), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1239), 1, + ACTIONS(1231), 1, anon_sym_RPAREN, - STATE(952), 1, + STATE(953), 1, sym_primary_expression, - STATE(985), 1, + STATE(995), 1, sym_string, - STATE(1376), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1952), 1, sym_expression, - STATE(2532), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2639), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1091), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1089), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2518), 3, + STATE(2512), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(765), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40468,7 +40098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40485,68 +40115,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15416] = 26, - ACTIONS(775), 1, + [15418] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1071), 1, - anon_sym_STAR_STAR, - ACTIONS(1079), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1087), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1093), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1233), 1, anon_sym_RPAREN, - STATE(952), 1, + STATE(953), 1, sym_primary_expression, - STATE(985), 1, + STATE(995), 1, sym_string, - STATE(1376), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1952), 1, sym_expression, - STATE(2532), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2639), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1091), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1089), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2518), 3, + STATE(2512), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(765), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40554,7 +40184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40571,69 +40201,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15528] = 27, - ACTIONS(709), 1, + [15530] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(871), 1, - anon_sym_STAR, - ACTIONS(879), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(881), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(883), 1, - anon_sym_yield, - ACTIONS(1059), 1, - anon_sym_LPAREN, - ACTIONS(1125), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1133), 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(1243), 1, + ACTIONS(1235), 1, anon_sym_RPAREN, - STATE(956), 1, + STATE(953), 1, sym_primary_expression, - STATE(977), 1, + STATE(995), 1, sym_string, - STATE(1407), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1699), 1, + STATE(1952), 1, sym_expression, - STATE(2407), 1, - sym_yield, - STATE(2712), 1, + STATE(2516), 1, + sym_parenthesized_list_splat, + STATE(2638), 1, sym__named_expression_lhs, - STATE(2766), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1131), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - STATE(2460), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(711), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1129), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 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(1787), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40641,7 +40270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40659,67 +40288,67 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [15642] = 26, - ACTIONS(797), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(801), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(807), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(811), 1, - anon_sym_LPAREN, - ACTIONS(825), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(827), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(829), 1, - anon_sym_yield, - ACTIONS(831), 1, - anon_sym_await, - ACTIONS(891), 1, - anon_sym_STAR, - ACTIONS(1157), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1245), 1, - anon_sym_RBRACK, - STATE(919), 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, + anon_sym_RPAREN, + STATE(953), 1, sym_primary_expression, - STATE(970), 1, + STATE(995), 1, sym_string, - STATE(1254), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1669), 1, + STATE(1952), 1, sym_expression, - STATE(2626), 1, + STATE(2516), 1, + sym_parenthesized_list_splat, + STATE(2638), 1, sym__named_expression_lhs, - STATE(2750), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(803), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(817), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(799), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(815), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2485), 3, + STATE(2512), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(787), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1689), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40727,7 +40356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1148), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40745,67 +40374,67 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [15754] = 26, - ACTIONS(775), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1071), 1, - anon_sym_STAR_STAR, - ACTIONS(1079), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1087), 1, + ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1093), 1, + ACTIONS(1067), 1, + anon_sym_STAR_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1247), 1, + ACTIONS(1239), 1, anon_sym_RPAREN, - STATE(952), 1, + STATE(953), 1, sym_primary_expression, - STATE(985), 1, + STATE(995), 1, sym_string, - STATE(1376), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1952), 1, sym_expression, - STATE(2532), 1, + STATE(2516), 1, sym_parenthesized_list_splat, - STATE(2639), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1091), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1089), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2518), 3, + STATE(2512), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(765), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40813,7 +40442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40830,68 +40459,74 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15866] = 19, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(656), 1, + [15866] = 25, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(660), 1, - anon_sym_STAR, - ACTIONS(666), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(670), 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, - STATE(1003), 1, - sym_string, - STATE(1105), 1, + ACTIONS(1241), 1, + anon_sym_RPAREN, + ACTIONS(1243), 1, + anon_sym_STAR, + ACTIONS(1247), 1, + anon_sym_lambda, + STATE(950), 1, sym_primary_expression, - STATE(1300), 1, + STATE(985), 1, + sym_string, + STATE(1320), 1, sym_list_splat_pattern, + STATE(1822), 1, + sym_expression, + STATE(2698), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(314), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(664), 2, + ACTIONS(1077), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(308), 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(662), 3, - anon_sym_print, + ACTIONS(1245), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - ACTIONS(312), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(316), 5, + anon_sym_for, + ACTIONS(777), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(269), 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(1392), 16, + STATE(1807), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40908,53 +40543,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15963] = 25, - ACTIONS(789), 1, + [15975] = 25, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(797), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(801), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(807), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(831), 1, - anon_sym_await, - ACTIONS(1157), 1, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1249), 1, + ACTIONS(1081), 1, + anon_sym_await, + ACTIONS(1243), 1, anon_sym_STAR, - ACTIONS(1253), 1, - anon_sym_RBRACK, - ACTIONS(1255), 1, + ACTIONS(1247), 1, anon_sym_lambda, - STATE(919), 1, + ACTIONS(1249), 1, + anon_sym_RPAREN, + STATE(950), 1, sym_primary_expression, - STATE(970), 1, + STATE(985), 1, sym_string, - STATE(1254), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1795), 1, + STATE(1822), 1, sym_expression, - STATE(2626), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(803), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(815), 2, + ACTIONS(1077), 2, anon_sym_print, anon_sym_exec, - ACTIONS(817), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - STATE(2100), 2, + STATE(2075), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(799), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -40962,12 +40597,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(787), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1689), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40975,7 +40610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1148), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40992,74 +40627,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16072] = 25, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(686), 1, + [16084] = 19, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(692), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(853), 1, - anon_sym_yield, - ACTIONS(1015), 1, - anon_sym_not, - ACTIONS(1017), 1, - anon_sym_lambda, - ACTIONS(1139), 1, - sym_identifier, - ACTIONS(1149), 1, - anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(1259), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(1261), 1, - anon_sym_RBRACE, - STATE(888), 1, - sym_primary_expression, - STATE(961), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(662), 1, + anon_sym_await, + STATE(984), 1, sym_string, - STATE(1212), 1, + STATE(1116), 1, + sym_primary_expression, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1923), 1, - sym_expression, - STATE(2787), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(688), 2, + ACTIONS(267), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(1147), 2, + ACTIONS(656), 2, anon_sym_match, anon_sym_type, - ACTIONS(684), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1145), 3, + ACTIONS(654), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2508), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(672), 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(1776), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1251), 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, @@ -41077,65 +40706,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [16181] = 25, - ACTIONS(682), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(692), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(853), 1, + ACTIONS(861), 1, anon_sym_yield, - ACTIONS(1015), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1139), 1, - sym_identifier, - ACTIONS(1149), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1259), 1, + ACTIONS(1253), 1, + sym_identifier, + ACTIONS(1255), 1, + anon_sym_RPAREN, + ACTIONS(1257), 1, anon_sym_STAR, - ACTIONS(1263), 1, - anon_sym_RBRACE, - STATE(888), 1, + STATE(953), 1, sym_primary_expression, - STATE(961), 1, + STATE(995), 1, sym_string, - STATE(1212), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1923), 1, + STATE(1882), 1, sym_expression, - STATE(2787), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(688), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1147), 2, + ACTIONS(1029), 2, anon_sym_match, anon_sym_type, - ACTIONS(684), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1145), 3, + ACTIONS(1027), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2508), 3, + STATE(2507), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(672), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41143,7 +40772,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1251), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41161,65 +40790,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [16290] = 25, - ACTIONS(723), 1, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(741), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(833), 1, - sym_identifier, - ACTIONS(849), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(855), 1, + ACTIONS(1071), 1, + sym_identifier, + ACTIONS(1081), 1, anon_sym_await, - ACTIONS(1265), 1, + ACTIONS(1243), 1, anon_sym_STAR, - ACTIONS(1269), 1, - anon_sym_RBRACE, - ACTIONS(1271), 1, + ACTIONS(1247), 1, anon_sym_lambda, - STATE(880), 1, + ACTIONS(1259), 1, + anon_sym_RPAREN, + STATE(950), 1, sym_primary_expression, - STATE(963), 1, + STATE(985), 1, sym_string, - STATE(1213), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1794), 1, + STATE(1822), 1, sym_expression, - STATE(2646), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(737), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(841), 2, + ACTIONS(1077), 2, anon_sym_print, anon_sym_exec, - ACTIONS(843), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - STATE(2045), 2, + STATE(2075), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(733), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1267), 3, + ACTIONS(1261), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(721), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41227,7 +40856,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1190), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41245,65 +40874,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [16399] = 25, - ACTIONS(723), 1, - anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(741), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(833), 1, - sym_identifier, - ACTIONS(849), 1, + ACTIONS(861), 1, + anon_sym_yield, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(855), 1, + ACTIONS(1037), 1, + anon_sym_lambda, + ACTIONS(1039), 1, anon_sym_await, + ACTIONS(1055), 1, + anon_sym_LPAREN, ACTIONS(1253), 1, - anon_sym_RBRACE, - ACTIONS(1265), 1, + sym_identifier, + ACTIONS(1257), 1, anon_sym_STAR, - ACTIONS(1271), 1, - anon_sym_lambda, - STATE(880), 1, + ACTIONS(1263), 1, + anon_sym_RPAREN, + STATE(953), 1, sym_primary_expression, - STATE(963), 1, + STATE(995), 1, sym_string, - STATE(1213), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1794), 1, + STATE(1882), 1, sym_expression, - STATE(2646), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(737), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(841), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(843), 2, + ACTIONS(1029), 2, anon_sym_match, anon_sym_type, - STATE(2045), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(733), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1251), 3, - anon_sym_if, + ACTIONS(1027), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(721), 4, + 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(1767), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41311,7 +40940,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1190), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41329,65 +40958,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [16508] = 25, - ACTIONS(775), 1, - anon_sym_LBRACK, ACTIONS(779), 1, + anon_sym_LPAREN, + ACTIONS(789), 1, + anon_sym_LBRACK, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1053), 1, - anon_sym_lambda, ACTIONS(1071), 1, - anon_sym_STAR_STAR, - ACTIONS(1079), 1, sym_identifier, ACTIONS(1081), 1, - anon_sym_LPAREN, - ACTIONS(1087), 1, - anon_sym_STAR, - ACTIONS(1093), 1, anon_sym_await, - STATE(952), 1, + ACTIONS(1243), 1, + anon_sym_STAR, + ACTIONS(1247), 1, + anon_sym_lambda, + ACTIONS(1265), 1, + anon_sym_RPAREN, + STATE(950), 1, sym_primary_expression, STATE(985), 1, sym_string, - STATE(1376), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1822), 1, sym_expression, - STATE(2532), 1, - sym_parenthesized_list_splat, - STATE(2639), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1091), 2, + ACTIONS(1077), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 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(1089), 3, - anon_sym_print, + ACTIONS(1267), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - STATE(2518), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(765), 4, + anon_sym_for, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41395,7 +41024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41413,65 +41042,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [16617] = 25, - ACTIONS(699), 1, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(709), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(1125), 1, - sym_identifier, - ACTIONS(1133), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1273), 1, - anon_sym_RPAREN, - ACTIONS(1275), 1, + ACTIONS(1155), 1, + sym_identifier, + ACTIONS(1249), 1, + anon_sym_RBRACK, + ACTIONS(1269), 1, anon_sym_STAR, - ACTIONS(1279), 1, + ACTIONS(1271), 1, anon_sym_lambda, - STATE(956), 1, + STATE(857), 1, sym_primary_expression, - STATE(977), 1, + STATE(969), 1, sym_string, - STATE(1407), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1803), 1, + STATE(1814), 1, sym_expression, - STATE(2712), 1, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1129), 2, + ACTIONS(807), 2, anon_sym_print, anon_sym_exec, - ACTIONS(1131), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - STATE(2032), 2, + STATE(2072), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(711), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1277), 3, + ACTIONS(1251), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(697), 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, @@ -41479,7 +41108,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41497,65 +41126,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [16726] = 25, - ACTIONS(699), 1, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(709), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(879), 1, - anon_sym_not, - ACTIONS(1125), 1, + ACTIONS(871), 1, sym_identifier, - ACTIONS(1133), 1, + ACTIONS(887), 1, + anon_sym_not, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1259), 1, + anon_sym_RBRACE, + ACTIONS(1273), 1, anon_sym_STAR, - ACTIONS(1279), 1, + ACTIONS(1275), 1, anon_sym_lambda, - ACTIONS(1281), 1, - anon_sym_RPAREN, - STATE(956), 1, + STATE(893), 1, sym_primary_expression, - STATE(977), 1, + STATE(958), 1, sym_string, - STATE(1407), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1803), 1, + STATE(1820), 1, sym_expression, - STATE(2712), 1, + STATE(2645), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1129), 2, + ACTIONS(879), 2, anon_sym_print, anon_sym_exec, - ACTIONS(1131), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - STATE(2032), 2, + STATE(2094), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(711), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1283), 3, + ACTIONS(1261), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(697), 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, @@ -41563,7 +41192,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41581,65 +41210,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [16835] = 25, - ACTIONS(699), 1, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(709), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(879), 1, - anon_sym_not, - ACTIONS(1125), 1, + ACTIONS(871), 1, sym_identifier, - ACTIONS(1133), 1, + ACTIONS(887), 1, + anon_sym_not, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(1269), 1, - anon_sym_RPAREN, - ACTIONS(1275), 1, + ACTIONS(1241), 1, + anon_sym_RBRACE, + ACTIONS(1273), 1, anon_sym_STAR, - ACTIONS(1279), 1, + ACTIONS(1275), 1, anon_sym_lambda, - STATE(956), 1, + STATE(893), 1, sym_primary_expression, - STATE(977), 1, + STATE(958), 1, sym_string, - STATE(1407), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1803), 1, + STATE(1820), 1, sym_expression, - STATE(2712), 1, + STATE(2645), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1129), 2, + ACTIONS(879), 2, anon_sym_print, anon_sym_exec, - ACTIONS(1131), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - STATE(2032), 2, + STATE(2094), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(711), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1267), 3, + ACTIONS(1245), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(697), 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, @@ -41647,7 +41276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41665,65 +41294,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [16944] = 25, - ACTIONS(723), 1, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(741), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(833), 1, + ACTIONS(871), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(855), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(1265), 1, + ACTIONS(1249), 1, + anon_sym_RBRACE, + ACTIONS(1273), 1, anon_sym_STAR, - ACTIONS(1271), 1, + ACTIONS(1275), 1, anon_sym_lambda, - ACTIONS(1281), 1, - anon_sym_RBRACE, - STATE(880), 1, + STATE(893), 1, sym_primary_expression, - STATE(963), 1, + STATE(958), 1, sym_string, - STATE(1213), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1794), 1, + STATE(1820), 1, sym_expression, - STATE(2646), 1, + STATE(2645), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(737), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(841), 2, + ACTIONS(879), 2, anon_sym_print, anon_sym_exec, - ACTIONS(843), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - STATE(2045), 2, + STATE(2094), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(733), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1283), 3, + ACTIONS(1251), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(721), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41731,7 +41360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1190), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41749,65 +41378,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [17053] = 25, - ACTIONS(753), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(829), 1, + ACTIONS(891), 1, anon_sym_yield, - ACTIONS(993), 1, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1135), 1, + sym_identifier, + ACTIONS(1145), 1, anon_sym_await, ACTIONS(1263), 1, - anon_sym_RBRACK, - ACTIONS(1285), 1, - sym_identifier, - ACTIONS(1287), 1, + anon_sym_RBRACE, + ACTIONS(1277), 1, anon_sym_LPAREN, - ACTIONS(1289), 1, + ACTIONS(1279), 1, anon_sym_STAR, - STATE(972), 1, + STATE(901), 1, sym_primary_expression, - STATE(1098), 1, + STATE(975), 1, sym_string, - STATE(1423), 1, + STATE(1197), 1, sym_list_splat_pattern, - STATE(1960), 1, + STATE(1968), 1, sym_expression, - STATE(2595), 1, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2494), 3, + STATE(2529), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(743), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41815,7 +41444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41832,64 +41461,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17162] = 23, - ACTIONS(674), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, + [17162] = 25, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(692), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1139), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1149), 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(888), 1, + STATE(953), 1, sym_primary_expression, - STATE(961), 1, + STATE(995), 1, sym_string, - STATE(1212), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1761), 1, + STATE(1952), 1, sym_expression, - STATE(2787), 1, + STATE(2516), 1, + sym_parenthesized_list_splat, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(688), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1147), 2, + ACTIONS(1065), 2, anon_sym_match, anon_sym_type, - ACTIONS(684), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1145), 3, + ACTIONS(1063), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(672), 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(1291), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1776), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41897,7 +41528,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1251), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41914,66 +41545,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17267] = 25, - ACTIONS(775), 1, + [17271] = 25, + ACTIONS(691), 1, + anon_sym_LPAREN, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(883), 1, - anon_sym_yield, - ACTIONS(1051), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(1053), 1, - anon_sym_lambda, - ACTIONS(1055), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1081), 1, - anon_sym_LPAREN, - ACTIONS(1261), 1, - anon_sym_RPAREN, - ACTIONS(1293), 1, + ACTIONS(1155), 1, sym_identifier, - ACTIONS(1295), 1, + ACTIONS(1265), 1, + anon_sym_RBRACK, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(952), 1, + ACTIONS(1271), 1, + anon_sym_lambda, + STATE(857), 1, sym_primary_expression, - STATE(985), 1, + STATE(969), 1, sym_string, - STATE(1376), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1910), 1, + STATE(1814), 1, sym_expression, - STATE(2639), 1, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1045), 2, + ACTIONS(807), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 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(1043), 3, - anon_sym_print, + ACTIONS(1267), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - STATE(2523), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(765), 4, + anon_sym_for, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41981,7 +41612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41998,66 +41629,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17376] = 25, - ACTIONS(775), 1, + [17380] = 25, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(883), 1, + ACTIONS(821), 1, anon_sym_yield, - ACTIONS(1051), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1055), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1081), 1, - anon_sym_LPAREN, ACTIONS(1263), 1, - anon_sym_RPAREN, - ACTIONS(1293), 1, + anon_sym_RBRACK, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1295), 1, + ACTIONS(1283), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(952), 1, + STATE(963), 1, sym_primary_expression, - STATE(985), 1, + STATE(1081), 1, sym_string, - STATE(1376), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1910), 1, + STATE(1954), 1, sym_expression, - STATE(2639), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1045), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1043), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2523), 3, + STATE(2574), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(765), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42065,7 +41696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42082,66 +41713,148 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17485] = 25, - ACTIONS(753), 1, + [17489] = 23, + ACTIONS(666), 1, + anon_sym_LPAREN, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(829), 1, + 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(1773), 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, + 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, + 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, + [17594] = 25, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, + anon_sym_LBRACE, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(821), 1, anon_sym_yield, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1261), 1, + ACTIONS(1255), 1, anon_sym_RBRACK, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1287), 1, + ACTIONS(1283), 1, anon_sym_LPAREN, - ACTIONS(1289), 1, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1960), 1, + STATE(1954), 1, sym_expression, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2494), 3, + STATE(2574), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42149,7 +41862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42166,64 +41879,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17594] = 23, - ACTIONS(674), 1, + [17703] = 23, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(692), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(977), 1, anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(1139), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1149), 1, + ACTIONS(1145), 1, anon_sym_await, - STATE(888), 1, + STATE(901), 1, sym_primary_expression, - STATE(961), 1, + STATE(975), 1, sym_string, - STATE(1212), 1, + STATE(1197), 1, sym_list_splat_pattern, - STATE(1761), 1, + STATE(1773), 1, sym_expression, - STATE(2787), 1, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(688), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(1147), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(684), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1145), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(672), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1297), 5, + ACTIONS(1289), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - STATE(1776), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42231,7 +41944,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1251), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42248,66 +41961,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17699] = 25, - ACTIONS(723), 1, + [17808] = 25, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(741), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(833), 1, + ACTIONS(871), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(855), 1, + ACTIONS(893), 1, anon_sym_await, ACTIONS(1265), 1, + anon_sym_RBRACE, + ACTIONS(1273), 1, anon_sym_STAR, - ACTIONS(1271), 1, + ACTIONS(1275), 1, anon_sym_lambda, - ACTIONS(1273), 1, - anon_sym_RBRACE, - STATE(880), 1, + STATE(893), 1, sym_primary_expression, - STATE(963), 1, + STATE(958), 1, sym_string, - STATE(1213), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1794), 1, + STATE(1820), 1, sym_expression, - STATE(2646), 1, + STATE(2645), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(737), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(841), 2, + ACTIONS(879), 2, anon_sym_print, anon_sym_exec, - ACTIONS(843), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - STATE(2045), 2, + STATE(2094), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(733), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1277), 3, + ACTIONS(1267), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(721), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42315,7 +42028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1190), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42332,66 +42045,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17808] = 25, - ACTIONS(789), 1, + [17917] = 25, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(797), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(801), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(807), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(831), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1157), 1, + ACTIONS(1155), 1, sym_identifier, - ACTIONS(1249), 1, + ACTIONS(1259), 1, + anon_sym_RBRACK, + ACTIONS(1269), 1, anon_sym_STAR, - ACTIONS(1255), 1, + ACTIONS(1271), 1, anon_sym_lambda, - ACTIONS(1281), 1, - anon_sym_RBRACK, - STATE(919), 1, + STATE(857), 1, sym_primary_expression, - STATE(970), 1, + STATE(969), 1, sym_string, - STATE(1254), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1795), 1, + STATE(1814), 1, sym_expression, - STATE(2626), 1, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(803), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(815), 2, + ACTIONS(807), 2, anon_sym_print, anon_sym_exec, - ACTIONS(817), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - STATE(2100), 2, + STATE(2072), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(799), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1283), 3, + ACTIONS(1261), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(787), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1689), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42399,7 +42112,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1148), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42416,66 +42129,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17917] = 25, - ACTIONS(789), 1, + [18026] = 25, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(797), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(801), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(807), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(831), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1157), 1, + ACTIONS(1155), 1, sym_identifier, - ACTIONS(1249), 1, + ACTIONS(1241), 1, + anon_sym_RBRACK, + ACTIONS(1269), 1, anon_sym_STAR, - ACTIONS(1255), 1, + ACTIONS(1271), 1, anon_sym_lambda, - ACTIONS(1273), 1, - anon_sym_RBRACK, - STATE(919), 1, + STATE(857), 1, sym_primary_expression, - STATE(970), 1, + STATE(969), 1, sym_string, - STATE(1254), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1795), 1, + STATE(1814), 1, sym_expression, - STATE(2626), 1, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(803), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(815), 2, + ACTIONS(807), 2, anon_sym_print, anon_sym_exec, - ACTIONS(817), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - STATE(2100), 2, + STATE(2072), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(799), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1277), 3, + ACTIONS(1245), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(787), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1689), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42483,7 +42196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1148), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42500,66 +42213,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18026] = 25, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(797), 1, + [18135] = 25, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(801), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(807), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(891), 1, + anon_sym_yield, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(831), 1, - anon_sym_await, - ACTIONS(1157), 1, + ACTIONS(987), 1, + anon_sym_lambda, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1249), 1, - anon_sym_STAR, + ACTIONS(1145), 1, + anon_sym_await, ACTIONS(1255), 1, - anon_sym_lambda, - ACTIONS(1269), 1, - anon_sym_RBRACK, - STATE(919), 1, + anon_sym_RBRACE, + ACTIONS(1277), 1, + anon_sym_LPAREN, + ACTIONS(1279), 1, + anon_sym_STAR, + STATE(901), 1, sym_primary_expression, - STATE(970), 1, + STATE(975), 1, sym_string, - STATE(1254), 1, + STATE(1197), 1, sym_list_splat_pattern, - STATE(1795), 1, + STATE(1968), 1, sym_expression, - STATE(2626), 1, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(803), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(815), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(817), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - STATE(2100), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(799), 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(787), 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(1689), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42567,7 +42280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1148), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42584,66 +42297,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18135] = 25, - ACTIONS(699), 1, - anon_sym_LPAREN, - ACTIONS(709), 1, - anon_sym_LBRACK, - ACTIONS(713), 1, + [18244] = 25, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(719), 1, - sym_string_start, - ACTIONS(879), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1125), 1, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, sym_identifier, - ACTIONS(1133), 1, + ACTIONS(398), 1, anon_sym_await, - ACTIONS(1253), 1, - anon_sym_RPAREN, - ACTIONS(1275), 1, + ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(637), 1, + anon_sym_LBRACK, + ACTIONS(1291), 1, + anon_sym_from, + ACTIONS(1293), 1, anon_sym_STAR, - ACTIONS(1279), 1, - anon_sym_lambda, - STATE(956), 1, + STATE(845), 1, sym_primary_expression, - STATE(977), 1, + STATE(954), 1, sym_string, - STATE(1407), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1803), 1, + STATE(1793), 1, sym_expression, - STATE(2712), 1, + STATE(2523), 1, + sym_expression_list, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1129), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(1131), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - STATE(2032), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(711), 3, + ACTIONS(1139), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1251), 3, - anon_sym_if, + ACTIONS(383), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(697), 4, + anon_sym_exec, + 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, @@ -42651,7 +42363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42668,65 +42380,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18244] = 25, - ACTIONS(303), 1, + [18352] = 25, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(660), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(845), 1, + ACTIONS(883), 1, anon_sym_STAR_STAR, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1299), 1, + ACTIONS(1295), 1, anon_sym_RBRACE, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2006), 1, + STATE(2069), 1, sym_expression, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - STATE(2535), 2, + STATE(2498), 2, sym_dictionary_splat, sym_pair, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42734,7 +42446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42751,65 +42463,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18352] = 25, - ACTIONS(303), 1, + [18460] = 25, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(660), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(845), 1, + ACTIONS(883), 1, anon_sym_STAR_STAR, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1301), 1, + ACTIONS(1297), 1, anon_sym_RBRACE, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2006), 1, + STATE(2069), 1, sym_expression, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - STATE(2535), 2, + STATE(2498), 2, sym_dictionary_splat, sym_pair, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42817,7 +42529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42834,65 +42546,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18460] = 25, - ACTIONS(303), 1, + [18568] = 24, + ACTIONS(674), 1, + anon_sym_LBRACK, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(310), 1, - anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_await, - ACTIONS(320), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(404), 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(656), 1, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1277), 1, anon_sym_LPAREN, - ACTIONS(660), 1, + ACTIONS(1279), 1, anon_sym_STAR, - ACTIONS(666), 1, - anon_sym_LBRACK, - ACTIONS(845), 1, - anon_sym_STAR_STAR, - ACTIONS(1077), 1, - anon_sym_not, - ACTIONS(1303), 1, - anon_sym_RBRACE, - STATE(955), 1, + STATE(901), 1, sym_primary_expression, - STATE(1003), 1, + STATE(975), 1, sym_string, - STATE(1300), 1, + STATE(1197), 1, sym_list_splat_pattern, - STATE(2006), 1, + STATE(1968), 1, sym_expression, - STATE(2772), 1, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(314), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - STATE(2535), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(282), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(1143), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 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(1737), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42900,7 +42611,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42917,65 +42628,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18568] = 25, - ACTIONS(303), 1, + [18674] = 25, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(660), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(845), 1, + ACTIONS(883), 1, anon_sym_STAR_STAR, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1305), 1, + ACTIONS(1299), 1, anon_sym_RBRACE, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2006), 1, + STATE(2069), 1, sym_expression, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - STATE(2535), 2, + STATE(2498), 2, sym_dictionary_splat, sym_pair, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42983,7 +42694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43000,64 +42711,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18676] = 24, - ACTIONS(682), 1, + [18782] = 24, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(692), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(853), 1, + ACTIONS(861), 1, anon_sym_yield, - ACTIONS(1015), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1139), 1, - sym_identifier, - ACTIONS(1149), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1259), 1, + ACTIONS(1253), 1, + sym_identifier, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(888), 1, + STATE(953), 1, sym_primary_expression, - STATE(961), 1, + STATE(995), 1, sym_string, - STATE(1212), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1923), 1, + STATE(1882), 1, sym_expression, - STATE(2787), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(688), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1147), 2, + ACTIONS(1029), 2, anon_sym_match, anon_sym_type, - ACTIONS(684), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1145), 3, + ACTIONS(1027), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2508), 3, + STATE(2507), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(672), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43065,7 +42776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1251), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43082,65 +42793,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18782] = 25, - ACTIONS(303), 1, + [18888] = 25, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(721), 1, + anon_sym_LBRACK, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(731), 1, + sym_string_start, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(404), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(656), 1, - anon_sym_LPAREN, - ACTIONS(660), 1, + ACTIONS(1301), 1, + anon_sym_from, + ACTIONS(1303), 1, anon_sym_STAR, - ACTIONS(666), 1, - anon_sym_LBRACK, - ACTIONS(845), 1, - anon_sym_STAR_STAR, - ACTIONS(1077), 1, - anon_sym_not, - ACTIONS(1307), 1, - anon_sym_RBRACE, - STATE(955), 1, + STATE(953), 1, sym_primary_expression, - STATE(1003), 1, + STATE(995), 1, sym_string, - STATE(1300), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(2006), 1, + STATE(1857), 1, sym_expression, - STATE(2772), 1, + STATE(2549), 1, + sym_expression_list, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(314), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - STATE(2535), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(282), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(308), 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(316), 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(1737), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43148,7 +42859,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43165,65 +42876,148 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18890] = 25, - ACTIONS(303), 1, + [18996] = 25, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1003), 1, + anon_sym_not, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(320), 1, + 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(995), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(755), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1748), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1441), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [19104] = 25, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(306), 1, + anon_sym_lambda, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(660), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(845), 1, + ACTIONS(883), 1, anon_sym_STAR_STAR, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, ACTIONS(1309), 1, anon_sym_RBRACE, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2006), 1, + STATE(2069), 1, sym_expression, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - STATE(2535), 2, + STATE(2498), 2, sym_dictionary_splat, sym_pair, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43231,7 +43025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43248,65 +43042,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18998] = 25, - ACTIONS(303), 1, + [19212] = 25, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(660), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(845), 1, + ACTIONS(883), 1, anon_sym_STAR_STAR, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, ACTIONS(1311), 1, anon_sym_RBRACE, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2006), 1, + STATE(2069), 1, sym_expression, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - STATE(2535), 2, + STATE(2498), 2, sym_dictionary_splat, sym_pair, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43314,7 +43108,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43331,65 +43125,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19106] = 25, - ACTIONS(303), 1, + [19320] = 25, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(660), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(845), 1, + ACTIONS(883), 1, anon_sym_STAR_STAR, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, ACTIONS(1313), 1, anon_sym_RBRACE, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2006), 1, + STATE(2069), 1, sym_expression, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - STATE(2535), 2, + STATE(2498), 2, sym_dictionary_splat, sym_pair, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43397,7 +43191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43414,7 +43208,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19214] = 25, + [19428] = 25, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -43423,29 +43217,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym_string_start, - ACTIONS(379), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(402), 1, + ACTIONS(398), 1, anon_sym_await, - ACTIONS(637), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(645), 1, + ACTIONS(637), 1, anon_sym_LBRACK, + ACTIONS(1293), 1, + anon_sym_STAR, ACTIONS(1317), 1, anon_sym_from, - ACTIONS(1319), 1, - anon_sym_STAR, - STATE(853), 1, + STATE(845), 1, sym_primary_expression, - STATE(953), 1, + STATE(954), 1, sym_string, - STATE(1049), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1760), 1, + STATE(1775), 1, sym_expression, - STATE(2265), 1, + STATE(2278), 1, sym_expression_list, - STATE(2724), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -43453,7 +43247,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(391), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, ACTIONS(1315), 2, @@ -43463,7 +43257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(387), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -43472,7 +43266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1659), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43480,7 +43274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1052), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43497,65 +43291,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19322] = 25, - ACTIONS(303), 1, + [19536] = 25, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(660), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(845), 1, + ACTIONS(883), 1, anon_sym_STAR_STAR, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1321), 1, + ACTIONS(1319), 1, anon_sym_RBRACE, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2006), 1, + STATE(2069), 1, sym_expression, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - STATE(2535), 2, + STATE(2498), 2, sym_dictionary_splat, sym_pair, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43563,7 +43357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43580,64 +43374,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19430] = 24, - ACTIONS(775), 1, - anon_sym_LBRACK, - ACTIONS(779), 1, + [19644] = 25, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(785), 1, - sym_string_start, - ACTIONS(883), 1, - anon_sym_yield, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1055), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(1081), 1, - anon_sym_LPAREN, - ACTIONS(1293), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, sym_identifier, - ACTIONS(1295), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(652), 1, anon_sym_STAR, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(883), 1, + anon_sym_STAR_STAR, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1321), 1, + anon_sym_RBRACE, STATE(952), 1, sym_primary_expression, - STATE(985), 1, + STATE(984), 1, sym_string, - STATE(1376), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1910), 1, + STATE(2069), 1, sym_expression, - STATE(2639), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, - sym_ellipsis, - sym_float, - ACTIONS(1045), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1043), 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(2523), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(765), 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(1721), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43645,7 +43440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43662,65 +43457,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19536] = 25, - ACTIONS(303), 1, + [19752] = 25, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(660), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(845), 1, + ACTIONS(883), 1, anon_sym_STAR_STAR, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, ACTIONS(1323), 1, anon_sym_RBRACE, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2006), 1, + STATE(2069), 1, sym_expression, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - STATE(2535), 2, + STATE(2498), 2, sym_dictionary_splat, sym_pair, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43728,7 +43523,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43745,65 +43540,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19644] = 25, - ACTIONS(303), 1, + [19860] = 25, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(660), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(845), 1, + ACTIONS(883), 1, anon_sym_STAR_STAR, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, ACTIONS(1325), 1, anon_sym_RBRACE, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2006), 1, + STATE(2069), 1, sym_expression, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - STATE(2535), 2, + STATE(2498), 2, sym_dictionary_splat, sym_pair, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43811,7 +43606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43828,65 +43623,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19752] = 25, - ACTIONS(303), 1, + [19968] = 25, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(660), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(845), 1, + ACTIONS(883), 1, anon_sym_STAR_STAR, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, ACTIONS(1327), 1, anon_sym_RBRACE, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2006), 1, + STATE(2069), 1, sym_expression, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - STATE(2535), 2, + STATE(2498), 2, sym_dictionary_splat, sym_pair, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43894,7 +43689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43911,65 +43706,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19860] = 25, - ACTIONS(67), 1, + [20076] = 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(379), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(402), 1, - anon_sym_await, - ACTIONS(637), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(645), 1, - anon_sym_LBRACK, - ACTIONS(1319), 1, + ACTIONS(652), 1, anon_sym_STAR, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(883), 1, + anon_sym_STAR_STAR, + ACTIONS(1051), 1, + anon_sym_not, ACTIONS(1329), 1, - anon_sym_from, - STATE(853), 1, + anon_sym_RBRACE, + STATE(952), 1, sym_primary_expression, - STATE(953), 1, + STATE(984), 1, sym_string, - STATE(1049), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1799), 1, + STATE(2069), 1, sym_expression, - STATE(2548), 1, - sym_expression_list, - STATE(2724), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(391), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(1143), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(387), 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(1659), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43977,7 +43772,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1052), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43994,147 +43789,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19968] = 25, - ACTIONS(303), 1, + [20184] = 25, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(660), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(845), 1, + ACTIONS(883), 1, anon_sym_STAR_STAR, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, ACTIONS(1331), 1, anon_sym_RBRACE, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2006), 1, + STATE(2069), 1, sym_expression, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - STATE(2535), 2, + STATE(2498), 2, sym_dictionary_splat, sym_pair, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(316), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1737), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1392), 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, - [20076] = 24, - ACTIONS(753), 1, - anon_sym_LBRACK, - ACTIONS(757), 1, - anon_sym_LBRACE, - ACTIONS(763), 1, - sym_string_start, - ACTIONS(829), 1, - anon_sym_yield, - ACTIONS(993), 1, - anon_sym_not, - ACTIONS(995), 1, - anon_sym_lambda, - ACTIONS(997), 1, - anon_sym_await, - ACTIONS(1285), 1, - sym_identifier, - ACTIONS(1287), 1, - anon_sym_LPAREN, - ACTIONS(1289), 1, - anon_sym_STAR, - STATE(972), 1, - sym_primary_expression, - STATE(1098), 1, - sym_string, - STATE(1423), 1, - sym_list_splat_pattern, - STATE(1960), 1, - sym_expression, - STATE(2595), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(759), 2, - sym_ellipsis, - sym_float, - ACTIONS(987), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(755), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - STATE(2494), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(743), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44142,7 +43855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44159,65 +43872,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20182] = 25, - ACTIONS(303), 1, + [20292] = 25, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(660), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(845), 1, + ACTIONS(883), 1, anon_sym_STAR_STAR, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, ACTIONS(1333), 1, anon_sym_RBRACE, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2006), 1, + STATE(2069), 1, sym_expression, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - STATE(2535), 2, + STATE(2498), 2, sym_dictionary_splat, sym_pair, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44225,7 +43938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44242,65 +43955,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20290] = 25, - ACTIONS(303), 1, + [20400] = 24, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(310), 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(318), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(404), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(1283), 1, anon_sym_LPAREN, - ACTIONS(660), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(666), 1, - anon_sym_LBRACK, - ACTIONS(845), 1, - anon_sym_STAR_STAR, - ACTIONS(1077), 1, - anon_sym_not, - ACTIONS(1335), 1, - anon_sym_RBRACE, - STATE(955), 1, + STATE(963), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1081), 1, sym_string, - STATE(1300), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(2006), 1, + STATE(1954), 1, sym_expression, - STATE(2772), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(314), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - STATE(2535), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(282), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(997), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 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(1737), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44308,7 +44020,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44325,65 +44037,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20398] = 25, - ACTIONS(767), 1, - anon_sym_LPAREN, - ACTIONS(775), 1, - anon_sym_LBRACK, - ACTIONS(779), 1, + [20506] = 25, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(785), 1, - sym_string_start, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1055), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, sym_identifier, - ACTIONS(1337), 1, - anon_sym_from, - ACTIONS(1339), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(652), 1, anon_sym_STAR, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(883), 1, + anon_sym_STAR_STAR, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1335), 1, + anon_sym_RBRACE, STATE(952), 1, sym_primary_expression, - STATE(985), 1, + STATE(984), 1, sym_string, - STATE(1376), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1832), 1, + STATE(2069), 1, sym_expression, - STATE(2522), 1, - sym_expression_list, - STATE(2639), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, - sym_ellipsis, - sym_float, - ACTIONS(1045), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(1143), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(777), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1043), 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(765), 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(1721), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44391,7 +44103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44408,65 +44120,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20506] = 25, - ACTIONS(303), 1, + [20614] = 25, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(660), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(845), 1, + ACTIONS(883), 1, anon_sym_STAR_STAR, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1341), 1, + ACTIONS(1337), 1, anon_sym_RBRACE, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2006), 1, + STATE(2069), 1, sym_expression, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - STATE(2535), 2, + STATE(2498), 2, sym_dictionary_splat, sym_pair, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44474,7 +44186,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44491,65 +44203,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20614] = 25, - ACTIONS(745), 1, + [20722] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1343), 1, - anon_sym_from, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(972), 1, + ACTIONS(1339), 1, + anon_sym_COLON, + ACTIONS(1341), 1, + anon_sym_RBRACK, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1865), 1, sym_expression, - STATE(2554), 1, - sym_expression_list, - STATE(2595), 1, + STATE(2539), 1, + sym_slice, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(1143), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44557,7 +44268,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44574,64 +44285,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20722] = 25, - ACTIONS(745), 1, + [20829] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1349), 1, + ACTIONS(1343), 1, anon_sym_RBRACK, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1850), 1, + STATE(1865), 1, sym_expression, - STATE(2547), 1, + STATE(2539), 1, sym_slice, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44639,7 +44350,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44656,64 +44367,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20829] = 25, - ACTIONS(745), 1, + [20936] = 24, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, ACTIONS(1347), 1, anon_sym_COLON, - ACTIONS(1351), 1, - anon_sym_RBRACK, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1850), 1, + STATE(1845), 1, sym_expression, - STATE(2547), 1, - sym_slice, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(1345), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44721,7 +44431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44738,64 +44448,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20936] = 25, - ACTIONS(745), 1, + [21041] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1353), 1, + ACTIONS(1349), 1, anon_sym_RBRACK, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1850), 1, + STATE(1865), 1, sym_expression, - STATE(2547), 1, + STATE(2539), 1, sym_slice, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44803,7 +44513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44820,63 +44530,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21043] = 24, - ACTIONS(745), 1, + [21148] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1357), 1, + ACTIONS(1339), 1, anon_sym_COLON, - STATE(972), 1, + ACTIONS(1351), 1, + anon_sym_RBRACK, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1878), 1, + STATE(1865), 1, sym_expression, - STATE(2595), 1, + STATE(2539), 1, + sym_slice, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(1355), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44884,7 +44595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44901,63 +44612,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21148] = 24, - ACTIONS(745), 1, + [21255] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1361), 1, + ACTIONS(1339), 1, anon_sym_COLON, - STATE(972), 1, + ACTIONS(1353), 1, + anon_sym_RBRACK, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1864), 1, + STATE(1865), 1, sym_expression, - STATE(2595), 1, + STATE(2539), 1, + sym_slice, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(1359), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44965,7 +44677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44982,64 +44694,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21253] = 25, - ACTIONS(745), 1, + [21362] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1363), 1, + ACTIONS(1355), 1, anon_sym_RBRACK, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1850), 1, + STATE(1865), 1, sym_expression, - STATE(2547), 1, + STATE(2539), 1, sym_slice, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45047,7 +44759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45064,64 +44776,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21360] = 25, - ACTIONS(745), 1, + [21469] = 24, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1359), 1, anon_sym_COLON, - ACTIONS(1365), 1, - anon_sym_RBRACK, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1850), 1, + STATE(1866), 1, sym_expression, - STATE(2547), 1, - sym_slice, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(1357), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45129,7 +44840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45146,64 +44857,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21467] = 25, - ACTIONS(745), 1, - anon_sym_LPAREN, - ACTIONS(753), 1, - anon_sym_LBRACK, - ACTIONS(757), 1, + [21574] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(763), 1, - sym_string_start, - ACTIONS(993), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(997), 1, - anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, sym_identifier, - ACTIONS(1345), 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, - ACTIONS(1347), 1, - anon_sym_COLON, - ACTIONS(1367), 1, - anon_sym_RBRACK, - STATE(972), 1, + ACTIONS(1361), 1, + anon_sym_from, + STATE(845), 1, sym_primary_expression, - STATE(1098), 1, + STATE(954), 1, sym_string, - STATE(1423), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1850), 1, + STATE(1785), 1, sym_expression, - STATE(2547), 1, - sym_slice, - STATE(2595), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(1287), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45211,7 +44921,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45228,72 +44938,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21574] = 25, - ACTIONS(745), 1, - anon_sym_LPAREN, - ACTIONS(753), 1, - anon_sym_LBRACK, - ACTIONS(757), 1, + [21679] = 19, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(993), 1, - anon_sym_not, - ACTIONS(995), 1, - anon_sym_lambda, - ACTIONS(997), 1, - anon_sym_await, - ACTIONS(1285), 1, - sym_identifier, - ACTIONS(1345), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, - ACTIONS(1369), 1, - anon_sym_RBRACK, - STATE(972), 1, - sym_primary_expression, - STATE(1098), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(662), 1, + anon_sym_await, + STATE(984), 1, sym_string, - STATE(1423), 1, + STATE(1116), 1, + sym_primary_expression, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1850), 1, - sym_expression, - STATE(2547), 1, - sym_slice, - STATE(2595), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(267), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(656), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 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(743), 4, + ACTIONS(312), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1743), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1425), 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, @@ -45310,64 +45014,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21681] = 25, - ACTIONS(745), 1, - anon_sym_LPAREN, - ACTIONS(753), 1, - anon_sym_LBRACK, - ACTIONS(757), 1, + [21774] = 24, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(763), 1, - sym_string_start, - ACTIONS(993), 1, - anon_sym_not, - ACTIONS(995), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, - ACTIONS(1371), 1, - anon_sym_RBRACK, - STATE(972), 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(1098), 1, + STATE(984), 1, sym_string, - STATE(1423), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1850), 1, + STATE(2069), 1, sym_expression, - STATE(2547), 1, - sym_slice, - STATE(2595), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, - sym_ellipsis, - sym_float, - ACTIONS(987), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(985), 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(743), 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(1743), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45375,7 +45078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45392,7 +45095,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21788] = 24, + [21879] = 24, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -45401,27 +45104,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym_string_start, - ACTIONS(379), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(402), 1, + ACTIONS(398), 1, anon_sym_await, - ACTIONS(637), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(645), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1319), 1, + ACTIONS(1293), 1, anon_sym_STAR, - ACTIONS(1373), 1, - anon_sym_from, - STATE(853), 1, + STATE(845), 1, sym_primary_expression, - STATE(953), 1, + STATE(954), 1, sym_string, - STATE(1049), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1823), 1, sym_expression, - STATE(2724), 1, + STATE(2490), 1, + sym_expression_list, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -45429,17 +45132,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(391), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(1297), 2, + ACTIONS(1363), 2, sym__newline, anon_sym_SEMI, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(387), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -45448,7 +45151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1659), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45456,7 +45159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1052), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45473,64 +45176,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21893] = 25, - ACTIONS(745), 1, + [21984] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1375), 1, + ACTIONS(1365), 1, anon_sym_RBRACK, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1850), 1, + STATE(1865), 1, sym_expression, - STATE(2547), 1, + STATE(2539), 1, sym_slice, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45538,7 +45241,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45555,64 +45258,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22000] = 25, - ACTIONS(745), 1, + [22091] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1377), 1, + ACTIONS(1367), 1, anon_sym_RBRACK, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1850), 1, + STATE(1865), 1, sym_expression, - STATE(2547), 1, + STATE(2539), 1, sym_slice, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45620,7 +45323,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45637,64 +45340,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22107] = 25, - ACTIONS(745), 1, + [22198] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1379), 1, + ACTIONS(1369), 1, anon_sym_RBRACK, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1850), 1, + STATE(1865), 1, sym_expression, - STATE(2547), 1, + STATE(2539), 1, sym_slice, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45702,7 +45405,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45719,72 +45422,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22214] = 25, - ACTIONS(745), 1, - anon_sym_LPAREN, - ACTIONS(753), 1, - anon_sym_LBRACK, - ACTIONS(757), 1, + [22305] = 19, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(993), 1, - anon_sym_not, - ACTIONS(995), 1, - anon_sym_lambda, - ACTIONS(997), 1, - anon_sym_await, - ACTIONS(1285), 1, - sym_identifier, - ACTIONS(1345), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, - ACTIONS(1381), 1, - anon_sym_RBRACK, - STATE(972), 1, - sym_primary_expression, - STATE(1098), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(662), 1, + anon_sym_await, + STATE(984), 1, sym_string, - STATE(1423), 1, + STATE(1116), 1, + sym_primary_expression, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1850), 1, - sym_expression, - STATE(2547), 1, - sym_slice, - STATE(2595), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(267), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(656), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(654), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 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(1743), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1425), 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, @@ -45801,64 +45498,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22321] = 25, - ACTIONS(745), 1, - anon_sym_LPAREN, - ACTIONS(753), 1, - anon_sym_LBRACK, - ACTIONS(757), 1, + [22400] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(763), 1, - sym_string_start, - ACTIONS(993), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(997), 1, - anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, sym_identifier, - ACTIONS(1345), 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, - ACTIONS(1347), 1, - anon_sym_COLON, - ACTIONS(1383), 1, - anon_sym_RBRACK, - STATE(972), 1, + ACTIONS(1373), 1, + anon_sym_from, + STATE(845), 1, sym_primary_expression, - STATE(1098), 1, + STATE(954), 1, sym_string, - STATE(1423), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1850), 1, + STATE(1785), 1, sym_expression, - STATE(2547), 1, - sym_slice, - STATE(2595), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(1289), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45866,7 +45562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45883,64 +45579,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22428] = 25, - ACTIONS(745), 1, + [22505] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1385), 1, + ACTIONS(1375), 1, anon_sym_RBRACK, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1850), 1, + STATE(1865), 1, sym_expression, - STATE(2547), 1, + STATE(2539), 1, sym_slice, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45948,7 +45644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45965,66 +45661,72 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22535] = 19, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(656), 1, + [22612] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(660), 1, - anon_sym_STAR, - ACTIONS(666), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(670), 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(1003), 1, - sym_string, - STATE(1105), 1, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1307), 1, + anon_sym_STAR, + ACTIONS(1339), 1, + anon_sym_COLON, + ACTIONS(1377), 1, + anon_sym_RBRACK, + STATE(963), 1, sym_primary_expression, - STATE(1300), 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(271), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(314), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(664), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(308), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(651), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(662), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 5, + ACTIONS(755), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(269), 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(1392), 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, @@ -46041,64 +45743,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22630] = 25, - ACTIONS(745), 1, + [22719] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1387), 1, + ACTIONS(1379), 1, anon_sym_RBRACK, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1850), 1, + STATE(1865), 1, sym_expression, - STATE(2547), 1, + STATE(2539), 1, sym_slice, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46106,7 +45808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46123,64 +45825,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22737] = 25, - ACTIONS(745), 1, + [22826] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1389), 1, + ACTIONS(1381), 1, anon_sym_RBRACK, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1850), 1, + STATE(1865), 1, sym_expression, - STATE(2547), 1, + STATE(2539), 1, sym_slice, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46188,7 +45890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46205,64 +45907,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22844] = 25, - ACTIONS(745), 1, + [22933] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1391), 1, + ACTIONS(1383), 1, anon_sym_RBRACK, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1850), 1, + STATE(1865), 1, sym_expression, - STATE(2547), 1, + STATE(2539), 1, sym_slice, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46270,7 +45972,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46287,64 +45989,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22951] = 25, - ACTIONS(745), 1, + [23040] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1393), 1, + ACTIONS(1385), 1, anon_sym_RBRACK, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1850), 1, + STATE(1865), 1, sym_expression, - STATE(2547), 1, + STATE(2539), 1, sym_slice, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46352,7 +46054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46369,64 +46071,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23058] = 25, - ACTIONS(745), 1, + [23147] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1395), 1, + ACTIONS(1387), 1, anon_sym_RBRACK, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1850), 1, + STATE(1865), 1, sym_expression, - STATE(2547), 1, + STATE(2539), 1, sym_slice, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46434,7 +46136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46451,64 +46153,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23165] = 25, - ACTIONS(745), 1, + [23254] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1397), 1, + ACTIONS(1389), 1, anon_sym_RBRACK, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1850), 1, + STATE(1865), 1, sym_expression, - STATE(2547), 1, + STATE(2539), 1, sym_slice, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46516,7 +46218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46533,64 +46235,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23272] = 25, - ACTIONS(745), 1, + [23361] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1399), 1, + ACTIONS(1391), 1, anon_sym_RBRACK, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1850), 1, + STATE(1865), 1, sym_expression, - STATE(2547), 1, + STATE(2539), 1, sym_slice, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46598,7 +46300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46615,64 +46317,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23379] = 25, - ACTIONS(745), 1, + [23468] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1401), 1, + ACTIONS(1393), 1, anon_sym_RBRACK, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1850), 1, + STATE(1865), 1, sym_expression, - STATE(2547), 1, + STATE(2539), 1, sym_slice, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46680,7 +46382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46697,64 +46399,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23486] = 25, - ACTIONS(745), 1, + [23575] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1403), 1, + ACTIONS(1395), 1, anon_sym_RBRACK, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1850), 1, + STATE(1865), 1, sym_expression, - STATE(2547), 1, + STATE(2539), 1, sym_slice, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46762,7 +46464,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46779,63 +46481,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23593] = 24, - ACTIONS(67), 1, + [23682] = 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(379), 1, - sym_identifier, - ACTIONS(402), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(637), 1, - anon_sym_LPAREN, - ACTIONS(645), 1, - anon_sym_LBRACK, - ACTIONS(1319), 1, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(853), 1, + ACTIONS(1339), 1, + anon_sym_COLON, + ACTIONS(1397), 1, + anon_sym_RBRACK, + STATE(963), 1, sym_primary_expression, - STATE(953), 1, + STATE(1081), 1, sym_string, - STATE(1049), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1813), 1, + STATE(1865), 1, sym_expression, - STATE(2529), 1, - sym_expression_list, - STATE(2724), 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(391), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(1405), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(387), 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(1659), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46843,7 +46546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1052), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46860,64 +46563,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23698] = 25, - ACTIONS(745), 1, + [23789] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1407), 1, + ACTIONS(1399), 1, anon_sym_RBRACK, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1850), 1, + STATE(1865), 1, sym_expression, - STATE(2547), 1, + STATE(2539), 1, sym_slice, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46925,7 +46628,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46942,63 +46645,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23805] = 24, - ACTIONS(303), 1, + [23896] = 25, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1003), 1, + anon_sym_not, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(404), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(656), 1, - anon_sym_LPAREN, - ACTIONS(660), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(666), 1, - anon_sym_LBRACK, - ACTIONS(845), 1, - anon_sym_STAR_STAR, - ACTIONS(1077), 1, - anon_sym_not, - STATE(955), 1, + ACTIONS(1339), 1, + anon_sym_COLON, + ACTIONS(1401), 1, + anon_sym_RBRACK, + STATE(963), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1081), 1, sym_string, - STATE(1300), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(2006), 1, + STATE(1865), 1, sym_expression, - STATE(2772), 1, + STATE(2539), 1, + sym_slice, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(314), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - STATE(2535), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(282), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(997), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 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(1737), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47006,7 +46710,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47023,64 +46727,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23910] = 25, - ACTIONS(745), 1, + [24003] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1409), 1, + ACTIONS(1403), 1, anon_sym_RBRACK, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1850), 1, + STATE(1865), 1, sym_expression, - STATE(2547), 1, + STATE(2539), 1, sym_slice, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47088,7 +46792,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47105,64 +46809,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24017] = 25, - ACTIONS(745), 1, + [24110] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1411), 1, + ACTIONS(1405), 1, anon_sym_RBRACK, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1850), 1, + STATE(1865), 1, sym_expression, - STATE(2547), 1, + STATE(2539), 1, sym_slice, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47170,7 +46874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47187,64 +46891,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24124] = 25, - ACTIONS(745), 1, + [24217] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1413), 1, + ACTIONS(1407), 1, anon_sym_RBRACK, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1850), 1, + STATE(1865), 1, sym_expression, - STATE(2547), 1, + STATE(2539), 1, sym_slice, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47252,7 +46956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47269,64 +46973,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24231] = 25, - ACTIONS(745), 1, + [24324] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1415), 1, + ACTIONS(1409), 1, anon_sym_RBRACK, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1850), 1, + STATE(1865), 1, sym_expression, - STATE(2547), 1, + STATE(2539), 1, sym_slice, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47334,7 +47038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47351,64 +47055,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24338] = 25, - ACTIONS(745), 1, + [24431] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1417), 1, + ACTIONS(1411), 1, anon_sym_RBRACK, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1850), 1, + STATE(1865), 1, sym_expression, - STATE(2547), 1, + STATE(2539), 1, sym_slice, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47416,7 +47120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47433,64 +47137,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24445] = 25, - ACTIONS(745), 1, + [24538] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1339), 1, anon_sym_COLON, - ACTIONS(1419), 1, + ACTIONS(1413), 1, anon_sym_RBRACK, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1850), 1, + STATE(1865), 1, sym_expression, - STATE(2547), 1, + STATE(2539), 1, sym_slice, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47498,7 +47202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47515,63 +47219,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24552] = 24, - ACTIONS(67), 1, + [24645] = 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(379), 1, - sym_identifier, - ACTIONS(402), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(637), 1, - anon_sym_LPAREN, - ACTIONS(645), 1, - anon_sym_LBRACK, - ACTIONS(1319), 1, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1421), 1, - anon_sym_from, - STATE(853), 1, + ACTIONS(1339), 1, + anon_sym_COLON, + ACTIONS(1415), 1, + anon_sym_RBRACK, + STATE(963), 1, sym_primary_expression, - STATE(953), 1, + STATE(1081), 1, sym_string, - STATE(1049), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1865), 1, sym_expression, - STATE(2724), 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(391), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(1291), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(387), 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(1659), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47579,7 +47284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1052), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47596,66 +47301,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24657] = 19, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(656), 1, + [24752] = 24, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(660), 1, - anon_sym_STAR, - ACTIONS(666), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(670), 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(1003), 1, - sym_string, - STATE(1105), 1, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1307), 1, + anon_sym_STAR, + ACTIONS(1339), 1, + anon_sym_COLON, + STATE(963), 1, sym_primary_expression, - STATE(1300), 1, + STATE(1081), 1, + sym_string, + STATE(1444), 1, sym_list_splat_pattern, + STATE(1803), 1, + sym_expression, + STATE(2386), 1, + sym_slice, + STATE(2585), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(314), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(664), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(308), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(662), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(1423), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(316), 5, + ACTIONS(755), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(269), 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(1392), 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, @@ -47672,61 +47381,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24752] = 23, - ACTIONS(723), 1, + [24856] = 23, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(741), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(833), 1, - sym_identifier, - ACTIONS(849), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(855), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1265), 1, + ACTIONS(1155), 1, + sym_identifier, + ACTIONS(1269), 1, anon_sym_STAR, ACTIONS(1271), 1, anon_sym_lambda, - STATE(880), 1, + STATE(857), 1, sym_primary_expression, - STATE(963), 1, + STATE(969), 1, sym_string, - STATE(1213), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1794), 1, + STATE(1814), 1, sym_expression, - STATE(2646), 1, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(737), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(843), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - STATE(2045), 2, + STATE(2072), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(733), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(841), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(721), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47734,7 +47443,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1190), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47751,55 +47460,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24854] = 19, - ACTIONS(303), 1, + [24958] = 20, + ACTIONS(292), 1, + anon_sym_in, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(320), 1, + ACTIONS(308), 1, + anon_sym_COMMA, + ACTIONS(316), 1, sym_string_start, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(660), 1, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(670), 1, + ACTIONS(662), 1, anon_sym_await, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1105), 1, + STATE(1116), 1, sym_primary_expression, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 2, + ACTIONS(267), 2, anon_sym_DOT, anon_sym_SLASH, - ACTIONS(312), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(664), 2, + ACTIONS(656), 2, anon_sym_match, anon_sym_type, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(662), 3, + ACTIONS(654), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 5, + ACTIONS(312), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(269), 9, + ACTIONS(265), 9, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, @@ -47809,7 +47519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47826,61 +47536,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24948] = 23, - ACTIONS(67), 1, + [25054] = 23, + 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(379), 1, - sym_identifier, - ACTIONS(402), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(637), 1, - anon_sym_LPAREN, - ACTIONS(645), 1, - anon_sym_LBRACK, - ACTIONS(1319), 1, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(853), 1, + STATE(963), 1, sym_primary_expression, - STATE(953), 1, + STATE(1081), 1, sym_string, - STATE(1049), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1877), 1, sym_expression, - STATE(2724), 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(391), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(1425), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(1417), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(387), 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(1659), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47888,7 +47598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1052), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47905,61 +47615,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25050] = 23, - ACTIONS(67), 1, + [25156] = 23, + ACTIONS(779), 1, + anon_sym_LPAREN, + ACTIONS(789), 1, + anon_sym_LBRACK, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(379), 1, + ACTIONS(857), 1, + anon_sym_not, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(402), 1, + ACTIONS(1081), 1, anon_sym_await, - ACTIONS(637), 1, - anon_sym_LPAREN, - ACTIONS(645), 1, - anon_sym_LBRACK, - ACTIONS(1319), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(853), 1, + ACTIONS(1247), 1, + anon_sym_lambda, + STATE(950), 1, sym_primary_expression, - STATE(953), 1, + STATE(985), 1, sym_string, - STATE(1049), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1858), 1, + STATE(1822), 1, sym_expression, - STATE(2724), 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(391), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(1427), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 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(387), 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(1659), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47967,7 +47677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1052), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47984,61 +47694,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25152] = 23, - ACTIONS(767), 1, - anon_sym_LPAREN, - ACTIONS(775), 1, - anon_sym_LBRACK, - ACTIONS(779), 1, + [25258] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(785), 1, - sym_string_start, - ACTIONS(1051), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1055), 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(1339), 1, anon_sym_STAR, - STATE(952), 1, + STATE(845), 1, sym_primary_expression, - STATE(985), 1, + STATE(954), 1, sym_string, - STATE(1376), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1961), 1, + STATE(1785), 1, sym_expression, - STATE(2639), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1045), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(1291), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(777), 3, + ACTIONS(1419), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1043), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(765), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48046,7 +47756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48063,61 +47773,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25254] = 23, - ACTIONS(67), 1, + [25360] = 23, + 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(379), 1, - sym_identifier, - ACTIONS(402), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(637), 1, - anon_sym_LPAREN, - ACTIONS(645), 1, - anon_sym_LBRACK, - ACTIONS(1319), 1, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(853), 1, + STATE(963), 1, sym_primary_expression, - STATE(953), 1, + STATE(1081), 1, sym_string, - STATE(1049), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1858), 1, + STATE(1913), 1, sym_expression, - STATE(2724), 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(391), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(1429), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(1287), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(387), 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(1659), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48125,7 +47835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1052), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48142,61 +47852,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25356] = 23, - ACTIONS(767), 1, - anon_sym_LPAREN, - ACTIONS(775), 1, - anon_sym_LBRACK, - ACTIONS(779), 1, + [25462] = 24, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(785), 1, - sym_string_start, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1055), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, sym_identifier, - ACTIONS(1339), 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(1423), 1, + anon_sym_COLON, STATE(952), 1, sym_primary_expression, - STATE(985), 1, + STATE(984), 1, sym_string, - STATE(1376), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1961), 1, + STATE(1880), 1, sym_expression, - STATE(2639), 1, + STATE(2506), 1, + sym_with_item, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, - sym_ellipsis, - sym_float, - ACTIONS(1045), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(1297), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(777), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1043), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(765), 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(1721), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48204,7 +47915,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48221,65 +47932,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25458] = 19, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(656), 1, + [25566] = 24, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(660), 1, - anon_sym_STAR, - ACTIONS(666), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(670), 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(1003), 1, - sym_string, - STATE(1105), 1, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1307), 1, + anon_sym_STAR, + ACTIONS(1339), 1, + anon_sym_COLON, + STATE(963), 1, sym_primary_expression, - STATE(1300), 1, + STATE(1081), 1, + sym_string, + STATE(1444), 1, sym_list_splat_pattern, + STATE(1813), 1, + sym_expression, + STATE(2417), 1, + sym_slice, + STATE(2585), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(314), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(651), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(664), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(308), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(662), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 5, + ACTIONS(755), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(269), 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(1392), 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, @@ -48296,65 +48012,135 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25552] = 19, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(320), 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, - ACTIONS(656), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(660), 1, anon_sym_STAR, - ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(670), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1427), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [25746] = 23, + ACTIONS(691), 1, + anon_sym_LPAREN, + ACTIONS(699), 1, + anon_sym_LBRACK, + ACTIONS(703), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(817), 1, + anon_sym_not, + ACTIONS(823), 1, anon_sym_await, - STATE(1003), 1, - sym_string, - STATE(1105), 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(1300), 1, + STATE(969), 1, + sym_string, + STATE(1283), 1, sym_list_splat_pattern, + STATE(1782), 1, + sym_expression, + STATE(2716), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(312), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(314), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(664), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(308), 3, + 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(662), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 5, + ACTIONS(689), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(269), 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(1392), 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, @@ -48371,62 +48157,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25646] = 24, - ACTIONS(303), 1, + [25848] = 24, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1003), 1, + anon_sym_not, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(404), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(666), 1, - anon_sym_LBRACK, - ACTIONS(1077), 1, - anon_sym_not, - ACTIONS(1431), 1, - anon_sym_LPAREN, - ACTIONS(1433), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(955), 1, + ACTIONS(1339), 1, + anon_sym_COLON, + STATE(963), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1081), 1, sym_string, - STATE(1300), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1919), 1, + STATE(1865), 1, sym_expression, - STATE(2267), 1, - sym_with_item, - STATE(2647), 1, - sym_with_clause, - STATE(2772), 1, + STATE(2539), 1, + sym_slice, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(314), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(997), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 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(1737), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48434,7 +48220,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48451,61 +48237,127 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25750] = 23, - ACTIONS(745), 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(753), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(757), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1439), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_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(763), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(972), 1, + STATE(953), 1, sym_primary_expression, - STATE(1098), 1, + STATE(995), 1, sym_string, - STATE(1423), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1948), 1, + STATE(1938), 1, sym_expression, - STATE(2595), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(1029), 2, anon_sym_match, anon_sym_type, - ACTIONS(1291), 2, + ACTIONS(1289), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(755), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(1027), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48513,7 +48365,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48530,61 +48382,127 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25852] = 23, - ACTIONS(745), 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, - ACTIONS(753), 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(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, + [26206] = 23, ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1948), 1, + STATE(1900), 1, sym_expression, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(1297), 2, + ACTIONS(1449), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48592,7 +48510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48609,138 +48527,193 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25954] = 20, - ACTIONS(296), 1, - anon_sym_in, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(312), 1, - anon_sym_COMMA, - ACTIONS(320), 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, - ACTIONS(656), 1, anon_sym_LPAREN, - ACTIONS(660), 1, anon_sym_STAR, - ACTIONS(666), 1, anon_sym_LBRACK, - ACTIONS(670), 1, - anon_sym_await, - STATE(1003), 1, - sym_string, - STATE(1105), 1, - sym_primary_expression, - STATE(1300), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(271), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(314), 2, - sym_ellipsis, - sym_float, - ACTIONS(664), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(308), 3, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(662), 3, - anon_sym_print, + 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, - ACTIONS(316), 5, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - ACTIONS(269), 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(1392), 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, - [26050] = 24, - ACTIONS(767), 1, + [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, anon_sym_LPAREN, - ACTIONS(775), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(779), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(785), 1, - sym_string_start, - ACTIONS(1051), 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, - ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1055), 1, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(1293), 1, + sym_true, + sym_false, + sym_none, + [26460] = 23, + ACTIONS(779), 1, + anon_sym_LPAREN, + ACTIONS(789), 1, + anon_sym_LBRACK, + ACTIONS(793), 1, + anon_sym_LBRACE, + ACTIONS(799), 1, + sym_string_start, + ACTIONS(857), 1, + anon_sym_not, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1339), 1, + ACTIONS(1081), 1, + anon_sym_await, + ACTIONS(1243), 1, anon_sym_STAR, - ACTIONS(1435), 1, - anon_sym_RPAREN, - STATE(952), 1, + ACTIONS(1247), 1, + anon_sym_lambda, + STATE(950), 1, sym_primary_expression, STATE(985), 1, sym_string, - STATE(1376), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1978), 1, + STATE(1822), 1, sym_expression, - STATE(2545), 1, - sym_with_item, - STATE(2639), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1045), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 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(1043), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(765), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48748,7 +48721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48765,62 +48738,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26154] = 24, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_await, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(404), 1, - sym_identifier, - ACTIONS(656), 1, + [26562] = 23, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, + ACTIONS(793), 1, + anon_sym_LBRACE, + ACTIONS(799), 1, + sym_string_start, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1071), 1, + sym_identifier, + ACTIONS(1081), 1, + anon_sym_await, + ACTIONS(1243), 1, anon_sym_STAR, - ACTIONS(1437), 1, - anon_sym_COLON, - STATE(955), 1, + ACTIONS(1247), 1, + anon_sym_lambda, + STATE(950), 1, sym_primary_expression, - STATE(1003), 1, + STATE(985), 1, sym_string, - STATE(1300), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1919), 1, + STATE(1779), 1, sym_expression, - STATE(2551), 1, - sym_with_item, - STATE(2772), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(314), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(1079), 2, + anon_sym_match, + anon_sym_type, + STATE(2055), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 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(1737), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48828,7 +48800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48845,61 +48817,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26258] = 23, - ACTIONS(745), 1, + [26664] = 23, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(995), 1, - anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1155), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(972), 1, + ACTIONS(1271), 1, + anon_sym_lambda, + STATE(857), 1, sym_primary_expression, - STATE(1098), 1, + STATE(969), 1, sym_string, - STATE(1423), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1890), 1, + STATE(1814), 1, sym_expression, - STATE(2595), 1, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(1355), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(755), 3, + 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(985), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48907,7 +48879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48924,61 +48896,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26360] = 23, - ACTIONS(699), 1, + [26766] = 23, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(709), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1125), 1, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1133), 1, + ACTIONS(1081), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1243), 1, anon_sym_STAR, - ACTIONS(1279), 1, + ACTIONS(1247), 1, anon_sym_lambda, - STATE(956), 1, + STATE(950), 1, sym_primary_expression, - STATE(977), 1, + STATE(985), 1, sym_string, - STATE(1407), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1803), 1, + STATE(1822), 1, sym_expression, - STATE(2712), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1131), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - STATE(1958), 2, + STATE(1907), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(711), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1129), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 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, @@ -48986,7 +48958,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49003,61 +48975,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26462] = 23, - ACTIONS(789), 1, + [26868] = 24, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(797), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(801), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(807), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(831), 1, + ACTIONS(1037), 1, + anon_sym_lambda, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1157), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1249), 1, + ACTIONS(1303), 1, anon_sym_STAR, - ACTIONS(1255), 1, - anon_sym_lambda, - STATE(919), 1, + ACTIONS(1459), 1, + anon_sym_RPAREN, + STATE(953), 1, sym_primary_expression, - STATE(970), 1, + STATE(995), 1, sym_string, - STATE(1254), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1795), 1, + STATE(1950), 1, sym_expression, - STATE(2626), 1, + STATE(2483), 1, + sym_with_item, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(803), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(817), 2, + ACTIONS(1029), 2, anon_sym_match, anon_sym_type, - STATE(1906), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(799), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(815), 3, + ACTIONS(1027), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(787), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1689), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49065,7 +49038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1148), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49082,61 +49055,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26564] = 23, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(797), 1, - anon_sym_LBRACK, - ACTIONS(801), 1, + [26972] = 24, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(807), 1, - sym_string_start, - ACTIONS(825), 1, - anon_sym_not, - ACTIONS(831), 1, + ACTIONS(306), 1, + anon_sym_lambda, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(1157), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, sym_identifier, - ACTIONS(1249), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(1255), 1, - anon_sym_lambda, - STATE(919), 1, + ACTIONS(1461), 1, + anon_sym_LPAREN, + STATE(952), 1, sym_primary_expression, - STATE(970), 1, + STATE(984), 1, sym_string, - STATE(1254), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1795), 1, + STATE(1880), 1, sym_expression, - STATE(2626), 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(803), 2, - sym_ellipsis, - sym_float, - ACTIONS(817), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - STATE(1909), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(799), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(815), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(787), 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(1689), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49144,7 +49118,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1148), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49161,70 +49135,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26666] = 24, - ACTIONS(767), 1, - anon_sym_LPAREN, - ACTIONS(775), 1, - anon_sym_LBRACK, - ACTIONS(779), 1, + [27076] = 19, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1053), 1, - anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_await, - ACTIONS(1293), 1, - sym_identifier, - ACTIONS(1339), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(1439), 1, - anon_sym_RPAREN, - STATE(952), 1, - sym_primary_expression, - STATE(985), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(662), 1, + anon_sym_await, + STATE(984), 1, sym_string, - STATE(1376), 1, + STATE(1116), 1, + sym_primary_expression, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1978), 1, - sym_expression, - STATE(2545), 1, - sym_with_item, - STATE(2639), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + 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(1045), 2, + ACTIONS(656), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1043), 3, + ACTIONS(654), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(765), 4, + ACTIONS(312), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1721), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1308), 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, @@ -49241,61 +49210,127 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26770] = 23, - ACTIONS(789), 1, + [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, - ACTIONS(797), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(801), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(807), 1, - sym_string_start, - ACTIONS(825), 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(831), 1, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(1157), 1, + 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(1249), 1, + ACTIONS(887), 1, + anon_sym_not, + ACTIONS(893), 1, + anon_sym_await, + ACTIONS(1273), 1, anon_sym_STAR, - ACTIONS(1255), 1, + ACTIONS(1275), 1, anon_sym_lambda, - STATE(919), 1, + STATE(893), 1, sym_primary_expression, - STATE(970), 1, + STATE(958), 1, sym_string, - STATE(1254), 1, + STATE(1259), 1, sym_list_splat_pattern, STATE(1820), 1, sym_expression, - STATE(2626), 1, + STATE(2645), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(803), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(817), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - STATE(2099), 2, + STATE(1943), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(799), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(815), 3, + ACTIONS(879), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(787), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1689), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49303,7 +49338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1148), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49320,7 +49355,73 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26872] = 23, + [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, + 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, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [27424] = 23, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -49329,25 +49430,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym_string_start, - ACTIONS(379), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(402), 1, + ACTIONS(398), 1, anon_sym_await, - ACTIONS(637), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(645), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1319), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(853), 1, + STATE(845), 1, sym_primary_expression, - STATE(953), 1, + STATE(954), 1, sym_string, - STATE(1049), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1825), 1, sym_expression, - STATE(2724), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -49355,17 +49456,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(391), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(1441), 2, + ACTIONS(1463), 2, sym__newline, anon_sym_SEMI, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(387), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -49374,7 +49475,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1659), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49382,7 +49483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1052), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49399,61 +49500,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26974] = 23, - ACTIONS(745), 1, + [27526] = 23, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(871), 1, + sym_identifier, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(995), 1, - anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(1285), 1, - sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1273), 1, anon_sym_STAR, - STATE(972), 1, + ACTIONS(1275), 1, + anon_sym_lambda, + STATE(893), 1, sym_primary_expression, - STATE(1098), 1, + STATE(958), 1, sym_string, - STATE(1423), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1928), 1, + STATE(1820), 1, sym_expression, - STATE(2595), 1, + STATE(2645), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - ACTIONS(1443), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(755), 3, + STATE(1953), 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(985), 3, + ACTIONS(879), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49461,7 +49562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49478,61 +49579,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27076] = 23, - ACTIONS(789), 1, + [27628] = 23, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(797), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(801), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(807), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(871), 1, + sym_identifier, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(831), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(1157), 1, - sym_identifier, - ACTIONS(1249), 1, + ACTIONS(1273), 1, anon_sym_STAR, - ACTIONS(1255), 1, + ACTIONS(1275), 1, anon_sym_lambda, - STATE(919), 1, + STATE(893), 1, sym_primary_expression, - STATE(970), 1, + STATE(958), 1, sym_string, - STATE(1254), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1783), 1, + STATE(1821), 1, sym_expression, - STATE(2626), 1, + STATE(2645), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(803), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(817), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - STATE(1993), 2, + STATE(2005), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(799), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(815), 3, + ACTIONS(879), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(787), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1689), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49540,7 +49641,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1148), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49557,65 +49658,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27178] = 19, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(656), 1, + [27730] = 23, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(660), 1, - anon_sym_STAR, - ACTIONS(666), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(670), 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(1003), 1, - sym_string, - STATE(1105), 1, + ACTIONS(1273), 1, + anon_sym_STAR, + ACTIONS(1275), 1, + anon_sym_lambda, + STATE(893), 1, sym_primary_expression, - STATE(1300), 1, + STATE(958), 1, + sym_string, + STATE(1259), 1, sym_list_splat_pattern, + STATE(1798), 1, + sym_expression, + STATE(2645), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(314), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(664), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - ACTIONS(1423), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(308), 3, + 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(662), 3, + ACTIONS(879), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 5, + ACTIONS(733), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(269), 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(1392), 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, @@ -49632,61 +49737,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27272] = 23, - ACTIONS(699), 1, + [27832] = 23, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(709), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(1125), 1, - sym_identifier, - ACTIONS(1133), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1155), 1, + sym_identifier, + ACTIONS(1269), 1, anon_sym_STAR, - ACTIONS(1279), 1, + ACTIONS(1271), 1, anon_sym_lambda, - STATE(956), 1, + STATE(857), 1, sym_primary_expression, - STATE(977), 1, + STATE(969), 1, sym_string, - STATE(1407), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1803), 1, + STATE(1784), 1, sym_expression, - STATE(2712), 1, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1131), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - STATE(1940), 2, + STATE(2014), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(711), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1129), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 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, @@ -49694,7 +49799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49711,62 +49816,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27374] = 24, - ACTIONS(745), 1, + [27934] = 23, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1801), 1, + STATE(1963), 1, sym_expression, - STATE(2254), 1, - sym_slice, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(1345), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49774,7 +49878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49791,61 +49895,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27478] = 23, - ACTIONS(723), 1, + [28036] = 24, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(741), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(833), 1, - sym_identifier, - ACTIONS(849), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(855), 1, + ACTIONS(1037), 1, + anon_sym_lambda, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1265), 1, + ACTIONS(1253), 1, + sym_identifier, + ACTIONS(1303), 1, anon_sym_STAR, - ACTIONS(1271), 1, - anon_sym_lambda, - STATE(880), 1, + ACTIONS(1465), 1, + anon_sym_RPAREN, + STATE(953), 1, sym_primary_expression, - STATE(963), 1, + STATE(995), 1, sym_string, - STATE(1213), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1794), 1, + STATE(1950), 1, sym_expression, - STATE(2646), 1, + STATE(2483), 1, + sym_with_item, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(737), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(843), 2, + ACTIONS(1029), 2, anon_sym_match, anon_sym_type, - STATE(1895), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(733), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(841), 3, + ACTIONS(1027), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(721), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49853,7 +49958,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1190), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49870,61 +49975,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27580] = 23, - ACTIONS(723), 1, + [28140] = 23, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(741), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(833), 1, - sym_identifier, - ACTIONS(849), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(855), 1, + ACTIONS(1071), 1, + sym_identifier, + ACTIONS(1081), 1, anon_sym_await, - ACTIONS(1265), 1, + ACTIONS(1243), 1, anon_sym_STAR, - ACTIONS(1271), 1, + ACTIONS(1247), 1, anon_sym_lambda, - STATE(880), 1, + STATE(950), 1, sym_primary_expression, - STATE(963), 1, + STATE(985), 1, sym_string, - STATE(1213), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1794), 1, + STATE(1802), 1, sym_expression, - STATE(2646), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(737), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(843), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - STATE(1931), 2, + STATE(2065), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(733), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(841), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(721), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49932,7 +50037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1190), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49949,61 +50054,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27682] = 23, - ACTIONS(723), 1, - anon_sym_LPAREN, - ACTIONS(731), 1, - anon_sym_LBRACK, - ACTIONS(735), 1, + [28242] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(741), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym_string_start, - ACTIONS(833), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(849), 1, - anon_sym_not, - ACTIONS(855), 1, + ACTIONS(398), 1, anon_sym_await, - ACTIONS(1265), 1, + ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(637), 1, + anon_sym_LBRACK, + ACTIONS(1293), 1, anon_sym_STAR, - ACTIONS(1271), 1, - anon_sym_lambda, - STATE(880), 1, + STATE(845), 1, sym_primary_expression, - STATE(963), 1, + STATE(954), 1, sym_string, - STATE(1213), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1822), 1, + STATE(1785), 1, sym_expression, - STATE(2646), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(737), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(843), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - STATE(2044), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(733), 3, + ACTIONS(1467), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(841), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(721), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50011,7 +50116,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1190), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50028,61 +50133,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27784] = 23, - ACTIONS(723), 1, - anon_sym_LPAREN, - ACTIONS(731), 1, - anon_sym_LBRACK, - ACTIONS(735), 1, + [28344] = 24, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(741), 1, + ACTIONS(306), 1, + anon_sym_lambda, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, sym_string_start, - ACTIONS(833), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(855), 1, - anon_sym_await, - ACTIONS(1265), 1, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(1271), 1, - anon_sym_lambda, - STATE(880), 1, + ACTIONS(1469), 1, + anon_sym_COLON, + STATE(952), 1, sym_primary_expression, - STATE(963), 1, + STATE(984), 1, sym_string, - STATE(1213), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1790), 1, + STATE(1880), 1, sym_expression, - STATE(2646), 1, + STATE(2506), 1, + sym_with_item, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(737), 2, - sym_ellipsis, - sym_float, - ACTIONS(843), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - STATE(2050), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(733), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(841), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(721), 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(1767), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50090,7 +50196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1190), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50107,61 +50213,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27886] = 23, - ACTIONS(745), 1, - anon_sym_LPAREN, - ACTIONS(753), 1, - anon_sym_LBRACK, - ACTIONS(757), 1, + [28448] = 24, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(763), 1, - sym_string_start, - ACTIONS(993), 1, - anon_sym_not, - ACTIONS(995), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(972), 1, + ACTIONS(1461), 1, + anon_sym_LPAREN, + STATE(952), 1, sym_primary_expression, - STATE(1098), 1, + STATE(984), 1, sym_string, - STATE(1423), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1884), 1, + STATE(1880), 1, sym_expression, - STATE(2595), 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(759), 2, - sym_ellipsis, - sym_float, - ACTIONS(987), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(1445), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(755), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 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(1743), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50169,7 +50276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50186,62 +50293,127 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27988] = 24, - ACTIONS(745), 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(753), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(757), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1427), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + 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(763), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1303), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, - STATE(972), 1, + STATE(953), 1, sym_primary_expression, - STATE(1098), 1, + STATE(995), 1, sym_string, - STATE(1423), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1850), 1, + STATE(1938), 1, sym_expression, - STATE(2547), 1, - sym_slice, - STATE(2595), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(1029), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(1287), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(1027), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50249,7 +50421,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50266,69 +50438,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28092] = 23, - ACTIONS(699), 1, - anon_sym_LPAREN, - ACTIONS(709), 1, - anon_sym_LBRACK, - ACTIONS(713), 1, + [28730] = 19, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(879), 1, - anon_sym_not, - ACTIONS(1125), 1, - sym_identifier, - ACTIONS(1133), 1, - anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(1279), 1, - anon_sym_lambda, - STATE(956), 1, - sym_primary_expression, - STATE(977), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(662), 1, + anon_sym_await, + STATE(984), 1, sym_string, - STATE(1407), 1, + STATE(1116), 1, + sym_primary_expression, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1779), 1, - sym_expression, - STATE(2712), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(267), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(1131), 2, + ACTIONS(643), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(656), 2, anon_sym_match, anon_sym_type, - STATE(2031), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(711), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1129), 3, + ACTIONS(654), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 4, + ACTIONS(312), 5, sym_integer, + sym_identifier, 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(1349), 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, @@ -50345,69 +50513,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28194] = 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(379), 1, - sym_identifier, - ACTIONS(402), 1, - anon_sym_await, - ACTIONS(637), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(645), 1, - anon_sym_LBRACK, - ACTIONS(1319), 1, + ACTIONS(652), 1, anon_sym_STAR, - STATE(853), 1, - sym_primary_expression, - STATE(953), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(662), 1, + anon_sym_await, + STATE(984), 1, sym_string, - STATE(1049), 1, + STATE(1116), 1, + sym_primary_expression, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1858), 1, - sym_expression, - STATE(2724), 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(391), 2, + ACTIONS(656), 2, anon_sym_match, anon_sym_type, - ACTIONS(1447), 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(387), 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(1659), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1052), 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, @@ -50424,61 +50588,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28296] = 23, - ACTIONS(67), 1, + [28918] = 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(379), 1, - sym_identifier, - ACTIONS(402), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(637), 1, - anon_sym_LPAREN, - ACTIONS(645), 1, - anon_sym_LBRACK, - ACTIONS(1319), 1, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(853), 1, + ACTIONS(1339), 1, + anon_sym_COLON, + STATE(963), 1, sym_primary_expression, - STATE(953), 1, + STATE(1081), 1, sym_string, - STATE(1049), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1858), 1, + STATE(1786), 1, sym_expression, - STATE(2724), 1, + STATE(2233), 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(391), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(1449), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(387), 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(1659), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50486,7 +50651,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1052), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50503,61 +50668,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28398] = 23, - ACTIONS(699), 1, + [29022] = 23, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(709), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(1125), 1, - sym_identifier, - ACTIONS(1133), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1155), 1, + sym_identifier, + ACTIONS(1269), 1, anon_sym_STAR, - ACTIONS(1279), 1, + ACTIONS(1271), 1, anon_sym_lambda, - STATE(956), 1, + STATE(857), 1, sym_primary_expression, - STATE(977), 1, + STATE(969), 1, sym_string, - STATE(1407), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1786), 1, + STATE(1814), 1, sym_expression, - STATE(2712), 1, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1131), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - STATE(2066), 2, + STATE(1892), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(711), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1129), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 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, @@ -50565,7 +50730,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50582,62 +50747,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28500] = 24, - ACTIONS(303), 1, + [29124] = 24, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1003), 1, + anon_sym_not, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(404), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(666), 1, - anon_sym_LBRACK, - ACTIONS(1077), 1, - anon_sym_not, - ACTIONS(1431), 1, - anon_sym_LPAREN, - ACTIONS(1433), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(955), 1, + ACTIONS(1339), 1, + anon_sym_COLON, + STATE(963), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1081), 1, sym_string, - STATE(1300), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1919), 1, + STATE(1780), 1, sym_expression, - STATE(2267), 1, - sym_with_item, - STATE(2621), 1, - sym_with_clause, - STATE(2772), 1, + STATE(2245), 1, + sym_slice, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(314), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(997), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 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(1737), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50645,7 +50810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50662,62 +50827,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28604] = 24, - ACTIONS(303), 1, + [29228] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_await, - ACTIONS(320), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1293), 1, anon_sym_STAR, - ACTIONS(1451), 1, - anon_sym_COLON, - STATE(955), 1, + STATE(845), 1, sym_primary_expression, - STATE(1003), 1, + STATE(954), 1, sym_string, - STATE(1300), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1919), 1, + STATE(1825), 1, sym_expression, - STATE(2551), 1, - sym_with_item, - STATE(2772), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(314), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(308), 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(316), 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(1737), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50725,7 +50889,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50742,61 +50906,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28708] = 23, - ACTIONS(699), 1, + [29330] = 24, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(709), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1125), 1, - sym_identifier, - ACTIONS(1133), 1, + ACTIONS(1005), 1, + anon_sym_lambda, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1279), 1, - anon_sym_lambda, - STATE(956), 1, + ACTIONS(1339), 1, + anon_sym_COLON, + STATE(963), 1, sym_primary_expression, - STATE(977), 1, + STATE(1081), 1, sym_string, - STATE(1407), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1803), 1, + STATE(1777), 1, sym_expression, - STATE(2712), 1, + STATE(2288), 1, + sym_slice, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1131), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - STATE(2032), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(711), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1129), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50804,7 +50969,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50821,62 +50986,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28810] = 24, - ACTIONS(745), 1, + [29434] = 23, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1826), 1, + STATE(1913), 1, sym_expression, - STATE(2293), 1, - sym_slice, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(1289), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50884,7 +51048,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50901,62 +51065,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28914] = 24, - ACTIONS(745), 1, + [29536] = 24, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1339), 1, anon_sym_COLON, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1823), 1, + STATE(1792), 1, sym_expression, - STATE(2250), 1, + STATE(2335), 1, sym_slice, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50964,7 +51128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50981,62 +51145,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29018] = 24, - ACTIONS(745), 1, + [29640] = 24, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1339), 1, anon_sym_COLON, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1817), 1, + STATE(1800), 1, sym_expression, - STATE(2304), 1, + STATE(2363), 1, sym_slice, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51044,7 +51208,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51061,62 +51225,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29122] = 24, - ACTIONS(745), 1, + [29744] = 24, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1339), 1, anon_sym_COLON, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1798), 1, + STATE(1809), 1, sym_expression, - STATE(2353), 1, + STATE(2411), 1, sym_slice, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51124,7 +51288,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51141,62 +51305,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29226] = 24, - ACTIONS(745), 1, + [29848] = 24, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1339), 1, anon_sym_COLON, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1815), 1, + STATE(1811), 1, sym_expression, - STATE(2375), 1, + STATE(2421), 1, sym_slice, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51204,7 +51368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51221,62 +51385,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29330] = 24, - ACTIONS(745), 1, + [29952] = 24, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1339), 1, anon_sym_COLON, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1780), 1, + STATE(1812), 1, sym_expression, - STATE(2398), 1, + STATE(2426), 1, sym_slice, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51284,7 +51448,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51301,150 +51465,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29434] = 24, - ACTIONS(745), 1, - anon_sym_LPAREN, - ACTIONS(753), 1, - anon_sym_LBRACK, - ACTIONS(757), 1, + [30056] = 19, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(993), 1, - anon_sym_not, - ACTIONS(995), 1, - anon_sym_lambda, - ACTIONS(997), 1, - anon_sym_await, - ACTIONS(1285), 1, - sym_identifier, - ACTIONS(1345), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, - STATE(972), 1, - sym_primary_expression, - STATE(1098), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(662), 1, + anon_sym_await, + STATE(984), 1, sym_string, - STATE(1423), 1, + STATE(1116), 1, + sym_primary_expression, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1788), 1, - sym_expression, - STATE(2420), 1, - sym_slice, - STATE(2595), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 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(987), 2, + ACTIONS(656), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(654), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(312), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1743), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1425), 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, - [29538] = 24, - ACTIONS(745), 1, - anon_sym_LPAREN, - ACTIONS(753), 1, - anon_sym_LBRACK, - ACTIONS(757), 1, - anon_sym_LBRACE, - ACTIONS(763), 1, - sym_string_start, - ACTIONS(993), 1, - anon_sym_not, - ACTIONS(995), 1, - anon_sym_lambda, - ACTIONS(997), 1, - anon_sym_await, - ACTIONS(1285), 1, - sym_identifier, - ACTIONS(1345), 1, - anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, - STATE(972), 1, - sym_primary_expression, - STATE(1098), 1, - sym_string, - STATE(1423), 1, - sym_list_splat_pattern, - STATE(1792), 1, - sym_expression, - STATE(2430), 1, - sym_slice, - STATE(2595), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(759), 2, - sym_ellipsis, - sym_float, - ACTIONS(987), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(755), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(985), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(743), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1743), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1425), 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, @@ -51461,62 +51540,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29642] = 24, - ACTIONS(745), 1, - anon_sym_LPAREN, - ACTIONS(753), 1, - anon_sym_LBRACK, - ACTIONS(757), 1, + [30150] = 24, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(763), 1, - sym_string_start, - ACTIONS(993), 1, - anon_sym_not, - ACTIONS(995), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(1347), 1, - anon_sym_COLON, - STATE(972), 1, + ACTIONS(1461), 1, + anon_sym_LPAREN, + STATE(952), 1, sym_primary_expression, - STATE(1098), 1, + STATE(984), 1, sym_string, - STATE(1423), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1793), 1, + STATE(1880), 1, sym_expression, - STATE(2435), 1, - sym_slice, - STATE(2595), 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(759), 2, - sym_ellipsis, - sym_float, - ACTIONS(987), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 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(1743), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51524,7 +51603,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51541,62 +51620,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29746] = 24, - ACTIONS(303), 1, + [30254] = 24, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1431), 1, - anon_sym_LPAREN, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(955), 1, + ACTIONS(1461), 1, + anon_sym_LPAREN, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1919), 1, + STATE(1880), 1, sym_expression, - STATE(2267), 1, + STATE(2424), 1, sym_with_item, - STATE(2666), 1, + STATE(2663), 1, sym_with_clause, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51604,7 +51683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51621,62 +51700,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29850] = 24, - ACTIONS(303), 1, + [30358] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_await, - ACTIONS(320), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(666), 1, - anon_sym_LBRACK, - ACTIONS(1077), 1, - anon_sym_not, - ACTIONS(1431), 1, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(1433), 1, + ACTIONS(637), 1, + anon_sym_LBRACK, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(955), 1, + STATE(845), 1, sym_primary_expression, - STATE(1003), 1, + STATE(954), 1, sym_string, - STATE(1300), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1919), 1, + STATE(1825), 1, sym_expression, - STATE(2267), 1, - sym_with_item, - STATE(2673), 1, - sym_with_clause, - STATE(2772), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(314), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(308), 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(316), 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(1737), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51684,7 +51762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51701,61 +51779,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29954] = 23, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(797), 1, - anon_sym_LBRACK, - ACTIONS(801), 1, + [30460] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(807), 1, - sym_string_start, - ACTIONS(825), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(831), 1, - anon_sym_await, - ACTIONS(1157), 1, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, sym_identifier, - ACTIONS(1249), 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, - ACTIONS(1255), 1, - anon_sym_lambda, - STATE(919), 1, + STATE(845), 1, sym_primary_expression, - STATE(970), 1, + STATE(954), 1, sym_string, - STATE(1254), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1795), 1, + STATE(1825), 1, sym_expression, - STATE(2626), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(803), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(817), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - STATE(2100), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(799), 3, + ACTIONS(1475), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(815), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(787), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1689), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51763,7 +51841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1148), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51780,125 +51858,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30056] = 10, - ACTIONS(276), 1, - anon_sym_COMMA, - ACTIONS(284), 1, - anon_sym_COLON_EQ, - ACTIONS(1453), 1, - anon_sym_for, - ACTIONS(1455), 1, - anon_sym_with, - ACTIONS(1457), 1, - anon_sym_def, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(296), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(312), 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(271), 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(269), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + [30562] = 23, + ACTIONS(735), 1, anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, + ACTIONS(743), 1, 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(303), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(310), 1, - anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_await, - ACTIONS(320), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(871), 1, sym_identifier, - ACTIONS(656), 1, - anon_sym_LPAREN, - ACTIONS(666), 1, - anon_sym_LBRACK, - ACTIONS(1077), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(893), 1, + anon_sym_await, + ACTIONS(1273), 1, anon_sym_STAR, - STATE(955), 1, + ACTIONS(1275), 1, + anon_sym_lambda, + STATE(893), 1, sym_primary_expression, - STATE(1003), 1, + STATE(958), 1, sym_string, - STATE(1300), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1866), 1, + STATE(1820), 1, sym_expression, - STATE(2691), 1, - sym_expression_list, - STATE(2772), 1, + STATE(2645), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(314), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(308), 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(316), 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(1737), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51906,7 +51920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51923,60 +51937,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30232] = 23, - ACTIONS(303), 1, + [30664] = 23, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1291), 1, - anon_sym_COLON, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1904), 1, + STATE(1826), 1, sym_expression, - STATE(2772), 1, + STATE(2631), 1, + sym_expression_list, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51984,7 +51998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52001,60 +52015,126 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30333] = 23, - ACTIONS(303), 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(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1297), 1, - anon_sym_COLON, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1904), 1, + STATE(1880), 1, sym_expression, - STATE(2772), 1, + STATE(2506), 1, + sym_with_item, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52062,7 +52142,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52079,60 +52159,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30434] = 23, - ACTIONS(303), 1, + [30943] = 23, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(1459), 1, + ACTIONS(1481), 1, anon_sym_COLON, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1966), 1, + STATE(1969), 1, sym_expression, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52140,7 +52220,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52157,60 +52237,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30535] = 23, - ACTIONS(767), 1, - anon_sym_LPAREN, - ACTIONS(775), 1, - anon_sym_LBRACK, - ACTIONS(779), 1, + [31044] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(785), 1, - sym_string_start, - ACTIONS(1051), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1055), 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(1339), 1, anon_sym_STAR, - STATE(952), 1, + STATE(845), 1, sym_primary_expression, - STATE(985), 1, + STATE(954), 1, sym_string, - STATE(1376), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1978), 1, + STATE(1778), 1, sym_expression, - STATE(2545), 1, - sym_with_item, - STATE(2639), 1, + STATE(2535), 1, + sym_expression_list, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1045), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1043), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(765), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52218,7 +52298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52235,60 +52315,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30636] = 23, - ACTIONS(303), 1, + [31145] = 23, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(955), 1, + ACTIONS(1483), 1, + anon_sym_COLON, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1919), 1, + STATE(1902), 1, sym_expression, - STATE(2551), 1, - sym_with_item, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52296,7 +52376,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52313,90 +52393,24 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30737] = 10, - ACTIONS(276), 1, - anon_sym_COMMA, - ACTIONS(284), 1, - anon_sym_COLON_EQ, - ACTIONS(1461), 1, - anon_sym_for, - ACTIONS(1463), 1, - anon_sym_with, - ACTIONS(1465), 1, - anon_sym_def, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(296), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(312), 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(271), 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(269), 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, - [30812] = 11, - ACTIONS(276), 1, + [31246] = 10, + ACTIONS(272), 1, anon_sym_COMMA, - ACTIONS(284), 1, + ACTIONS(280), 1, anon_sym_COLON_EQ, - ACTIONS(286), 1, - anon_sym_COLON, - ACTIONS(296), 1, - anon_sym_EQ, - ACTIONS(1467), 1, + ACTIONS(1477), 1, sym_identifier, - ACTIONS(1469), 1, + ACTIONS(1479), 1, sym_string_start, - STATE(2306), 1, + STATE(2435), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(269), 10, + ACTIONS(292), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(265), 10, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -52407,7 +52421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(312), 13, + ACTIONS(308), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -52421,7 +52435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(271), 22, + ACTIONS(267), 22, anon_sym_as, anon_sym_STAR, anon_sym_GT_GT, @@ -52444,60 +52458,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_LT, anon_sym_GT, - [30889] = 23, - ACTIONS(303), 1, + [31321] = 23, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(1471), 1, + ACTIONS(1287), 1, anon_sym_COLON, - STATE(955), 1, + ACTIONS(1421), 1, + anon_sym_STAR, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1966), 1, + STATE(1923), 1, sym_expression, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52505,7 +52519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52522,60 +52536,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30990] = 23, - ACTIONS(303), 1, + [31422] = 23, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(955), 1, + ACTIONS(1485), 1, + anon_sym_COLON, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1872), 1, + STATE(1902), 1, sym_expression, - STATE(2670), 1, - sym_expression_list, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52583,7 +52597,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52600,60 +52614,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31091] = 23, - ACTIONS(303), 1, + [31523] = 23, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(721), 1, + anon_sym_LBRACK, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(731), 1, + sym_string_start, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(404), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(656), 1, - anon_sym_LPAREN, - ACTIONS(666), 1, - anon_sym_LBRACK, - ACTIONS(1077), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1303), 1, anon_sym_STAR, - ACTIONS(1473), 1, - anon_sym_COLON, - STATE(955), 1, + STATE(953), 1, sym_primary_expression, - STATE(1003), 1, + STATE(995), 1, sym_string, - STATE(1300), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1966), 1, + STATE(1950), 1, sym_expression, - STATE(2772), 1, + STATE(2483), 1, + sym_with_item, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(314), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(1029), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 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(1737), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52661,7 +52675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52678,60 +52692,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31192] = 23, - ACTIONS(303), 1, + [31624] = 23, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(955), 1, + ACTIONS(1487), 1, + anon_sym_COLON, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1853), 1, + STATE(1902), 1, sym_expression, - STATE(2769), 1, - sym_expression_list, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52739,7 +52753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52756,125 +52770,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31293] = 10, - ACTIONS(276), 1, - anon_sym_COMMA, - ACTIONS(284), 1, - anon_sym_COLON_EQ, - ACTIONS(1467), 1, - sym_identifier, - ACTIONS(1469), 1, - sym_string_start, - STATE(2306), 1, - sym_string, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(296), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(269), 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(312), 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(271), 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, - [31368] = 23, - ACTIONS(67), 1, + [31725] = 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(379), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(402), 1, - anon_sym_await, - ACTIONS(637), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(645), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1319), 1, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1289), 1, + anon_sym_COLON, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(853), 1, + STATE(952), 1, sym_primary_expression, - STATE(953), 1, + STATE(984), 1, sym_string, - STATE(1049), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1923), 1, sym_expression, - STATE(2584), 1, - sym_expression_list, - STATE(2724), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(391), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(387), 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(1659), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52882,7 +52831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1052), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52899,60 +52848,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31469] = 23, - ACTIONS(303), 1, + [31826] = 23, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(1475), 1, - anon_sym_COLON, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1966), 1, + STATE(1849), 1, sym_expression, - STATE(2772), 1, + STATE(2671), 1, + sym_expression_list, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52960,7 +52909,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52977,60 +52926,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31570] = 23, - ACTIONS(303), 1, + [31927] = 23, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(1477), 1, - anon_sym_COLON, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1942), 1, + STATE(1850), 1, sym_expression, - STATE(2772), 1, + STATE(2680), 1, + sym_expression_list, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53038,7 +52987,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53055,60 +53004,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31671] = 23, - ACTIONS(303), 1, + [32028] = 23, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(1479), 1, + ACTIONS(1489), 1, anon_sym_COLON, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1946), 1, + STATE(1936), 1, sym_expression, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53116,7 +53065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53133,60 +53082,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31772] = 23, - ACTIONS(303), 1, + [32129] = 23, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1865), 1, + STATE(1854), 1, sym_expression, - STATE(2682), 1, + STATE(2662), 1, sym_expression_list, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53194,7 +53143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53211,58 +53160,125 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31873] = 22, - ACTIONS(723), 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(731), 1, + anon_sym_as, + anon_sym_if, + anon_sym_in, anon_sym_LBRACK, - ACTIONS(735), 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(741), 1, + ACTIONS(306), 1, + anon_sym_lambda, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, sym_string_start, - ACTIONS(833), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(851), 1, - anon_sym_lambda, - ACTIONS(855), 1, - anon_sym_await, - ACTIONS(1265), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(880), 1, + ACTIONS(1497), 1, + anon_sym_COLON, + STATE(952), 1, sym_primary_expression, - STATE(963), 1, + STATE(984), 1, sym_string, - STATE(1213), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1902), 1, sym_expression, - STATE(2646), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(737), 2, - sym_ellipsis, - sym_float, - ACTIONS(843), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(733), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(841), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(721), 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(1767), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53270,7 +53286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1190), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53287,58 +53303,123 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31971] = 22, - ACTIONS(674), 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, - ACTIONS(682), 1, + anon_sym_as, + anon_sym_if, + anon_sym_in, anon_sym_LBRACK, - ACTIONS(686), 1, - anon_sym_LBRACE, - ACTIONS(692), 1, - sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, anon_sym_not, - ACTIONS(1017), 1, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [32481] = 22, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1139), 1, - sym_identifier, - ACTIONS(1149), 1, + ACTIONS(314), 1, anon_sym_await, - STATE(888), 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(961), 1, + STATE(984), 1, sym_string, - STATE(1212), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1769), 1, + STATE(2002), 1, sym_expression, - STATE(2787), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(688), 2, - sym_ellipsis, - sym_float, - ACTIONS(1147), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(684), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1145), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(672), 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(1776), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53346,7 +53427,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1251), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53363,58 +53444,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32069] = 22, - ACTIONS(674), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(686), 1, + [32579] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(692), 1, - sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, - anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1139), 1, - sym_identifier, - ACTIONS(1149), 1, + ACTIONS(314), 1, anon_sym_await, - STATE(888), 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(961), 1, + STATE(984), 1, sym_string, - STATE(1212), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1777), 1, + STATE(2086), 1, sym_expression, - STATE(2787), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(688), 2, - sym_ellipsis, - sym_float, - ACTIONS(1147), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(684), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1145), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(672), 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(1776), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53422,7 +53503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1251), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53439,58 +53520,118 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32167] = 22, - ACTIONS(767), 1, + [32677] = 6, + ACTIONS(1509), 1, + anon_sym_except, + ACTIONS(1512), 1, + anon_sym_except_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(482), 3, + sym_except_clause, + sym_except_group_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1505), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(775), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(779), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(785), 1, - sym_string_start, - ACTIONS(1051), 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, - ACTIONS(1053), 1, anon_sym_lambda, - ACTIONS(1055), 1, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(1293), 1, + 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(1339), 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(952), 1, + STATE(845), 1, sym_primary_expression, - STATE(985), 1, + STATE(954), 1, sym_string, - STATE(1376), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1736), 1, + STATE(1946), 1, sym_expression, - STATE(2639), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1045), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1043), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(765), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53498,7 +53639,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53515,58 +53656,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32265] = 22, - ACTIONS(767), 1, - anon_sym_LPAREN, - ACTIONS(775), 1, - anon_sym_LBRACK, - ACTIONS(779), 1, + [32841] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(785), 1, - sym_string_start, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1055), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, sym_identifier, - ACTIONS(1339), 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(952), 1, sym_primary_expression, - STATE(985), 1, + STATE(984), 1, sym_string, - STATE(1376), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1738), 1, + STATE(1725), 1, sym_expression, - STATE(2639), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, - sym_ellipsis, - sym_float, - ACTIONS(1045), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1043), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(765), 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(1721), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53574,7 +53715,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53591,58 +53732,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32363] = 22, - ACTIONS(767), 1, - anon_sym_LPAREN, - ACTIONS(775), 1, - anon_sym_LBRACK, - ACTIONS(779), 1, + [32939] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(785), 1, - sym_string_start, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1055), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, sym_identifier, - ACTIONS(1339), 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(952), 1, sym_primary_expression, - STATE(985), 1, + STATE(984), 1, sym_string, - STATE(1376), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1739), 1, + STATE(1726), 1, sym_expression, - STATE(2639), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, - sym_ellipsis, - sym_float, - ACTIONS(1045), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1043), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(765), 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(1721), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53650,7 +53791,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53667,58 +53808,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32461] = 22, - ACTIONS(767), 1, - anon_sym_LPAREN, - ACTIONS(775), 1, - anon_sym_LBRACK, - ACTIONS(779), 1, + [33037] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(785), 1, - sym_string_start, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1055), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, sym_identifier, - ACTIONS(1339), 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(952), 1, sym_primary_expression, - STATE(985), 1, + STATE(984), 1, sym_string, - STATE(1376), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1740), 1, + STATE(1728), 1, sym_expression, - STATE(2639), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, - sym_ellipsis, - sym_float, - ACTIONS(1045), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1043), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(765), 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(1721), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53726,7 +53867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53743,58 +53884,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32559] = 22, - ACTIONS(767), 1, - anon_sym_LPAREN, - ACTIONS(775), 1, - anon_sym_LBRACK, - ACTIONS(779), 1, + [33135] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(785), 1, - sym_string_start, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1055), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, sym_identifier, - ACTIONS(1339), 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(952), 1, sym_primary_expression, - STATE(985), 1, + STATE(984), 1, sym_string, - STATE(1376), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1741), 1, + STATE(1729), 1, sym_expression, - STATE(2639), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, - sym_ellipsis, - sym_float, - ACTIONS(1045), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1043), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(765), 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(1721), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53802,7 +53943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53819,58 +53960,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32657] = 22, - ACTIONS(767), 1, - anon_sym_LPAREN, - ACTIONS(775), 1, - anon_sym_LBRACK, - ACTIONS(779), 1, + [33233] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(785), 1, - sym_string_start, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1055), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, sym_identifier, - ACTIONS(1339), 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(952), 1, sym_primary_expression, - STATE(985), 1, + STATE(984), 1, sym_string, - STATE(1376), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1720), 1, + STATE(1730), 1, sym_expression, - STATE(2639), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, - sym_ellipsis, - sym_float, - ACTIONS(1045), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1043), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(765), 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(1721), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53878,7 +54019,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53895,58 +54036,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32755] = 22, - ACTIONS(767), 1, - anon_sym_LPAREN, - ACTIONS(775), 1, - anon_sym_LBRACK, - ACTIONS(779), 1, + [33331] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(785), 1, - sym_string_start, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1055), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, sym_identifier, - ACTIONS(1339), 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(952), 1, sym_primary_expression, - STATE(985), 1, + STATE(984), 1, sym_string, - STATE(1376), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1732), 1, + STATE(1923), 1, sym_expression, - STATE(2639), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, - sym_ellipsis, - sym_float, - ACTIONS(1045), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1043), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(765), 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(1721), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53954,7 +54095,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53971,58 +54112,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32853] = 22, - ACTIONS(745), 1, - anon_sym_LPAREN, - ACTIONS(753), 1, - anon_sym_LBRACK, - ACTIONS(757), 1, + [33429] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(763), 1, - sym_string_start, - ACTIONS(993), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(997), 1, - anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, sym_identifier, - ACTIONS(1345), 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(972), 1, + STATE(845), 1, sym_primary_expression, - STATE(1098), 1, + STATE(954), 1, sym_string, - STATE(1423), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1746), 1, + STATE(1805), 1, sym_expression, - STATE(2595), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54030,7 +54171,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54047,58 +54188,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32951] = 22, - ACTIONS(745), 1, - anon_sym_LPAREN, - ACTIONS(753), 1, - anon_sym_LBRACK, - ACTIONS(757), 1, + [33527] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(763), 1, - sym_string_start, - ACTIONS(993), 1, - anon_sym_not, - ACTIONS(995), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, sym_identifier, - ACTIONS(1345), 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(972), 1, + STATE(952), 1, sym_primary_expression, - STATE(1098), 1, + STATE(984), 1, sym_string, - STATE(1423), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1747), 1, + STATE(1739), 1, sym_expression, - STATE(2595), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, - sym_ellipsis, - sym_float, - ACTIONS(987), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 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(1743), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54106,7 +54247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54123,58 +54264,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33049] = 22, - ACTIONS(745), 1, - anon_sym_LPAREN, - ACTIONS(753), 1, - anon_sym_LBRACK, - ACTIONS(757), 1, + [33625] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(763), 1, - sym_string_start, - ACTIONS(993), 1, - anon_sym_not, - ACTIONS(995), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, sym_identifier, - ACTIONS(1345), 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(972), 1, + STATE(952), 1, sym_primary_expression, - STATE(1098), 1, + STATE(984), 1, sym_string, - STATE(1423), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1748), 1, + STATE(1731), 1, sym_expression, - STATE(2595), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, - sym_ellipsis, - sym_float, - ACTIONS(987), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 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(1743), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54182,7 +54323,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54199,58 +54340,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33147] = 22, - ACTIONS(745), 1, - anon_sym_LPAREN, - ACTIONS(753), 1, - anon_sym_LBRACK, - ACTIONS(757), 1, + [33723] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(763), 1, - sym_string_start, - ACTIONS(993), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(997), 1, - anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, sym_identifier, - ACTIONS(1345), 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(972), 1, + STATE(845), 1, sym_primary_expression, - STATE(1098), 1, + STATE(954), 1, sym_string, - STATE(1423), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1781), 1, sym_expression, - STATE(2595), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54258,7 +54399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54275,58 +54416,134 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33245] = 22, - ACTIONS(745), 1, + [33821] = 22, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(306), 1, + anon_sym_lambda, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, + sym_identifier, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + 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(1975), 1, + sym_expression, + STATE(2729), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(285), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1723), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1377), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [33919] = 22, + ACTIONS(691), 1, + anon_sym_LPAREN, + ACTIONS(699), 1, + anon_sym_LBRACK, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1155), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(972), 1, + STATE(857), 1, sym_primary_expression, - STATE(1098), 1, + STATE(969), 1, sym_string, - STATE(1423), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1750), 1, + STATE(1694), 1, sym_expression, - STATE(2595), 1, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54334,7 +54551,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54351,58 +54568,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33343] = 22, - ACTIONS(745), 1, + [34017] = 22, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1155), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(972), 1, + STATE(857), 1, sym_primary_expression, - STATE(1098), 1, + STATE(969), 1, sym_string, - STATE(1423), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1754), 1, + STATE(1704), 1, sym_expression, - STATE(2595), 1, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54410,7 +54627,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54427,58 +54644,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33441] = 22, - ACTIONS(745), 1, + [34115] = 22, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1155), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(972), 1, + STATE(857), 1, sym_primary_expression, - STATE(1098), 1, + STATE(969), 1, sym_string, - STATE(1423), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1742), 1, + STATE(1711), 1, sym_expression, - STATE(2595), 1, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54486,7 +54703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54503,58 +54720,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33539] = 22, - ACTIONS(699), 1, + [34213] = 22, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(709), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(881), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(1125), 1, - sym_identifier, - ACTIONS(1133), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1155), 1, + sym_identifier, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(956), 1, + STATE(857), 1, sym_primary_expression, - STATE(977), 1, + STATE(969), 1, sym_string, - STATE(1407), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1674), 1, sym_expression, - STATE(2712), 1, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1131), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(711), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1129), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 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, @@ -54562,7 +54779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54579,58 +54796,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33637] = 22, - ACTIONS(67), 1, + [34311] = 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(379), 1, - sym_identifier, - ACTIONS(402), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(637), 1, - anon_sym_LPAREN, - ACTIONS(645), 1, - anon_sym_LBRACK, - ACTIONS(1319), 1, + ACTIONS(1155), 1, + sym_identifier, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(853), 1, + STATE(857), 1, sym_primary_expression, - STATE(953), 1, + STATE(969), 1, sym_string, - STATE(1049), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1658), 1, + STATE(1680), 1, sym_expression, - STATE(2724), 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(391), 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(387), 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(1659), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54638,7 +54855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1052), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54655,61 +54872,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33735] = 23, - ACTIONS(745), 1, + [34409] = 22, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(977), 1, + anon_sym_STAR, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(1345), 1, - anon_sym_STAR, - ACTIONS(1481), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1487), 1, + ACTIONS(1145), 1, anon_sym_await, - STATE(988), 1, + STATE(901), 1, sym_primary_expression, - STATE(1098), 1, + STATE(975), 1, sym_string, - STATE(1423), 1, + STATE(1197), 1, sym_list_splat_pattern, - STATE(1936), 1, + STATE(1920), 1, sym_expression, - STATE(2595), 1, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(1485), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - STATE(1199), 2, - sym_attribute, - sym_subscript, - ACTIONS(755), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1483), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54717,9 +54931,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 14, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -54732,58 +54948,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33835] = 22, - ACTIONS(67), 1, + [34507] = 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(379), 1, + ACTIONS(871), 1, sym_identifier, - ACTIONS(402), 1, + ACTIONS(887), 1, + anon_sym_not, + ACTIONS(889), 1, + anon_sym_lambda, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(637), 1, - anon_sym_LPAREN, - ACTIONS(645), 1, - anon_sym_LBRACK, - ACTIONS(1319), 1, + ACTIONS(1273), 1, anon_sym_STAR, - STATE(853), 1, + STATE(893), 1, sym_primary_expression, - STATE(953), 1, + STATE(958), 1, sym_string, - STATE(1049), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1651), 1, + STATE(1789), 1, sym_expression, - STATE(2724), 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(391), 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(387), 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(1659), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54791,7 +55007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1052), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54808,58 +55024,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33933] = 22, - ACTIONS(767), 1, + [34605] = 22, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(775), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(1055), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1155), 1, sym_identifier, - ACTIONS(1339), 1, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(952), 1, + STATE(857), 1, sym_primary_expression, - STATE(985), 1, + STATE(969), 1, sym_string, - STATE(1376), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1975), 1, + STATE(1670), 1, sym_expression, - STATE(2639), 1, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1045), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1043), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(765), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54867,7 +55083,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54884,58 +55100,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34031] = 22, - ACTIONS(767), 1, + [34703] = 22, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(775), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(1055), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1155), 1, sym_identifier, - ACTIONS(1339), 1, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(952), 1, + STATE(857), 1, sym_primary_expression, - STATE(985), 1, + STATE(969), 1, sym_string, - STATE(1376), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1971), 1, + STATE(1673), 1, sym_expression, - STATE(2639), 1, + STATE(2716), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1045), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1043), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(765), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54943,7 +55159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54960,58 +55176,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34129] = 22, - ACTIONS(767), 1, - anon_sym_LPAREN, - ACTIONS(775), 1, - anon_sym_LBRACK, - ACTIONS(779), 1, + [34801] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(785), 1, - sym_string_start, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1055), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, sym_identifier, - ACTIONS(1339), 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(952), 1, sym_primary_expression, - STATE(985), 1, + STATE(984), 1, sym_string, - STATE(1376), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1977), 1, + STATE(1935), 1, sym_expression, - STATE(2639), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, - sym_ellipsis, - sym_float, - ACTIONS(1045), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1043), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(765), 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(1721), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55019,7 +55235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55036,121 +55252,134 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34227] = 9, - ACTIONS(1493), 1, - anon_sym_else, - ACTIONS(1495), 1, - anon_sym_except, - ACTIONS(1497), 1, - anon_sym_finally, - STATE(704), 1, - sym_else_clause, - STATE(775), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(612), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1491), 12, - sym__dedent, + [34899] = 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(1648), 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(1489), 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, - [34299] = 22, - ACTIONS(674), 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, + [34997] = 22, + 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(692), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(871), 1, + sym_identifier, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(1139), 1, - sym_identifier, - ACTIONS(1149), 1, + ACTIONS(893), 1, anon_sym_await, - STATE(888), 1, + ACTIONS(1273), 1, + anon_sym_STAR, + STATE(893), 1, sym_primary_expression, - STATE(961), 1, + STATE(958), 1, sym_string, - STATE(1212), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1941), 1, + STATE(1763), 1, sym_expression, - STATE(2787), 1, + STATE(2645), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(688), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1147), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - ACTIONS(684), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1145), 3, + ACTIONS(879), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(672), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55158,7 +55387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1251), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55175,58 +55404,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34397] = 22, - ACTIONS(674), 1, + [35095] = 22, + 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(692), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(871), 1, + sym_identifier, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(1139), 1, - sym_identifier, - ACTIONS(1149), 1, + ACTIONS(893), 1, anon_sym_await, - STATE(888), 1, + ACTIONS(1273), 1, + anon_sym_STAR, + STATE(893), 1, sym_primary_expression, - STATE(961), 1, + STATE(958), 1, sym_string, - STATE(1212), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1947), 1, + STATE(1768), 1, sym_expression, - STATE(2787), 1, + STATE(2645), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(688), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1147), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - ACTIONS(684), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1145), 3, + ACTIONS(879), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(672), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55234,7 +55463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1251), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55251,58 +55480,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34495] = 22, - ACTIONS(767), 1, + [35193] = 22, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(775), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(871), 1, + sym_identifier, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(1055), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(1293), 1, - sym_identifier, - ACTIONS(1339), 1, + ACTIONS(1273), 1, anon_sym_STAR, - STATE(952), 1, + STATE(893), 1, sym_primary_expression, - STATE(985), 1, + STATE(958), 1, sym_string, - STATE(1376), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1963), 1, + STATE(1742), 1, sym_expression, - STATE(2639), 1, + STATE(2645), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1045), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1043), 3, + ACTIONS(879), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(765), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55310,7 +55539,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55327,58 +55556,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34593] = 22, - ACTIONS(789), 1, + [35291] = 22, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(797), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(801), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(807), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(871), 1, + sym_identifier, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(827), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(831), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(1157), 1, - sym_identifier, - ACTIONS(1249), 1, + ACTIONS(1273), 1, anon_sym_STAR, - STATE(919), 1, + STATE(893), 1, sym_primary_expression, - STATE(970), 1, + STATE(958), 1, sym_string, - STATE(1254), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1838), 1, + STATE(1743), 1, sym_expression, - STATE(2626), 1, + STATE(2645), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(803), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(817), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - ACTIONS(799), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(815), 3, + ACTIONS(879), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(787), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1689), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55386,7 +55615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1148), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55403,58 +55632,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34691] = 22, - ACTIONS(699), 1, + [35389] = 22, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(709), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(871), 1, + sym_identifier, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(881), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(1125), 1, - sym_identifier, - ACTIONS(1133), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1273), 1, anon_sym_STAR, - STATE(956), 1, + STATE(893), 1, sym_primary_expression, - STATE(977), 1, + STATE(958), 1, sym_string, - STATE(1407), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1804), 1, + STATE(1749), 1, sym_expression, - STATE(2712), 1, + STATE(2645), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1131), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - ACTIONS(711), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1129), 3, + ACTIONS(879), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 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, @@ -55462,7 +55691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55479,121 +55708,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34789] = 9, - ACTIONS(1493), 1, - anon_sym_else, - ACTIONS(1497), 1, - anon_sym_finally, - ACTIONS(1499), 1, - anon_sym_except_STAR, - STATE(704), 1, - sym_else_clause, - STATE(775), 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(1491), 12, - sym__dedent, - sym_string_start, + [35487] = 22, + ACTIONS(735), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(743), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(747), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1489), 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(753), 1, + sym_string_start, + ACTIONS(871), 1, sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [34861] = 22, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(379), 1, - sym_identifier, - ACTIONS(402), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(637), 1, - anon_sym_LPAREN, - ACTIONS(645), 1, - anon_sym_LBRACK, - ACTIONS(1319), 1, + ACTIONS(1273), 1, anon_sym_STAR, - STATE(853), 1, + STATE(893), 1, sym_primary_expression, - STATE(953), 1, + STATE(958), 1, sym_string, - STATE(1049), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1858), 1, + STATE(1755), 1, sym_expression, - STATE(2724), 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(391), 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(387), 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(1659), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55601,7 +55767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1052), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55618,58 +55784,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34959] = 22, - ACTIONS(303), 1, + [35585] = 22, + ACTIONS(735), 1, + anon_sym_LPAREN, + ACTIONS(743), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(310), 1, - anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_await, - ACTIONS(320), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(871), 1, sym_identifier, - ACTIONS(656), 1, - anon_sym_LPAREN, - ACTIONS(666), 1, - anon_sym_LBRACK, - ACTIONS(1077), 1, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(889), 1, + anon_sym_lambda, + ACTIONS(893), 1, + anon_sym_await, + ACTIONS(1273), 1, anon_sym_STAR, - STATE(955), 1, + STATE(893), 1, sym_primary_expression, - STATE(1003), 1, + STATE(958), 1, sym_string, - STATE(1300), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(2095), 1, + STATE(1752), 1, sym_expression, - STATE(2772), 1, + STATE(2645), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(314), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(881), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 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(1737), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55677,7 +55843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55694,58 +55860,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35057] = 22, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_await, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(404), 1, - sym_identifier, - ACTIONS(656), 1, - anon_sym_LPAREN, + [35683] = 22, ACTIONS(666), 1, + anon_sym_LPAREN, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(977), 1, anon_sym_STAR, - STATE(955), 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(1003), 1, + STATE(975), 1, sym_string, - STATE(1300), 1, + STATE(1197), 1, sym_list_splat_pattern, - STATE(1966), 1, + STATE(1760), 1, sym_expression, - STATE(2772), 1, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(314), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(1143), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 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(1737), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55753,7 +55919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55770,58 +55936,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35155] = 22, - ACTIONS(699), 1, + [35781] = 22, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(709), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(977), 1, + anon_sym_STAR, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(881), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(1125), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1133), 1, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1275), 1, - anon_sym_STAR, - STATE(956), 1, + STATE(901), 1, sym_primary_expression, - STATE(977), 1, + STATE(975), 1, sym_string, - STATE(1407), 1, + STATE(1197), 1, sym_list_splat_pattern, - STATE(1796), 1, + STATE(1761), 1, sym_expression, - STATE(2712), 1, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(1131), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(711), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1129), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 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, @@ -55829,7 +55995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55846,58 +56012,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35253] = 22, - ACTIONS(67), 1, + [35879] = 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(379), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(402), 1, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(637), 1, - anon_sym_LPAREN, - ACTIONS(645), 1, - anon_sym_LBRACK, - ACTIONS(1319), 1, - anon_sym_STAR, - STATE(853), 1, + STATE(901), 1, sym_primary_expression, - STATE(953), 1, + STATE(975), 1, sym_string, - STATE(1049), 1, + STATE(1197), 1, sym_list_splat_pattern, - STATE(1653), 1, + STATE(1764), 1, sym_expression, - STATE(2724), 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(391), 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(387), 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(1659), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55905,7 +56071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1052), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55922,58 +56088,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35351] = 22, - ACTIONS(67), 1, + [35977] = 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(379), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(402), 1, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(637), 1, - anon_sym_LPAREN, - ACTIONS(645), 1, - anon_sym_LBRACK, - ACTIONS(1319), 1, - anon_sym_STAR, - STATE(853), 1, + STATE(901), 1, sym_primary_expression, - STATE(953), 1, + STATE(975), 1, sym_string, - STATE(1049), 1, + STATE(1197), 1, sym_list_splat_pattern, - STATE(1908), 1, + STATE(1765), 1, sym_expression, - STATE(2724), 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(391), 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(387), 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(1659), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55981,7 +56147,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1052), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55998,58 +56164,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35449] = 22, - ACTIONS(723), 1, + [36075] = 22, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(741), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(833), 1, - sym_identifier, - ACTIONS(849), 1, + ACTIONS(977), 1, + anon_sym_STAR, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(851), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(855), 1, + ACTIONS(1135), 1, + sym_identifier, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1265), 1, - anon_sym_STAR, - STATE(880), 1, + STATE(901), 1, sym_primary_expression, - STATE(963), 1, + STATE(975), 1, sym_string, - STATE(1213), 1, + STATE(1197), 1, sym_list_splat_pattern, - STATE(1762), 1, + STATE(1766), 1, sym_expression, - STATE(2646), 1, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(737), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(843), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(733), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(841), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(721), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56057,7 +56223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1190), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56074,58 +56240,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35547] = 22, - ACTIONS(767), 1, + [36173] = 22, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(775), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(977), 1, + anon_sym_STAR, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(1055), 1, - anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1339), 1, - anon_sym_STAR, - STATE(952), 1, + ACTIONS(1145), 1, + anon_sym_await, + STATE(901), 1, sym_primary_expression, - STATE(985), 1, + STATE(975), 1, sym_string, - STATE(1376), 1, + STATE(1197), 1, sym_list_splat_pattern, - STATE(1903), 1, + STATE(1759), 1, sym_expression, - STATE(2639), 1, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(1045), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1043), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(765), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56133,7 +56299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56150,310 +56316,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35645] = 9, - ACTIONS(1505), 1, - anon_sym_else, - ACTIONS(1507), 1, - anon_sym_except, - ACTIONS(1509), 1, - anon_sym_finally, - STATE(695), 1, - sym_else_clause, - STATE(757), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(616), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1501), 12, - sym_string_start, - ts_builtin_sym_end, + [36271] = 22, + ACTIONS(666), 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(1503), 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, - [35717] = 9, - ACTIONS(1505), 1, - anon_sym_else, - ACTIONS(1509), 1, - anon_sym_finally, - ACTIONS(1511), 1, - anon_sym_except_STAR, - STATE(695), 1, - sym_else_clause, - STATE(757), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(617), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1501), 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(1503), 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, - [35789] = 9, - ACTIONS(1493), 1, - anon_sym_else, - ACTIONS(1495), 1, - anon_sym_except, - ACTIONS(1497), 1, - anon_sym_finally, - STATE(687), 1, - sym_else_clause, - STATE(730), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(612), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1501), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(674), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(678), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1503), 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, - [35861] = 9, - ACTIONS(1493), 1, - anon_sym_else, - ACTIONS(1497), 1, - anon_sym_finally, - ACTIONS(1499), 1, - anon_sym_except_STAR, - STATE(687), 1, - sym_else_clause, - STATE(730), 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(1501), 12, - sym__dedent, + ACTIONS(684), 1, sym_string_start, - anon_sym_LPAREN, + ACTIONS(977), 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(1503), 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(985), 1, anon_sym_not, + ACTIONS(987), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [35933] = 22, - ACTIONS(723), 1, - anon_sym_LPAREN, - ACTIONS(731), 1, - anon_sym_LBRACK, - ACTIONS(735), 1, - anon_sym_LBRACE, - ACTIONS(741), 1, - sym_string_start, - ACTIONS(833), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(849), 1, - anon_sym_not, - ACTIONS(851), 1, - anon_sym_lambda, - ACTIONS(855), 1, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1265), 1, - anon_sym_STAR, - STATE(880), 1, + STATE(901), 1, sym_primary_expression, - STATE(963), 1, + STATE(975), 1, sym_string, - STATE(1213), 1, + STATE(1197), 1, sym_list_splat_pattern, - STATE(1768), 1, + STATE(1757), 1, sym_expression, - STATE(2646), 1, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(737), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(843), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(733), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(841), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(721), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56461,7 +56375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1190), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56478,7 +56392,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36031] = 22, + [36369] = 22, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -56487,25 +56401,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym_string_start, - ACTIONS(379), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(402), 1, + ACTIONS(398), 1, anon_sym_await, - ACTIONS(637), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(645), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1319), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(853), 1, + STATE(845), 1, sym_primary_expression, - STATE(953), 1, + STATE(954), 1, sym_string, - STATE(1049), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1655), 1, + STATE(1658), 1, sym_expression, - STATE(2724), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -56513,14 +56427,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(391), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(387), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -56529,7 +56443,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1659), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56537,7 +56451,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1052), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56554,58 +56468,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36129] = 22, - ACTIONS(723), 1, + [36467] = 22, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(741), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(833), 1, - sym_identifier, - ACTIONS(849), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(851), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(855), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1265), 1, + ACTIONS(1253), 1, + sym_identifier, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(880), 1, + STATE(953), 1, sym_primary_expression, - STATE(963), 1, + STATE(995), 1, sym_string, - STATE(1213), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1751), 1, + STATE(1732), 1, sym_expression, - STATE(2646), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(737), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(843), 2, + ACTIONS(1029), 2, anon_sym_match, anon_sym_type, - ACTIONS(733), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(841), 3, + ACTIONS(1027), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(721), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56613,7 +56527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1190), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56630,58 +56544,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36227] = 22, - ACTIONS(303), 1, + [36565] = 22, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(721), 1, + anon_sym_LBRACK, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(731), 1, + sym_string_start, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(404), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(656), 1, - anon_sym_LPAREN, - ACTIONS(666), 1, - anon_sym_LBRACK, - ACTIONS(1077), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(955), 1, + STATE(953), 1, sym_primary_expression, - STATE(1003), 1, + STATE(995), 1, sym_string, - STATE(1300), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1724), 1, + STATE(1736), 1, sym_expression, - STATE(2772), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(314), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(1029), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 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(1737), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56689,7 +56603,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56706,58 +56620,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36325] = 22, - ACTIONS(303), 1, + [36663] = 22, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(721), 1, + anon_sym_LBRACK, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(731), 1, + sym_string_start, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(404), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(656), 1, - anon_sym_LPAREN, - ACTIONS(666), 1, - anon_sym_LBRACK, - ACTIONS(1077), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(955), 1, + STATE(953), 1, sym_primary_expression, - STATE(1003), 1, + STATE(995), 1, sym_string, - STATE(1300), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1725), 1, + STATE(1737), 1, sym_expression, - STATE(2772), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(314), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(1029), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 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(1737), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56765,7 +56679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56782,58 +56696,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36423] = 22, - ACTIONS(67), 1, + [36761] = 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(379), 1, - sym_identifier, - ACTIONS(402), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(637), 1, - anon_sym_LPAREN, - ACTIONS(645), 1, - anon_sym_LBRACK, - ACTIONS(1319), 1, + ACTIONS(1253), 1, + sym_identifier, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(853), 1, - sym_primary_expression, STATE(953), 1, + sym_primary_expression, + STATE(995), 1, sym_string, - STATE(1049), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1656), 1, + STATE(1738), 1, sym_expression, - STATE(2724), 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(391), 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(387), 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(1659), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56841,7 +56755,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1052), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56858,58 +56772,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36521] = 22, - ACTIONS(303), 1, + [36859] = 22, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(721), 1, + anon_sym_LBRACK, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(731), 1, + sym_string_start, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(404), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(656), 1, - anon_sym_LPAREN, - ACTIONS(666), 1, - anon_sym_LBRACK, - ACTIONS(1077), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(955), 1, + STATE(953), 1, sym_primary_expression, - STATE(1003), 1, + STATE(995), 1, sym_string, - STATE(1300), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1922), 1, + STATE(1740), 1, sym_expression, - STATE(2772), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(314), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(1029), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 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(1737), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56917,7 +56831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56934,58 +56848,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36619] = 22, - ACTIONS(303), 1, + [36957] = 22, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(721), 1, + anon_sym_LBRACK, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(731), 1, + sym_string_start, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(404), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(656), 1, - anon_sym_LPAREN, - ACTIONS(666), 1, - anon_sym_LBRACK, - ACTIONS(1077), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(955), 1, + STATE(953), 1, sym_primary_expression, - STATE(1003), 1, + STATE(995), 1, sym_string, - STATE(1300), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(2007), 1, + STATE(1721), 1, sym_expression, - STATE(2772), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(314), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(1029), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 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(1737), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56993,7 +56907,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57010,58 +56924,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36717] = 22, - ACTIONS(67), 1, + [37055] = 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(379), 1, - sym_identifier, - ACTIONS(402), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(637), 1, - anon_sym_LPAREN, - ACTIONS(645), 1, - anon_sym_LBRACK, - ACTIONS(1319), 1, + ACTIONS(1253), 1, + sym_identifier, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(853), 1, - sym_primary_expression, STATE(953), 1, + sym_primary_expression, + STATE(995), 1, sym_string, - STATE(1049), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1649), 1, + STATE(1727), 1, sym_expression, - STATE(2724), 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(391), 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(387), 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(1659), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57069,7 +56983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1052), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57086,58 +57000,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36815] = 22, - ACTIONS(303), 1, + [37153] = 22, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1003), 1, + anon_sym_not, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(404), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(656), 1, - anon_sym_LPAREN, - ACTIONS(666), 1, - anon_sym_LBRACK, - ACTIONS(1077), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(955), 1, + STATE(963), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1081), 1, sym_string, - STATE(1300), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1726), 1, + STATE(1745), 1, sym_expression, - STATE(2772), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(314), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(997), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 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(1737), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57145,7 +57059,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57162,58 +57076,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36913] = 22, - ACTIONS(303), 1, + [37251] = 22, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1003), 1, + anon_sym_not, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(404), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(656), 1, - anon_sym_LPAREN, - ACTIONS(666), 1, - anon_sym_LBRACK, - ACTIONS(1077), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(955), 1, + STATE(963), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1081), 1, sym_string, - STATE(1300), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1727), 1, + STATE(1771), 1, sym_expression, - STATE(2772), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(314), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(997), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 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(1737), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57221,7 +57135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57238,58 +57152,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37011] = 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(379), 1, - sym_identifier, - ACTIONS(402), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(637), 1, - anon_sym_LPAREN, - ACTIONS(645), 1, - anon_sym_LBRACK, - ACTIONS(1319), 1, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(853), 1, + STATE(963), 1, sym_primary_expression, - STATE(953), 1, + STATE(1081), 1, sym_string, - STATE(1049), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1657), 1, + STATE(1774), 1, sym_expression, - STATE(2724), 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(391), 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(387), 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(1659), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57297,7 +57211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1052), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57314,58 +57228,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37109] = 22, - ACTIONS(303), 1, + [37447] = 22, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1003), 1, + anon_sym_not, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(404), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(656), 1, - anon_sym_LPAREN, - ACTIONS(666), 1, - anon_sym_LBRACK, - ACTIONS(1077), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(955), 1, + STATE(963), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1081), 1, sym_string, - STATE(1300), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1728), 1, + STATE(1744), 1, sym_expression, - STATE(2772), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(314), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(997), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 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(1737), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57373,7 +57287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57390,58 +57304,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37207] = 22, - ACTIONS(699), 1, + [37545] = 22, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(709), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(881), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1125), 1, - sym_identifier, - ACTIONS(1133), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(956), 1, + STATE(963), 1, sym_primary_expression, - STATE(977), 1, + STATE(1081), 1, sym_string, - STATE(1407), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1873), 1, + STATE(1750), 1, sym_expression, - STATE(2712), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1131), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(711), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1129), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57449,7 +57363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57466,58 +57380,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37305] = 22, - ACTIONS(745), 1, + [37643] = 22, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(997), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(972), 1, + STATE(963), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1959), 1, + STATE(1751), 1, sym_expression, - STATE(2595), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57525,7 +57439,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57542,58 +57456,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37403] = 22, - ACTIONS(767), 1, + [37741] = 22, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(775), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1055), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1339), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(952), 1, + STATE(963), 1, sym_primary_expression, - STATE(985), 1, + STATE(1081), 1, sym_string, - STATE(1376), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1961), 1, + STATE(1776), 1, sym_expression, - STATE(2639), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1045), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1043), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(765), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57601,7 +57515,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57618,137 +57532,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37501] = 22, - ACTIONS(303), 1, + [37839] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_await, - ACTIONS(320), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(955), 1, + STATE(845), 1, sym_primary_expression, - STATE(1003), 1, + STATE(954), 1, sym_string, - STATE(1300), 1, - sym_list_splat_pattern, - STATE(1722), 1, - sym_expression, - STATE(2772), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(289), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(314), 2, - sym_ellipsis, - sym_float, - ACTIONS(282), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(308), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(316), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1737), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1392), 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, - [37599] = 23, - ACTIONS(674), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(686), 1, - anon_sym_LBRACE, - ACTIONS(692), 1, - sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, - anon_sym_not, - ACTIONS(1017), 1, - anon_sym_lambda, - ACTIONS(1513), 1, - sym_identifier, - ACTIONS(1519), 1, - anon_sym_await, - STATE(961), 1, - sym_string, - STATE(1021), 1, - sym_primary_expression, - STATE(1212), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1952), 1, + STATE(1898), 1, sym_expression, - STATE(2787), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(688), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1517), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - STATE(1253), 2, - sym_attribute, - sym_subscript, - ACTIONS(684), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1515), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(672), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57756,9 +57591,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1251), 14, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -57771,58 +57608,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37699] = 22, - ACTIONS(789), 1, + [37937] = 22, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(797), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(801), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(807), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(827), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(831), 1, - anon_sym_await, - ACTIONS(1157), 1, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1249), 1, + ACTIONS(1081), 1, + anon_sym_await, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(919), 1, + STATE(950), 1, sym_primary_expression, - STATE(970), 1, + STATE(985), 1, sym_string, - STATE(1254), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1676), 1, + STATE(1788), 1, sym_expression, - STATE(2626), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(803), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(817), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(799), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(815), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(787), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1689), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57830,7 +57667,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1148), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57847,58 +57684,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37797] = 22, - ACTIONS(67), 1, + [38035] = 23, + 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(379), 1, + ACTIONS(1307), 1, + anon_sym_STAR, + ACTIONS(1515), 1, sym_identifier, - ACTIONS(402), 1, + ACTIONS(1521), 1, anon_sym_await, - ACTIONS(637), 1, - anon_sym_LPAREN, - ACTIONS(645), 1, - anon_sym_LBRACK, - ACTIONS(1319), 1, - anon_sym_STAR, - STATE(853), 1, + STATE(1007), 1, sym_primary_expression, - STATE(953), 1, + STATE(1081), 1, sym_string, - STATE(1049), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1652), 1, + STATE(1932), 1, sym_expression, - STATE(2724), 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(391), 2, + ACTIONS(1519), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + STATE(1194), 2, + sym_attribute, + sym_subscript, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(387), 3, + ACTIONS(1517), 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(1659), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57906,11 +57746,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1052), 16, + STATE(1441), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -57923,58 +57761,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37895] = 22, - ACTIONS(303), 1, + [38135] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1904), 1, + STATE(2013), 1, sym_expression, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57982,7 +57820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57999,58 +57837,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37993] = 22, - ACTIONS(303), 1, + [38233] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2020), 1, + STATE(1904), 1, sym_expression, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58058,7 +57896,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58075,58 +57913,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38091] = 22, - ACTIONS(303), 1, + [38331] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(2070), 1, sym_expression, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58134,7 +57972,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58151,58 +57989,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38189] = 22, - ACTIONS(723), 1, + [38429] = 22, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(741), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(833), 1, - sym_identifier, - ACTIONS(849), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(851), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(855), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1265), 1, + ACTIONS(1253), 1, + sym_identifier, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(880), 1, + STATE(953), 1, sym_primary_expression, - STATE(963), 1, + STATE(995), 1, sym_string, - STATE(1213), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1752), 1, + STATE(1903), 1, sym_expression, - STATE(2646), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(737), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(843), 2, + ACTIONS(1029), 2, anon_sym_match, anon_sym_type, - ACTIONS(733), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(841), 3, + ACTIONS(1027), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(721), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58210,7 +58048,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1190), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58227,58 +58065,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38287] = 22, - ACTIONS(303), 1, + [38527] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2021), 1, + STATE(2037), 1, sym_expression, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58286,7 +58124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58303,58 +58141,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38385] = 22, - ACTIONS(699), 1, + [38625] = 22, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(709), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(881), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1125), 1, - sym_identifier, - ACTIONS(1133), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1253), 1, + sym_identifier, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(956), 1, + STATE(953), 1, sym_primary_expression, - STATE(977), 1, + STATE(995), 1, sym_string, - STATE(1407), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1828), 1, + STATE(1928), 1, sym_expression, - STATE(2712), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1131), 2, + ACTIONS(1029), 2, anon_sym_match, anon_sym_type, - ACTIONS(711), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1129), 3, + ACTIONS(1027), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 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, @@ -58362,7 +58200,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58379,58 +58217,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38483] = 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(379), 1, - sym_identifier, - ACTIONS(402), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(637), 1, - anon_sym_LPAREN, - ACTIONS(645), 1, - anon_sym_LBRACK, - ACTIONS(1319), 1, + ACTIONS(1155), 1, + sym_identifier, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(853), 1, + STATE(857), 1, sym_primary_expression, - STATE(953), 1, + STATE(969), 1, sym_string, - STATE(1049), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(2101), 1, + STATE(1840), 1, sym_expression, - STATE(2724), 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(391), 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(387), 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(1659), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58438,7 +58276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1052), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58455,58 +58293,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38581] = 22, - ACTIONS(674), 1, + [38821] = 22, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(692), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(1139), 1, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1149), 1, + ACTIONS(1081), 1, anon_sym_await, - STATE(888), 1, + ACTIONS(1243), 1, + anon_sym_STAR, + STATE(950), 1, sym_primary_expression, - STATE(961), 1, + STATE(985), 1, sym_string, - STATE(1212), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1764), 1, + STATE(1843), 1, sym_expression, - STATE(2787), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(688), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1147), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(684), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1145), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(672), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58514,7 +58352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1251), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58531,58 +58369,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38679] = 22, - ACTIONS(745), 1, - anon_sym_LPAREN, - ACTIONS(753), 1, - anon_sym_LBRACK, - ACTIONS(757), 1, + [38919] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(763), 1, - sym_string_start, - ACTIONS(993), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(997), 1, - anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, sym_identifier, - ACTIONS(1345), 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(972), 1, + STATE(845), 1, sym_primary_expression, - STATE(1098), 1, + STATE(954), 1, sym_string, - STATE(1423), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1948), 1, + STATE(1651), 1, sym_expression, - STATE(2595), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58590,7 +58428,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58607,124 +58445,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38777] = 9, - ACTIONS(1505), 1, - anon_sym_else, - ACTIONS(1509), 1, - anon_sym_finally, - ACTIONS(1511), 1, - anon_sym_except_STAR, - STATE(698), 1, - sym_else_clause, - STATE(807), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(617), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1491), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + [39017] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1489), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(69), 1, anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, sym_identifier, + ACTIONS(398), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [38849] = 23, - ACTIONS(767), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(775), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(779), 1, - anon_sym_LBRACE, - ACTIONS(785), 1, - sym_string_start, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1053), 1, - anon_sym_lambda, - ACTIONS(1339), 1, + ACTIONS(1293), 1, anon_sym_STAR, - ACTIONS(1521), 1, - sym_identifier, - ACTIONS(1527), 1, - anon_sym_await, - STATE(952), 1, + STATE(845), 1, sym_primary_expression, - STATE(985), 1, + STATE(954), 1, sym_string, - STATE(1376), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1974), 1, + STATE(2003), 1, sym_expression, - STATE(2639), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1525), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - STATE(1474), 2, - sym_attribute, - sym_subscript, - ACTIONS(777), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1523), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(765), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58732,9 +58504,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 14, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -58747,58 +58521,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38949] = 22, - ACTIONS(303), 1, + [39115] = 22, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(721), 1, + anon_sym_LBRACK, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(731), 1, + sym_string_start, + ACTIONS(1035), 1, + anon_sym_not, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(404), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(656), 1, - anon_sym_LPAREN, - ACTIONS(666), 1, - anon_sym_LBRACK, - ACTIONS(1077), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(955), 1, + STATE(953), 1, sym_primary_expression, - STATE(1003), 1, + STATE(995), 1, sym_string, - STATE(1300), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(2105), 1, + STATE(1958), 1, sym_expression, - STATE(2772), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(314), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(1029), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 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(1737), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58806,7 +58580,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58823,58 +58597,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39047] = 22, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_await, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(404), 1, - sym_identifier, - ACTIONS(656), 1, + [39213] = 23, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, + ACTIONS(725), 1, + anon_sym_LBRACE, + ACTIONS(731), 1, + sym_string_start, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1037), 1, + anon_sym_lambda, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(955), 1, + ACTIONS(1523), 1, + sym_identifier, + ACTIONS(1529), 1, + anon_sym_await, + STATE(994), 1, sym_primary_expression, - STATE(1003), 1, + STATE(995), 1, sym_string, - STATE(1300), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1729), 1, + STATE(1937), 1, sym_expression, - STATE(2772), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(314), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(1527), 2, + anon_sym_match, + anon_sym_type, + STATE(1362), 2, + sym_attribute, + sym_subscript, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(1525), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58882,11 +58659,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1381), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -58899,58 +58674,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39145] = 22, - ACTIONS(767), 1, - anon_sym_LPAREN, - ACTIONS(775), 1, - anon_sym_LBRACK, - ACTIONS(779), 1, + [39313] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(785), 1, - sym_string_start, - ACTIONS(1051), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1055), 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(1339), 1, anon_sym_STAR, - STATE(952), 1, + STATE(845), 1, sym_primary_expression, - STATE(985), 1, + STATE(954), 1, sym_string, - STATE(1376), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1879), 1, + STATE(1652), 1, sym_expression, - STATE(2639), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1045), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1043), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(765), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58958,7 +58733,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58975,58 +58750,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39243] = 22, - ACTIONS(303), 1, + [39411] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_await, - ACTIONS(320), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(955), 1, + STATE(845), 1, sym_primary_expression, - STATE(1003), 1, + STATE(954), 1, sym_string, - STATE(1300), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1730), 1, + STATE(1664), 1, sym_expression, - STATE(2772), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(314), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(387), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 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(1737), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59034,7 +58809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59051,58 +58826,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39341] = 22, - ACTIONS(723), 1, - anon_sym_LPAREN, - ACTIONS(731), 1, - anon_sym_LBRACK, - ACTIONS(735), 1, + [39509] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(741), 1, + ACTIONS(306), 1, + anon_sym_lambda, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, sym_string_start, - ACTIONS(833), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(851), 1, - anon_sym_lambda, - ACTIONS(855), 1, - anon_sym_await, - ACTIONS(1265), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(880), 1, + STATE(952), 1, sym_primary_expression, - STATE(963), 1, + STATE(984), 1, sym_string, - STATE(1213), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1755), 1, + STATE(2016), 1, sym_expression, - STATE(2646), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(737), 2, - sym_ellipsis, - sym_float, - ACTIONS(843), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(733), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(841), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(721), 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(1767), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59110,7 +58885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1190), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59127,61 +58902,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39439] = 23, - ACTIONS(745), 1, - anon_sym_LPAREN, - ACTIONS(753), 1, - anon_sym_LBRACK, - ACTIONS(757), 1, + [39607] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(763), 1, - sym_string_start, - ACTIONS(993), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1345), 1, - anon_sym_STAR, - ACTIONS(1487), 1, - anon_sym_await, - ACTIONS(1529), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, sym_identifier, - STATE(972), 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(1098), 1, + STATE(954), 1, sym_string, - STATE(1423), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1936), 1, + STATE(1654), 1, sym_expression, - STATE(2595), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1533), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - STATE(1475), 2, - sym_attribute, - sym_subscript, - ACTIONS(755), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1531), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59189,9 +58961,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 14, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -59204,58 +58978,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39539] = 22, - ACTIONS(674), 1, + [39705] = 22, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(692), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1139), 1, - sym_identifier, - ACTIONS(1149), 1, + ACTIONS(1007), 1, anon_sym_await, - STATE(888), 1, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1307), 1, + anon_sym_STAR, + STATE(963), 1, sym_primary_expression, - STATE(961), 1, + STATE(1081), 1, sym_string, - STATE(1212), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1744), 1, + STATE(1982), 1, sym_expression, - STATE(2787), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(688), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1147), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(684), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1145), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(672), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59263,7 +59037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1251), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59280,61 +59054,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39637] = 23, - ACTIONS(674), 1, + [39803] = 22, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(692), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1519), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1535), 1, + ACTIONS(1253), 1, sym_identifier, - STATE(888), 1, + ACTIONS(1303), 1, + anon_sym_STAR, + STATE(953), 1, sym_primary_expression, - STATE(961), 1, + STATE(995), 1, sym_string, - STATE(1212), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1952), 1, + STATE(1938), 1, sym_expression, - STATE(2787), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(688), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1539), 2, + ACTIONS(1029), 2, anon_sym_match, anon_sym_type, - STATE(1470), 2, - sym_attribute, - sym_subscript, - ACTIONS(684), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1537), 3, + ACTIONS(1027), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(672), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59342,9 +59113,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1251), 14, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -59357,58 +59130,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39737] = 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(379), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(402), 1, - anon_sym_await, - ACTIONS(637), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(645), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1319), 1, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(853), 1, + STATE(952), 1, sym_primary_expression, - STATE(953), 1, + STATE(984), 1, sym_string, - STATE(1049), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1973), 1, + STATE(1735), 1, sym_expression, - STATE(2724), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(391), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(387), 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(1659), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59416,7 +59189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1052), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59433,58 +59206,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39835] = 22, - ACTIONS(723), 1, + [39999] = 23, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(741), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(833), 1, - sym_identifier, - ACTIONS(849), 1, + ACTIONS(977), 1, + anon_sym_STAR, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(851), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(855), 1, + ACTIONS(1531), 1, + sym_identifier, + ACTIONS(1537), 1, anon_sym_await, - ACTIONS(1265), 1, - anon_sym_STAR, - STATE(880), 1, - sym_primary_expression, - STATE(963), 1, + STATE(975), 1, sym_string, - STATE(1213), 1, + STATE(989), 1, + sym_primary_expression, + STATE(1197), 1, sym_list_splat_pattern, - STATE(1753), 1, + STATE(1912), 1, sym_expression, - STATE(2646), 1, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(737), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(843), 2, + ACTIONS(1535), 2, anon_sym_match, anon_sym_type, - ACTIONS(733), 3, + STATE(1282), 2, + sym_attribute, + sym_subscript, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(841), 3, + ACTIONS(1533), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(721), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59492,11 +59268,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1190), 16, + STATE(1279), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -59509,58 +59283,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39933] = 22, - ACTIONS(67), 1, + [40099] = 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(379), 1, + ACTIONS(871), 1, sym_identifier, - ACTIONS(402), 1, + ACTIONS(887), 1, + anon_sym_not, + ACTIONS(889), 1, + anon_sym_lambda, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(637), 1, - anon_sym_LPAREN, - ACTIONS(645), 1, - anon_sym_LBRACK, - ACTIONS(1319), 1, + ACTIONS(1273), 1, anon_sym_STAR, - STATE(853), 1, + STATE(893), 1, sym_primary_expression, - STATE(953), 1, + STATE(958), 1, sym_string, - STATE(1049), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1871), 1, sym_expression, - STATE(2724), 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(391), 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(387), 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(1659), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59568,7 +59342,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1052), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59585,58 +59359,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40031] = 22, - ACTIONS(674), 1, + [40197] = 23, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(692), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1139), 1, - sym_identifier, - ACTIONS(1149), 1, + ACTIONS(1307), 1, + anon_sym_STAR, + ACTIONS(1521), 1, anon_sym_await, - STATE(888), 1, + ACTIONS(1539), 1, + sym_identifier, + STATE(1007), 1, sym_primary_expression, - STATE(961), 1, + STATE(1081), 1, sym_string, - STATE(1212), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1761), 1, + STATE(1932), 1, sym_expression, - STATE(2787), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(688), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1147), 2, + ACTIONS(1519), 2, anon_sym_match, anon_sym_type, - ACTIONS(684), 3, + STATE(1194), 2, + sym_attribute, + sym_subscript, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1145), 3, + ACTIONS(1517), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(672), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59644,11 +59421,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1251), 16, + STATE(1441), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -59661,58 +59436,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40129] = 22, - ACTIONS(303), 1, + [40297] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_await, - ACTIONS(320), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(955), 1, + STATE(845), 1, sym_primary_expression, - STATE(1003), 1, + STATE(954), 1, sym_string, - STATE(1300), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(2019), 1, + STATE(1653), 1, sym_expression, - STATE(2772), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(314), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(387), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 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(1737), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59720,7 +59495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59737,58 +59512,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40227] = 22, - ACTIONS(67), 1, + [40395] = 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(379), 1, - sym_identifier, - ACTIONS(402), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(637), 1, - anon_sym_LPAREN, - ACTIONS(645), 1, - anon_sym_LBRACK, - ACTIONS(1319), 1, + ACTIONS(1253), 1, + sym_identifier, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(853), 1, - sym_primary_expression, STATE(953), 1, + sym_primary_expression, + STATE(995), 1, sym_string, - STATE(1049), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1937), 1, + STATE(1916), 1, sym_expression, - STATE(2724), 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(391), 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(387), 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(1659), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59796,7 +59571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1052), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59813,58 +59588,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40325] = 22, - ACTIONS(767), 1, + [40493] = 22, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(775), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1055), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1339), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(952), 1, + STATE(953), 1, sym_primary_expression, - STATE(985), 1, + STATE(995), 1, sym_string, - STATE(1376), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1723), 1, + STATE(1917), 1, sym_expression, - STATE(2639), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1045), 2, + ACTIONS(1029), 2, anon_sym_match, anon_sym_type, - ACTIONS(777), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1043), 3, + ACTIONS(1027), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(765), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59872,7 +59647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59889,58 +59664,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40423] = 22, - ACTIONS(699), 1, + [40591] = 22, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(709), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(977), 1, + anon_sym_STAR, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(881), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(1125), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1133), 1, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1275), 1, - anon_sym_STAR, - STATE(956), 1, + STATE(901), 1, sym_primary_expression, - STATE(977), 1, + STATE(975), 1, sym_string, - STATE(1407), 1, + STATE(1197), 1, sym_list_splat_pattern, - STATE(1789), 1, + STATE(1770), 1, sym_expression, - STATE(2712), 1, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(1131), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(711), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1129), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 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, @@ -59948,7 +59723,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59965,58 +59740,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40521] = 22, - ACTIONS(723), 1, + [40689] = 22, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(741), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(833), 1, - sym_identifier, - ACTIONS(849), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(851), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(855), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1265), 1, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(880), 1, - sym_primary_expression, STATE(963), 1, + sym_primary_expression, + STATE(1081), 1, sym_string, - STATE(1213), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1759), 1, + STATE(1913), 1, sym_expression, - STATE(2646), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(737), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(843), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(733), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(841), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(721), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60024,7 +59799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1190), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60041,58 +59816,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40619] = 22, - ACTIONS(67), 1, + [40787] = 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(379), 1, - sym_identifier, - ACTIONS(402), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(637), 1, - anon_sym_LPAREN, - ACTIONS(645), 1, - anon_sym_LBRACK, - ACTIONS(1319), 1, + ACTIONS(1155), 1, + sym_identifier, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(853), 1, + STATE(857), 1, sym_primary_expression, - STATE(953), 1, + STATE(969), 1, sym_string, - STATE(1049), 1, + STATE(1283), 1, sym_list_splat_pattern, - STATE(1860), 1, + STATE(1671), 1, sym_expression, - STATE(2724), 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(391), 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(387), 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(1659), 7, + STATE(1710), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60100,7 +59875,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1052), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60117,48 +59892,48 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40717] = 23, - ACTIONS(767), 1, + [40885] = 23, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(775), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(785), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(1053), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1339), 1, + ACTIONS(1303), 1, anon_sym_STAR, - ACTIONS(1527), 1, + ACTIONS(1529), 1, anon_sym_await, ACTIONS(1541), 1, sym_identifier, - STATE(984), 1, + STATE(953), 1, sym_primary_expression, - STATE(985), 1, + STATE(995), 1, sym_string, - STATE(1376), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1974), 1, + STATE(1937), 1, sym_expression, - STATE(2639), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(781), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, ACTIONS(1545), 2, anon_sym_match, anon_sym_type, - STATE(1406), 2, + STATE(1472), 2, sym_attribute, sym_subscript, - ACTIONS(777), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -60166,12 +59941,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(765), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1721), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60179,7 +59954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1308), 14, + STATE(1381), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -60194,58 +59969,134 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40817] = 22, - ACTIONS(745), 1, + [40985] = 22, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(306), 1, + anon_sym_lambda, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(400), 1, + sym_identifier, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + 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(2060), 1, + sym_expression, + STATE(2729), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(285), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(304), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1723), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1377), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [41083] = 22, + ACTIONS(779), 1, + anon_sym_LPAREN, + ACTIONS(789), 1, + anon_sym_LBRACK, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(763), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(993), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(995), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(997), 1, - anon_sym_await, - ACTIONS(1285), 1, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1345), 1, + ACTIONS(1081), 1, + anon_sym_await, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(972), 1, + STATE(950), 1, sym_primary_expression, - STATE(1098), 1, + STATE(985), 1, sym_string, - STATE(1423), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1745), 1, + STATE(1808), 1, sym_expression, - STATE(2595), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(759), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(987), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(755), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(985), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(743), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60253,7 +60104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1425), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60270,58 +60121,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40915] = 22, - ACTIONS(699), 1, + [41181] = 22, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(709), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(881), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(1125), 1, - sym_identifier, - ACTIONS(1133), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1253), 1, + sym_identifier, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(956), 1, + STATE(953), 1, sym_primary_expression, - STATE(977), 1, + STATE(995), 1, sym_string, - STATE(1407), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1778), 1, + STATE(1927), 1, sym_expression, - STATE(2712), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1131), 2, + ACTIONS(1029), 2, anon_sym_match, anon_sym_type, - ACTIONS(711), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1129), 3, + ACTIONS(1027), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 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, @@ -60329,7 +60180,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60346,58 +60197,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41013] = 22, - ACTIONS(67), 1, + [41279] = 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(379), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(402), 1, - anon_sym_await, - ACTIONS(637), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(645), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1319), 1, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(853), 1, + STATE(952), 1, sym_primary_expression, - STATE(953), 1, + STATE(984), 1, sym_string, - STATE(1049), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1816), 1, + STATE(2008), 1, sym_expression, - STATE(2724), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(391), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(387), 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(1659), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60405,7 +60256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1052), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60422,58 +60273,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41111] = 22, - ACTIONS(699), 1, + [41377] = 22, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(709), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(719), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(881), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(1125), 1, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1133), 1, + ACTIONS(1081), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(956), 1, + STATE(950), 1, sym_primary_expression, - STATE(977), 1, + STATE(985), 1, sym_string, - STATE(1407), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1807), 1, + STATE(1794), 1, sym_expression, - STATE(2712), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1131), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(711), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1129), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 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, @@ -60481,7 +60332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60498,58 +60349,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41209] = 22, - ACTIONS(723), 1, + [41475] = 22, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(741), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(833), 1, - sym_identifier, - ACTIONS(849), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(851), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(855), 1, + ACTIONS(1071), 1, + sym_identifier, + ACTIONS(1081), 1, anon_sym_await, - ACTIONS(1265), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(880), 1, + STATE(950), 1, sym_primary_expression, - STATE(963), 1, + STATE(985), 1, sym_string, - STATE(1213), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1770), 1, + STATE(1795), 1, sym_expression, - STATE(2646), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(737), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(843), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(733), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(841), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(721), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60557,7 +60408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1190), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60574,58 +60425,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41307] = 22, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_await, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(404), 1, - sym_identifier, - ACTIONS(656), 1, + [41573] = 22, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, + ACTIONS(793), 1, + anon_sym_LBRACE, + ACTIONS(799), 1, + sym_string_start, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1433), 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(955), 1, + STATE(950), 1, sym_primary_expression, - STATE(1003), 1, + STATE(985), 1, sym_string, - STATE(1300), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(2004), 1, + STATE(1796), 1, sym_expression, - STATE(2772), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(314), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(1079), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 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(1737), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60633,7 +60484,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60650,58 +60501,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41405] = 22, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_await, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(404), 1, - sym_identifier, - ACTIONS(656), 1, + [41671] = 22, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, + ACTIONS(793), 1, + anon_sym_LBRACE, + ACTIONS(799), 1, + sym_string_start, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1433), 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(955), 1, + STATE(950), 1, sym_primary_expression, - STATE(1003), 1, + STATE(985), 1, sym_string, - STATE(1300), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(2001), 1, + STATE(1797), 1, sym_expression, - STATE(2772), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(314), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(1079), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 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(1737), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60709,7 +60560,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60726,58 +60577,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41503] = 22, - ACTIONS(789), 1, + [41769] = 22, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(797), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(801), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(807), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(871), 1, + sym_identifier, + ACTIONS(887), 1, anon_sym_not, - ACTIONS(827), 1, + ACTIONS(889), 1, anon_sym_lambda, - ACTIONS(831), 1, + ACTIONS(893), 1, anon_sym_await, - ACTIONS(1157), 1, - sym_identifier, - ACTIONS(1249), 1, + ACTIONS(1273), 1, anon_sym_STAR, - STATE(919), 1, + STATE(893), 1, sym_primary_expression, - STATE(970), 1, + STATE(958), 1, sym_string, - STATE(1254), 1, + STATE(1259), 1, sym_list_splat_pattern, - STATE(1707), 1, + STATE(1741), 1, sym_expression, - STATE(2626), 1, + STATE(2645), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(803), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(817), 2, + ACTIONS(881), 2, anon_sym_match, anon_sym_type, - ACTIONS(799), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(815), 3, + ACTIONS(879), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(787), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1689), 7, + STATE(1754), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60785,7 +60636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1148), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60802,58 +60653,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41601] = 22, - ACTIONS(674), 1, + [41867] = 23, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(692), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1139), 1, - sym_identifier, - ACTIONS(1149), 1, + ACTIONS(1307), 1, + anon_sym_STAR, + ACTIONS(1521), 1, anon_sym_await, - STATE(888), 1, + ACTIONS(1547), 1, + sym_identifier, + STATE(963), 1, sym_primary_expression, - STATE(961), 1, + STATE(1081), 1, sym_string, - STATE(1212), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1766), 1, + STATE(1932), 1, sym_expression, - STATE(2787), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(688), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1147), 2, + ACTIONS(1551), 2, anon_sym_match, anon_sym_type, - ACTIONS(684), 3, + STATE(1458), 2, + sym_attribute, + sym_subscript, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1145), 3, + ACTIONS(1549), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(672), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60861,11 +60715,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1251), 16, + STATE(1441), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -60878,58 +60730,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41699] = 22, - ACTIONS(674), 1, + [41967] = 22, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(692), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(977), 1, anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(1139), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1149), 1, + ACTIONS(1145), 1, anon_sym_await, - STATE(888), 1, + STATE(901), 1, sym_primary_expression, - STATE(961), 1, + STATE(975), 1, sym_string, - STATE(1212), 1, + STATE(1197), 1, sym_list_splat_pattern, - STATE(1771), 1, + STATE(1773), 1, sym_expression, - STATE(2787), 1, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(688), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(1147), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(684), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1145), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(672), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60937,7 +60789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1251), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60954,58 +60806,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41797] = 22, - ACTIONS(303), 1, + [42065] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_await, - ACTIONS(320), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(955), 1, + STATE(845), 1, sym_primary_expression, - STATE(1003), 1, + STATE(954), 1, sym_string, - STATE(1300), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(2022), 1, + STATE(1663), 1, sym_expression, - STATE(2772), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(314), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(387), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 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(1737), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61013,7 +60865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61030,58 +60882,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41895] = 22, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(797), 1, - anon_sym_LBRACK, - ACTIONS(801), 1, + [42163] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(807), 1, - sym_string_start, - ACTIONS(825), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(827), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(831), 1, - anon_sym_await, - ACTIONS(1157), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, sym_identifier, - ACTIONS(1249), 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(919), 1, + STATE(845), 1, sym_primary_expression, - STATE(970), 1, + STATE(954), 1, sym_string, - STATE(1254), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1708), 1, + STATE(1825), 1, sym_expression, - STATE(2626), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(803), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(817), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(799), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(815), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(787), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1689), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61089,7 +60941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1148), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61106,135 +60958,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41993] = 23, - ACTIONS(745), 1, - anon_sym_LPAREN, - ACTIONS(753), 1, - anon_sym_LBRACK, - ACTIONS(757), 1, + [42261] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(763), 1, - sym_string_start, - ACTIONS(993), 1, - anon_sym_not, - ACTIONS(995), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1345), 1, - anon_sym_STAR, - ACTIONS(1487), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(1547), 1, - sym_identifier, - STATE(988), 1, - sym_primary_expression, - STATE(1098), 1, - sym_string, - STATE(1423), 1, - sym_list_splat_pattern, - STATE(1936), 1, - sym_expression, - STATE(2595), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(759), 2, - sym_ellipsis, - sym_float, - ACTIONS(1485), 2, - anon_sym_match, - anon_sym_type, - STATE(1199), 2, - sym_attribute, - sym_subscript, - ACTIONS(755), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1483), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(743), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1743), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1425), 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, - [42093] = 22, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2040), 1, + STATE(2027), 1, sym_expression, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61242,7 +61017,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61259,58 +61034,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42191] = 22, - ACTIONS(674), 1, + [42359] = 22, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(692), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(1139), 1, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1149), 1, + ACTIONS(1081), 1, anon_sym_await, - STATE(888), 1, + ACTIONS(1243), 1, + anon_sym_STAR, + STATE(950), 1, sym_primary_expression, - STATE(961), 1, + STATE(985), 1, sym_string, - STATE(1212), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(1772), 1, + STATE(1790), 1, sym_expression, - STATE(2787), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(688), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1147), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(684), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1145), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(672), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1776), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61318,7 +61093,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1251), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61335,58 +61110,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42289] = 22, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_await, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(404), 1, - sym_identifier, - ACTIONS(656), 1, - anon_sym_LPAREN, + [42457] = 22, ACTIONS(666), 1, + anon_sym_LPAREN, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(977), 1, anon_sym_STAR, - STATE(955), 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(1003), 1, + STATE(975), 1, sym_string, - STATE(1300), 1, + STATE(1197), 1, sym_list_splat_pattern, - STATE(2051), 1, + STATE(1758), 1, sym_expression, - STATE(2772), 1, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(314), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(1143), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 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(1737), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61394,7 +61169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61411,58 +61186,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42387] = 22, - ACTIONS(789), 1, + [42555] = 23, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(797), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(801), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(807), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(977), 1, + anon_sym_STAR, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(827), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(831), 1, + ACTIONS(1537), 1, anon_sym_await, - ACTIONS(1157), 1, + ACTIONS(1553), 1, sym_identifier, - ACTIONS(1249), 1, - anon_sym_STAR, - STATE(919), 1, + STATE(901), 1, sym_primary_expression, - STATE(970), 1, + STATE(975), 1, sym_string, - STATE(1254), 1, + STATE(1197), 1, sym_list_splat_pattern, - STATE(1710), 1, + STATE(1912), 1, sym_expression, - STATE(2626), 1, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(803), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(817), 2, + ACTIONS(1557), 2, anon_sym_match, anon_sym_type, - ACTIONS(799), 3, + STATE(1473), 2, + sym_attribute, + sym_subscript, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(815), 3, + ACTIONS(1555), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(787), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1689), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61470,11 +61248,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1148), 16, + STATE(1279), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -61487,58 +61263,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42485] = 22, - ACTIONS(303), 1, + [42655] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2061), 1, + STATE(1902), 1, sym_expression, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61546,7 +61322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61563,58 +61339,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42583] = 22, - ACTIONS(789), 1, + [42753] = 22, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(797), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(801), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(807), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(1035), 1, anon_sym_not, - ACTIONS(827), 1, + ACTIONS(1037), 1, anon_sym_lambda, - ACTIONS(831), 1, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1157), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1249), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(919), 1, + STATE(953), 1, sym_primary_expression, - STATE(970), 1, + STATE(995), 1, sym_string, - STATE(1254), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1711), 1, + STATE(1719), 1, sym_expression, - STATE(2626), 1, + STATE(2638), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(803), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(817), 2, + ACTIONS(1029), 2, anon_sym_match, anon_sym_type, - ACTIONS(799), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(815), 3, + ACTIONS(1027), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(787), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1689), 7, + STATE(1722), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61622,7 +61398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1148), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61639,58 +61415,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42681] = 22, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_await, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(404), 1, - sym_identifier, - ACTIONS(656), 1, + [42851] = 22, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, + ACTIONS(793), 1, + anon_sym_LBRACE, + ACTIONS(799), 1, + sym_string_start, + ACTIONS(857), 1, anon_sym_not, - ACTIONS(1433), 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(955), 1, + STATE(950), 1, sym_primary_expression, - STATE(1003), 1, + STATE(985), 1, sym_string, - STATE(1300), 1, + STATE(1320), 1, sym_list_splat_pattern, - STATE(2064), 1, + STATE(1810), 1, sym_expression, - STATE(2772), 1, + STATE(2698), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(314), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(1079), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 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(1737), 7, + STATE(1807), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61698,7 +61474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61715,58 +61491,118 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42779] = 22, - ACTIONS(789), 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(797), 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(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(801), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(807), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(827), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(831), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1157), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1249), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(919), 1, + STATE(963), 1, sym_primary_expression, - STATE(970), 1, + STATE(1081), 1, sym_string, - STATE(1254), 1, + STATE(1444), 1, sym_list_splat_pattern, - STATE(1713), 1, + STATE(1753), 1, sym_expression, - STATE(2626), 1, + STATE(2585), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(803), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(817), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(799), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(815), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(787), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1689), 7, + STATE(1748), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61774,7 +61610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1148), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61791,58 +61627,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42877] = 22, - ACTIONS(303), 1, + [43113] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2070), 1, + STATE(2006), 1, sym_expression, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61850,7 +61686,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61867,58 +61703,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42975] = 22, - ACTIONS(699), 1, - anon_sym_LPAREN, - ACTIONS(709), 1, - anon_sym_LBRACK, - ACTIONS(713), 1, + [43211] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(719), 1, - sym_string_start, - ACTIONS(879), 1, - anon_sym_not, - ACTIONS(881), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1125), 1, - sym_identifier, - ACTIONS(1133), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(1275), 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(956), 1, + STATE(952), 1, sym_primary_expression, - STATE(977), 1, + STATE(984), 1, sym_string, - STATE(1407), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1808), 1, + STATE(2029), 1, sym_expression, - STATE(2712), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(715), 2, - sym_ellipsis, - sym_float, - ACTIONS(1131), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(711), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1129), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(697), 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, @@ -61926,7 +61762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1349), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61943,58 +61779,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43073] = 22, - ACTIONS(303), 1, + [43309] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2023), 1, + STATE(1992), 1, sym_expression, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62002,7 +61838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62019,58 +61855,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43171] = 22, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(797), 1, - anon_sym_LBRACK, - ACTIONS(801), 1, + [43407] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(807), 1, - sym_string_start, - ACTIONS(825), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(827), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(831), 1, - anon_sym_await, - ACTIONS(1157), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, sym_identifier, - ACTIONS(1249), 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(919), 1, + STATE(845), 1, sym_primary_expression, - STATE(970), 1, + STATE(954), 1, sym_string, - STATE(1254), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1667), 1, + STATE(1785), 1, sym_expression, - STATE(2626), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(803), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(817), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(799), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(815), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(787), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1689), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62078,7 +61914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1148), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62095,58 +61931,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43269] = 22, - ACTIONS(303), 1, + [43505] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2079), 1, + STATE(1989), 1, sym_expression, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62154,7 +61990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62171,58 +62007,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43367] = 22, - ACTIONS(303), 1, + [43603] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2080), 1, + STATE(2035), 1, sym_expression, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62230,7 +62066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62247,121 +62083,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43465] = 9, - ACTIONS(1505), 1, - anon_sym_else, - ACTIONS(1507), 1, - anon_sym_except, - ACTIONS(1509), 1, - anon_sym_finally, - STATE(698), 1, - sym_else_clause, - STATE(807), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(616), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1491), 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(1489), 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, - [43537] = 22, - ACTIONS(303), 1, + [43701] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1939), 1, + STATE(2071), 1, sym_expression, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62369,7 +62142,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62386,58 +62159,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43635] = 22, - ACTIONS(674), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(686), 1, + [43799] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(692), 1, - sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, - anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1139), 1, - sym_identifier, - ACTIONS(1149), 1, + ACTIONS(314), 1, anon_sym_await, - STATE(888), 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(961), 1, + STATE(984), 1, sym_string, - STATE(1212), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1773), 1, + STATE(1990), 1, sym_expression, - STATE(2787), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(688), 2, - sym_ellipsis, - sym_float, - ACTIONS(1147), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(684), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1145), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(672), 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(1776), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62445,7 +62218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1251), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62462,58 +62235,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43733] = 22, - ACTIONS(674), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(686), 1, + [43897] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(692), 1, - sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, - anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(1139), 1, - sym_identifier, - ACTIONS(1149), 1, + ACTIONS(314), 1, anon_sym_await, - STATE(888), 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(961), 1, + STATE(984), 1, sym_string, - STATE(1212), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1775), 1, + STATE(2020), 1, sym_expression, - STATE(2787), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(688), 2, - sym_ellipsis, - sym_float, - ACTIONS(1147), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(684), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1145), 3, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(672), 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(1776), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62521,7 +62294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1251), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62538,58 +62311,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43831] = 22, - ACTIONS(303), 1, + [43995] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2087), 1, + STATE(2022), 1, sym_expression, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62597,7 +62370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62614,58 +62387,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43929] = 22, - ACTIONS(303), 1, + [44093] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_await, - ACTIONS(320), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(375), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(398), 1, + anon_sym_await, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, - anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(955), 1, + STATE(845), 1, sym_primary_expression, - STATE(1003), 1, + STATE(954), 1, sym_string, - STATE(1300), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(2088), 1, + STATE(1847), 1, sym_expression, - STATE(2772), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(314), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(387), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 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(1737), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62673,7 +62446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62690,58 +62463,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44027] = 22, - ACTIONS(67), 1, + [44191] = 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(379), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(402), 1, - anon_sym_await, - ACTIONS(637), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(645), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1319), 1, + ACTIONS(1051), 1, + anon_sym_not, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(853), 1, + STATE(952), 1, sym_primary_expression, - STATE(953), 1, + STATE(984), 1, sym_string, - STATE(1049), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1802), 1, + STATE(2034), 1, sym_expression, - STATE(2724), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(391), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(387), 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(1659), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62749,7 +62522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1052), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62766,58 +62539,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44125] = 22, - ACTIONS(723), 1, - anon_sym_LPAREN, - ACTIONS(731), 1, - anon_sym_LBRACK, - ACTIONS(735), 1, + [44289] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(741), 1, - sym_string_start, - ACTIONS(833), 1, - sym_identifier, - ACTIONS(849), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(851), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(855), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(375), 1, + sym_identifier, + ACTIONS(398), 1, anon_sym_await, - ACTIONS(1265), 1, + ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(637), 1, + anon_sym_LBRACK, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(880), 1, + STATE(845), 1, sym_primary_expression, - STATE(963), 1, + STATE(954), 1, sym_string, - STATE(1213), 1, + STATE(1047), 1, sym_list_splat_pattern, - STATE(1800), 1, + STATE(1899), 1, sym_expression, - STATE(2646), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(737), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(843), 2, + ACTIONS(387), 2, anon_sym_match, anon_sym_type, - ACTIONS(733), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(841), 3, + ACTIONS(383), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(721), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1767), 7, + STATE(1649), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62825,7 +62598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1190), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62842,58 +62615,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44223] = 22, - ACTIONS(303), 1, + [44387] = 22, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(306), 1, anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(314), 1, anon_sym_await, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(404), 1, + ACTIONS(400), 1, sym_identifier, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1077), 1, + ACTIONS(1051), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(955), 1, + STATE(952), 1, sym_primary_expression, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(2089), 1, + STATE(2036), 1, sym_expression, - STATE(2772), 1, + STATE(2729), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(289), 2, + ACTIONS(285), 2, anon_sym_match, anon_sym_type, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(282), 3, + ACTIONS(278), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1737), 7, + STATE(1723), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62901,7 +62674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62918,58 +62691,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44321] = 22, - ACTIONS(789), 1, + [44485] = 22, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(797), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(801), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(807), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(977), 1, + anon_sym_STAR, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(827), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(831), 1, - anon_sym_await, - ACTIONS(1157), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1249), 1, - anon_sym_STAR, - STATE(919), 1, + ACTIONS(1145), 1, + anon_sym_await, + STATE(901), 1, sym_primary_expression, - STATE(970), 1, + STATE(975), 1, sym_string, - STATE(1254), 1, + STATE(1197), 1, sym_list_splat_pattern, - STATE(1697), 1, + STATE(1896), 1, sym_expression, - STATE(2626), 1, + STATE(2650), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(803), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(817), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(799), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(815), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(787), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1689), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62977,7 +62750,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1148), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62994,23 +62767,23 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44419] = 10, - ACTIONS(1551), 1, + [44583] = 10, + ACTIONS(1567), 1, anon_sym_COMMA, - ACTIONS(1556), 1, + ACTIONS(1572), 1, anon_sym_COLON_EQ, - ACTIONS(1558), 1, + ACTIONS(1574), 1, anon_sym_COLON, - ACTIONS(1561), 1, + ACTIONS(1577), 1, anon_sym_EQ, - ACTIONS(1563), 1, + ACTIONS(1579), 1, anon_sym_LBRACK, - STATE(2097), 1, + STATE(2082), 1, sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1565), 13, + ACTIONS(1581), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -63024,7 +62797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1554), 15, + ACTIONS(1570), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -63040,7 +62813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1549), 16, + ACTIONS(1565), 16, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -63057,78 +62830,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [44492] = 8, - ACTIONS(1505), 1, - anon_sym_else, - ACTIONS(1571), 1, - anon_sym_elif, - STATE(619), 1, - aux_sym_if_statement_repeat1, - STATE(696), 1, - sym_elif_clause, - STATE(738), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1567), 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(1569), 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, - [44560] = 7, - ACTIONS(276), 1, + [44656] = 8, + ACTIONS(272), 1, anon_sym_COMMA, - ACTIONS(284), 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(296), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(312), 13, + ACTIONS(308), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -63142,7 +62856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(271), 15, + ACTIONS(267), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -63158,7 +62872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 17, + ACTIONS(265), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -63176,23 +62890,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [44626] = 8, - ACTIONS(1493), 1, + [44724] = 8, + ACTIONS(1429), 1, anon_sym_else, - ACTIONS(1577), 1, + ACTIONS(1587), 1, anon_sym_elif, - STATE(631), 1, + STATE(610), 1, aux_sym_if_statement_repeat1, - STATE(700), 1, + STATE(704), 1, sym_elif_clause, - STATE(774), 1, + STATE(821), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1575), 12, - sym__dedent, + ACTIONS(1583), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -63203,7 +62917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1573), 32, + ACTIONS(1585), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63236,19 +62950,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44694] = 8, - ACTIONS(276), 1, + [44792] = 8, + ACTIONS(272), 1, anon_sym_COMMA, - ACTIONS(284), 1, + ACTIONS(280), 1, anon_sym_COLON_EQ, - ACTIONS(286), 1, + ACTIONS(282), 1, anon_sym_COLON, - ACTIONS(296), 1, + ACTIONS(292), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(312), 13, + ACTIONS(308), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -63262,7 +62976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(271), 15, + ACTIONS(267), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -63278,7 +62992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 17, + ACTIONS(265), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -63296,19 +63010,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [44762] = 8, - ACTIONS(276), 1, + [44860] = 7, + ACTIONS(272), 1, anon_sym_COMMA, - ACTIONS(284), 1, + ACTIONS(280), 1, anon_sym_COLON_EQ, - ACTIONS(286), 1, - anon_sym_COLON, - ACTIONS(296), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(312), 13, + ACTIONS(292), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(308), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -63322,7 +63035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(271), 15, + ACTIONS(267), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -63338,7 +63051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 17, + ACTIONS(265), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -63356,76 +63069,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [44830] = 8, - ACTIONS(1493), 1, + [44926] = 8, + ACTIONS(1441), 1, anon_sym_else, - ACTIONS(1577), 1, + ACTIONS(1593), 1, anon_sym_elif, - STATE(614), 1, + STATE(613), 1, aux_sym_if_statement_repeat1, - STATE(700), 1, + STATE(691), 1, sym_elif_clause, - STATE(778), 1, + STATE(787), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1567), 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(1569), 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, - [44898] = 5, - ACTIONS(1583), 1, - anon_sym_except, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(612), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1581), 12, + ACTIONS(1591), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -63438,7 +63096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1579), 34, + ACTIONS(1589), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63450,13 +63108,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, @@ -63473,80 +63129,23 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44960] = 5, - ACTIONS(1590), 1, - anon_sym_except_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(613), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1588), 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(1586), 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, + [44994] = 8, + ACTIONS(1429), 1, 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, - [45022] = 8, - ACTIONS(1493), 1, - anon_sym_else, - ACTIONS(1577), 1, + ACTIONS(1587), 1, anon_sym_elif, - STATE(631), 1, + STATE(665), 1, aux_sym_if_statement_repeat1, - STATE(700), 1, + STATE(704), 1, sym_elif_clause, - STATE(747), 1, + STATE(734), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(1595), 12, - sym__dedent, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -63557,7 +63156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1593), 32, + ACTIONS(1597), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63590,76 +63189,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45090] = 8, - ACTIONS(1505), 1, + [45062] = 8, + ACTIONS(1429), 1, anon_sym_else, - ACTIONS(1571), 1, + ACTIONS(1587), 1, anon_sym_elif, - STATE(637), 1, + STATE(616), 1, aux_sym_if_statement_repeat1, - STATE(696), 1, + STATE(704), 1, sym_elif_clause, - STATE(734), 1, + STATE(776), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1575), 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(1573), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_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, - [45158] = 5, - ACTIONS(1597), 1, - anon_sym_except, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(616), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1581), 12, + ACTIONS(1591), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -63672,7 +63216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1579), 34, + ACTIONS(1589), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63684,13 +63228,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, @@ -63707,75 +63249,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45220] = 5, - ACTIONS(1600), 1, - anon_sym_except_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(617), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1588), 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(1586), 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, - [45282] = 7, - ACTIONS(1551), 1, + [45130] = 7, + ACTIONS(1567), 1, anon_sym_COMMA, - ACTIONS(1556), 1, + ACTIONS(1572), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1561), 2, + ACTIONS(1577), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(1565), 13, + ACTIONS(1581), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -63789,7 +63274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1554), 15, + ACTIONS(1570), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -63805,7 +63290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1549), 17, + ACTIONS(1565), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -63823,23 +63308,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [45348] = 8, - ACTIONS(1505), 1, + [45196] = 8, + ACTIONS(1441), 1, anon_sym_else, - ACTIONS(1571), 1, + ACTIONS(1593), 1, anon_sym_elif, - STATE(637), 1, + STATE(663), 1, aux_sym_if_statement_repeat1, - STATE(696), 1, + STATE(691), 1, sym_elif_clause, - STATE(767), 1, + STATE(802), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1595), 12, + ACTIONS(1601), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -63850,7 +63335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1593), 32, + ACTIONS(1599), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63883,23 +63368,23 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45416] = 8, - ACTIONS(1505), 1, + [45264] = 8, + ACTIONS(1441), 1, anon_sym_else, - ACTIONS(1571), 1, + ACTIONS(1593), 1, anon_sym_elif, - STATE(615), 1, + STATE(617), 1, aux_sym_if_statement_repeat1, - STATE(696), 1, + STATE(691), 1, sym_elif_clause, - STATE(776), 1, + STATE(803), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1603), 12, + ACTIONS(1583), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -63910,7 +63395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1605), 32, + ACTIONS(1585), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63943,18 +63428,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45484] = 7, - ACTIONS(276), 1, + [45332] = 7, + ACTIONS(272), 1, anon_sym_COMMA, - ACTIONS(284), 1, + ACTIONS(280), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(296), 2, + ACTIONS(292), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(312), 13, + ACTIONS(308), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -63968,7 +63453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(271), 15, + ACTIONS(267), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -63984,7 +63469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 17, + ACTIONS(265), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64002,23 +63487,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [45550] = 8, - ACTIONS(1493), 1, + [45398] = 8, + ACTIONS(1429), 1, anon_sym_else, - ACTIONS(1577), 1, + ACTIONS(1587), 1, anon_sym_elif, - STATE(608), 1, + STATE(665), 1, aux_sym_if_statement_repeat1, - STATE(700), 1, + STATE(704), 1, sym_elif_clause, - STATE(749), 1, + STATE(817), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1603), 12, - sym__dedent, + ACTIONS(1601), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -64029,7 +63514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1605), 32, + ACTIONS(1599), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64062,11 +63547,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45618] = 3, + [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(1609), 12, + ACTIONS(1595), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -64079,7 +63574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1607), 36, + ACTIONS(1597), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64091,15 +63586,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -64116,72 +63607,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45675] = 6, - ACTIONS(1618), 1, - anon_sym_EQ, + [45534] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1613), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1620), 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(1616), 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(1611), 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, - [45738] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1622), 12, + ACTIONS(1605), 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, @@ -64190,7 +63625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1624), 36, + ACTIONS(1603), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64202,7 +63637,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, @@ -64227,18 +63661,28 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45795] = 3, + [45591] = 7, + ACTIONS(1619), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 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, @@ -64246,19 +63690,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(1626), 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, @@ -64281,73 +63719,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [45852] = 7, - ACTIONS(1642), 1, - anon_sym_PIPE, + [45656] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1632), 2, - anon_sym_DOT, - anon_sym_COLON, - ACTIONS(1634), 2, + ACTIONS(1623), 13, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1640), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1637), 12, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, + anon_sym_except_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, + 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(1630), 28, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, + 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_in, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [45917] = 3, + 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(1644), 12, + 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, @@ -64356,7 +63791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1646), 36, + ACTIONS(1627), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64368,7 +63803,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, @@ -64393,15 +63827,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45974] = 3, + [45770] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1648), 12, + ACTIONS(1631), 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, @@ -64410,7 +63845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1650), 36, + ACTIONS(1629), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64422,7 +63857,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, @@ -64447,33 +63881,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46031] = 6, - ACTIONS(1613), 1, - anon_sym_COMMA, - ACTIONS(1618), 1, - anon_sym_EQ, + [45827] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1620), 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(1616), 15, + 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, @@ -64486,13 +63902,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 17, + 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, @@ -64504,73 +63922,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46094] = 6, - ACTIONS(1656), 1, - anon_sym_elif, - STATE(631), 1, - aux_sym_if_statement_repeat1, - STATE(700), 1, - sym_elif_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1654), 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(1652), 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, - [46157] = 6, - ACTIONS(1561), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [45884] = 6, + ACTIONS(1577), 1, anon_sym_EQ, - ACTIONS(1661), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1565), 14, + ACTIONS(1639), 2, + anon_sym_COMMA, anon_sym_COLON, + ACTIONS(1581), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64584,7 +63958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1664), 15, + ACTIONS(1642), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64600,7 +63974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1659), 17, + ACTIONS(1637), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64618,15 +63992,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46220] = 3, + [45947] = 6, + ACTIONS(1577), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 16, + 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, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -64639,15 +64031,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 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, @@ -64659,6 +64049,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, + [46010] = 6, + ACTIONS(1651), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1646), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1653), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64672,15 +64072,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46277] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1672), 16, + ACTIONS(1649), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -64693,15 +64088,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 32, + ACTIONS(1644), 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, @@ -64713,29 +64106,16 @@ 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, - [46334] = 6, - ACTIONS(1551), 1, - anon_sym_COMMA, - ACTIONS(1561), 1, + [46073] = 6, + ACTIONS(1662), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1565), 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, @@ -64749,7 +64129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1554), 15, + ACTIONS(1660), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64765,7 +64145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1549), 17, + ACTIONS(1655), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64783,15 +64163,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46397] = 3, + [46136] = 6, + ACTIONS(1577), 1, + anon_sym_EQ, + ACTIONS(1639), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 16, + 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(1642), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -64804,15 +64202,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 32, + ACTIONS(1637), 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, @@ -64824,34 +64220,16 @@ 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, - [46454] = 6, - ACTIONS(1674), 1, - anon_sym_elif, - STATE(637), 1, - aux_sym_if_statement_repeat1, - STATE(696), 1, - sym_elif_clause, + [46199] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1654), 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, @@ -64860,7 +64238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1652), 33, + ACTIONS(1668), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64878,6 +64256,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -64894,15 +64274,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46517] = 3, + [46256] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1648), 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, @@ -64911,7 +64292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1650), 36, + ACTIONS(1627), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64923,7 +64304,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, @@ -64948,65 +64328,65 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46574] = 3, + [46313] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1644), 12, - sym__dedent, - sym_string_start, - 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(1646), 36, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(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_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, - [46631] = 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(1679), 16, + ACTIONS(1672), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -65023,7 +64403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 32, + ACTIONS(1670), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -65056,47 +64436,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46688] = 3, + [46427] = 6, + ACTIONS(1657), 1, + anon_sym_COMMA, + ACTIONS(1662), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 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(1677), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + ACTIONS(1664), 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, @@ -65110,69 +64459,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46745] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1681), 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(1683), 36, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [46802] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1687), 16, + ACTIONS(1660), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -65185,15 +64475,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1685), 32, + ACTIONS(1655), 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, @@ -65205,28 +64493,16 @@ 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, - [46859] = 3, + [46490] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 12, - sym__dedent, + ACTIONS(1674), 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, @@ -65235,7 +64511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1683), 36, + ACTIONS(1676), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65247,7 +64523,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, @@ -65272,129 +64547,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46916] = 6, - ACTIONS(1691), 1, - anon_sym_COMMA, - ACTIONS(1698), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1696), 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(1694), 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(1689), 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, - [46979] = 6, - ACTIONS(1561), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1661), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1565), 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(1664), 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(1659), 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, - [47042] = 3, + [46547] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1622), 12, - sym__dedent, + ACTIONS(1678), 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, @@ -65403,7 +64565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1624), 36, + ACTIONS(1680), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65415,7 +64577,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, @@ -65440,15 +64601,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47099] = 3, + [46604] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 12, + ACTIONS(1682), 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, @@ -65457,7 +64619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1607), 36, + ACTIONS(1684), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65469,7 +64631,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, @@ -65494,184 +64655,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47156] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(658), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(694), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(653), 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(651), 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, - [47217] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(658), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(694), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(653), 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(651), 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, - [47278] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1634), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1640), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1637), 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(1630), 29, - sym__newline, - anon_sym_SEMI, + [46661] = 6, + ACTIONS(1646), 1, 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, - [47339] = 6, - ACTIONS(1561), 1, + ACTIONS(1651), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1551), 2, - anon_sym_COMMA, + ACTIONS(1653), 14, anon_sym_COLON, - ACTIONS(1565), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -65685,7 +64678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1554), 15, + ACTIONS(1649), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -65701,7 +64694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1549), 17, + ACTIONS(1644), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -65719,16 +64712,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [47402] = 6, - ACTIONS(1698), 1, + [46724] = 6, + ACTIONS(1567), 1, + anon_sym_COMMA, + ACTIONS(1577), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1691), 2, - anon_sym_COMMA, + ACTIONS(1581), 14, anon_sym_COLON, - ACTIONS(1696), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -65742,7 +64735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1694), 15, + ACTIONS(1570), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -65758,7 +64751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1689), 17, + ACTIONS(1565), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -65776,13 +64769,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [47465] = 3, + [46787] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1648), 13, + ACTIONS(1688), 13, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -65794,7 +64787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1650), 34, + ACTIONS(1686), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65812,6 +64805,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, @@ -65829,11 +64823,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47521] = 3, + [46844] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1622), 13, + ACTIONS(1605), 13, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -65847,7 +64841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1624), 34, + ACTIONS(1603), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65865,6 +64859,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, @@ -65882,15 +64877,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47577] = 3, + [46901] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1702), 12, - sym__dedent, + 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, @@ -65899,7 +64895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1700), 35, + ACTIONS(1621), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65935,15 +64931,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47633] = 3, + [46958] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1706), 12, + ACTIONS(1682), 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, @@ -65952,7 +64949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1704), 35, + ACTIONS(1684), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65988,11 +64985,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47689] = 3, + [47015] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1710), 13, + ACTIONS(1692), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -66006,7 +65003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1708), 34, + ACTIONS(1690), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66024,6 +65021,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, @@ -66041,11 +65039,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47745] = 3, + [47072] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1644), 13, + ACTIONS(1696), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -66059,7 +65057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1646), 34, + ACTIONS(1694), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66077,6 +65075,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, @@ -66094,66 +65093,69 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47801] = 3, + [47129] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1712), 13, - sym_string_start, - ts_builtin_sym_end, + ACTIONS(650), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(686), 3, + anon_sym_DOT, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, + ACTIONS(645), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1714), 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, + ACTIONS(643), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + anon_sym_COLON, + anon_sym_in, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [47857] = 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, + [47190] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 13, - sym__dedent, + ACTIONS(1688), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -66165,7 +65167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1683), 34, + ACTIONS(1686), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66183,6 +65185,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, @@ -66200,15 +65203,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47913] = 3, + [47247] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1718), 12, - sym__dedent, + 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, @@ -66217,7 +65221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1716), 35, + ACTIONS(1694), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66253,13 +65257,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47969] = 3, + [47304] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1722), 13, - sym__dedent, + ACTIONS(1698), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -66271,7 +65275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1720), 34, + ACTIONS(1700), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66289,6 +65293,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, @@ -66306,13 +65311,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48025] = 3, + [47361] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 13, - sym__dedent, + ACTIONS(1702), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -66324,7 +65329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1607), 34, + ACTIONS(1704), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66342,6 +65347,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, @@ -66359,31 +65365,144 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48081] = 3, + [47418] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1726), 12, - sym__dedent, - sym_string_start, + ACTIONS(650), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(686), 3, + anon_sym_DOT, anon_sym_LPAREN, - anon_sym_STAR, anon_sym_LBRACK, + ACTIONS(645), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(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_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, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1690), 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, @@ -66412,11 +65531,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48137] = 3, + [47597] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1712), 13, + ACTIONS(1698), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -66430,7 +65549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1714), 34, + ACTIONS(1700), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66448,6 +65567,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, @@ -66465,15 +65585,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48193] = 3, + [47654] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1702), 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, @@ -66482,7 +65603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1700), 35, + ACTIONS(1704), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66518,86 +65639,70 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48249] = 21, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(1728), 1, - sym_identifier, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(1732), 1, - anon_sym_STAR, - ACTIONS(1738), 1, - anon_sym_LBRACK, - ACTIONS(1740), 1, - anon_sym_await, - STATE(1003), 1, - sym_string, - STATE(1567), 1, - sym_list_splat_pattern, - STATE(1617), 1, - sym_primary_expression, - STATE(2090), 1, - sym_pattern, + [47711] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, - sym_ellipsis, - sym_float, - ACTIONS(1736), 2, - anon_sym_match, - anon_sym_type, - STATE(1568), 2, - sym_attribute, - sym_subscript, - STATE(2054), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(308), 3, + 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_TILDE, - ACTIONS(1734), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(979), 4, + 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_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1392), 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, - [48341] = 3, + 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(1742), 12, + 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, @@ -66606,7 +65711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1744), 35, + ACTIONS(1710), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66642,15 +65747,70 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48397] = 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(1746), 12, + ACTIONS(1712), 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, @@ -66659,7 +65819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1748), 35, + ACTIONS(1710), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66695,11 +65855,65 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48453] = 3, + [47939] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1750), 13, + ACTIONS(1720), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1718), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [47996] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1722), 13, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -66713,7 +65927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1752), 34, + ACTIONS(1724), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66731,6 +65945,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, @@ -66748,11 +65963,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48509] = 3, + [48053] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1622), 13, + ACTIONS(1722), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -66766,7 +65981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1624), 34, + ACTIONS(1724), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66784,6 +65999,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, @@ -66801,82 +66017,71 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48565] = 21, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(1728), 1, - sym_identifier, - ACTIONS(1730), 1, - anon_sym_LPAREN, - ACTIONS(1732), 1, - anon_sym_STAR, - ACTIONS(1738), 1, - anon_sym_LBRACK, - ACTIONS(1740), 1, - anon_sym_await, - STATE(1003), 1, - sym_string, - STATE(1567), 1, - sym_list_splat_pattern, - STATE(1617), 1, - sym_primary_expression, - STATE(2090), 1, - sym_pattern, + [48110] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, - sym_ellipsis, - sym_float, - ACTIONS(1736), 2, - anon_sym_match, - anon_sym_type, - STATE(1568), 2, - sym_attribute, - sym_subscript, - STATE(2054), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(308), 3, + ACTIONS(1720), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1734), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(965), 4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1718), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1392), 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, - [48657] = 3, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [48167] = 6, + ACTIONS(1730), 1, + anon_sym_elif, + STATE(663), 1, + aux_sym_if_statement_repeat1, + STATE(691), 1, + sym_elif_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1742), 12, + ACTIONS(1728), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -66889,7 +66094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1744), 35, + ACTIONS(1726), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66907,8 +66112,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, @@ -66925,15 +66128,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48713] = 3, + [48230] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1746), 12, + ACTIONS(1666), 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, @@ -66942,7 +66146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1748), 35, + ACTIONS(1668), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66978,11 +66182,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48769] = 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(1706), 12, + ACTIONS(1728), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -66995,7 +66205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1704), 35, + ACTIONS(1726), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67013,8 +66223,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, @@ -67031,13 +66239,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48825] = 3, + [48350] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1710), 13, + ACTIONS(1674), 13, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -67049,7 +66257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1708), 34, + ACTIONS(1676), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67067,6 +66275,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, @@ -67084,13 +66293,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48881] = 3, + [48407] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 13, + ACTIONS(1678), 13, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -67102,7 +66311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1607), 34, + ACTIONS(1680), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67120,6 +66329,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, @@ -67137,13 +66347,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48937] = 3, + [48464] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1648), 13, - sym__dedent, + ACTIONS(1631), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -67155,7 +66365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1650), 34, + ACTIONS(1629), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67173,6 +66383,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, @@ -67190,13 +66401,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48993] = 3, + [48521] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1726), 12, + ACTIONS(1692), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67207,7 +66418,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, @@ -67219,13 +66430,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, @@ -67243,16 +66454,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49049] = 3, + [48577] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1750), 13, + ACTIONS(1722), 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, @@ -67261,7 +66471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1752), 34, + ACTIONS(1724), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67273,6 +66483,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, @@ -67296,13 +66507,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49105] = 3, + [48633] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1718), 12, + ACTIONS(1712), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67313,7 +66524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1716), 35, + ACTIONS(1710), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67325,13 +66536,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, @@ -67349,16 +66560,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49161] = 3, + [48689] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1722), 13, + ACTIONS(1692), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -67367,7 +66577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1720), 34, + ACTIONS(1690), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67379,6 +66589,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, @@ -67402,16 +66613,86 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49217] = 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(1644), 13, + 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_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -67420,7 +66701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1646), 34, + ACTIONS(1603), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67432,6 +66713,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, @@ -67455,16 +66737,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49273] = 3, + [48893] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 13, + ACTIONS(1605), 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, @@ -67473,7 +66754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1683), 34, + ACTIONS(1603), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67485,6 +66766,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, @@ -67508,69 +66790,82 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49329] = 5, - ACTIONS(1493), 1, - anon_sym_else, - STATE(816), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1756), 12, - sym__dedent, + [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, - anon_sym_AT, + 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(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_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1754), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1742), 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, - [49388] = 5, - ACTIONS(1497), 1, - anon_sym_finally, - STATE(798), 1, - sym_finally_clause, + 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(1760), 12, + ACTIONS(1625), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -67583,7 +66878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1758), 32, + ACTIONS(1627), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67595,11 +66890,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67616,17 +66914,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49447] = 5, - ACTIONS(1493), 1, - anon_sym_else, - STATE(765), 1, - sym_else_clause, + [49097] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1764), 12, - sym__dedent, + ACTIONS(1625), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67637,7 +66931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1762), 32, + ACTIONS(1627), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67649,11 +66943,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67670,13 +66967,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49506] = 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, @@ -67687,7 +66984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1766), 34, + ACTIONS(1710), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67706,6 +67003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67722,11 +67020,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49561] = 3, + [49209] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1768), 12, + ACTIONS(1722), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -67739,7 +67037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1766), 34, + ACTIONS(1724), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67758,6 +67056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67774,17 +67073,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49616] = 5, - ACTIONS(1493), 1, - anon_sym_else, - STATE(722), 1, - sym_else_clause, + [49265] = 5, + ACTIONS(1435), 1, + anon_sym_finally, + STATE(721), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1772), 12, - sym__dedent, + ACTIONS(1750), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67795,7 +67094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1770), 32, + ACTIONS(1752), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67828,17 +67127,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49675] = 5, - ACTIONS(1505), 1, - anon_sym_else, - STATE(808), 1, - sym_else_clause, + [49324] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1774), 12, + ACTIONS(1756), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67849,7 +67144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1776), 32, + ACTIONS(1754), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67861,6 +67156,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, @@ -67882,15 +67179,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49734] = 5, - ACTIONS(1505), 1, + [49379] = 5, + ACTIONS(1429), 1, anon_sym_else, - STATE(773), 1, + STATE(762), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1764), 12, + ACTIONS(1758), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -67903,7 +67200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1762), 32, + ACTIONS(1760), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67936,15 +67233,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49793] = 5, - ACTIONS(1493), 1, + [49438] = 5, + ACTIONS(1441), 1, anon_sym_else, - STATE(729), 1, + STATE(792), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1774), 12, + ACTIONS(1764), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -67957,7 +67254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1776), 32, + ACTIONS(1762), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67990,17 +67287,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49852] = 5, - ACTIONS(1509), 1, + [49497] = 5, + ACTIONS(1447), 1, anon_sym_finally, - STATE(780), 1, + STATE(794), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1760), 12, + ACTIONS(1437), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68011,7 +67308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1758), 32, + ACTIONS(1439), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68044,11 +67341,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49911] = 3, + [49556] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1778), 12, + ACTIONS(1766), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68061,7 +67358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1780), 34, + ACTIONS(1768), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68096,11 +67393,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49966] = 3, + [49611] = 5, + ACTIONS(1435), 1, + anon_sym_finally, + STATE(745), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1782), 12, + ACTIONS(1770), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68113,7 +67414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1784), 34, + ACTIONS(1772), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68125,8 +67426,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, @@ -68148,15 +67447,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50021] = 5, - ACTIONS(1509), 1, - anon_sym_finally, - STATE(755), 1, - sym_finally_clause, + [49670] = 5, + ACTIONS(1429), 1, + anon_sym_else, + STATE(739), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1786), 12, + ACTIONS(1774), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68169,7 +67468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1788), 32, + ACTIONS(1776), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68202,17 +67501,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50080] = 5, - ACTIONS(1493), 1, - anon_sym_else, - STATE(825), 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, @@ -68223,7 +67518,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, @@ -68235,6 +67530,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, @@ -68256,13 +67553,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50139] = 3, + [49784] = 5, + ACTIONS(1435), 1, + anon_sym_finally, + STATE(771), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1778), 12, - sym__dedent, + ACTIONS(1437), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68273,7 +67574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1780), 34, + ACTIONS(1439), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68285,8 +67586,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, @@ -68308,17 +67607,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50194] = 5, - ACTIONS(1505), 1, - anon_sym_else, - STATE(792), 1, - sym_else_clause, + [49843] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1792), 12, + ACTIONS(1780), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68329,7 +67624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1790), 32, + ACTIONS(1778), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68341,6 +67636,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, @@ -68362,17 +67659,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50253] = 5, - ACTIONS(1505), 1, - anon_sym_else, - STATE(748), 1, - sym_else_clause, + [49898] = 5, + ACTIONS(1447), 1, + anon_sym_finally, + STATE(810), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1756), 12, + ACTIONS(1750), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68383,7 +67680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1754), 32, + ACTIONS(1752), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68416,17 +67713,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50312] = 5, - ACTIONS(1505), 1, + [49957] = 5, + ACTIONS(1441), 1, anon_sym_else, - STATE(797), 1, + STATE(808), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1772), 12, + ACTIONS(1784), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68437,7 +67734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1770), 32, + ACTIONS(1782), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68470,17 +67767,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50371] = 5, - ACTIONS(1497), 1, - anon_sym_finally, - STATE(834), 1, - sym_finally_clause, + [50016] = 5, + ACTIONS(1429), 1, + anon_sym_else, + STATE(754), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(1786), 12, - sym__dedent, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68524,17 +67821,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50430] = 5, - ACTIONS(1505), 1, - anon_sym_else, - STATE(801), 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(1794), 12, + ACTIONS(1457), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68545,7 +67842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1796), 32, + ACTIONS(1455), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68578,13 +67875,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50489] = 3, + [50134] = 5, + ACTIONS(1429), 1, + anon_sym_else, + STATE(716), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1782), 12, - sym__dedent, + ACTIONS(1784), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68595,7 +67896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1784), 34, + ACTIONS(1782), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68607,8 +67908,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, @@ -68630,17 +67929,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50544] = 5, - ACTIONS(1493), 1, + [50193] = 5, + ACTIONS(1429), 1, anon_sym_else, - STATE(737), 1, + STATE(757), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1794), 12, - sym__dedent, + ACTIONS(1790), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68651,7 +67950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1796), 32, + ACTIONS(1792), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68684,13 +67983,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50603] = 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, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68701,7 +68004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1800), 33, + ACTIONS(1776), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68718,7 +68021,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, @@ -68735,83 +68037,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50657] = 22, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(1802), 1, - sym_identifier, - ACTIONS(1804), 1, - anon_sym_LPAREN, - ACTIONS(1806), 1, - anon_sym_RPAREN, - ACTIONS(1808), 1, - anon_sym_STAR, - ACTIONS(1814), 1, - anon_sym_LBRACK, - ACTIONS(1816), 1, - anon_sym_await, - STATE(1003), 1, - sym_string, - STATE(1601), 1, - sym_list_splat_pattern, - STATE(1611), 1, - sym_primary_expression, - STATE(2404), 1, - sym_pattern, - STATE(2629), 1, - sym__patterns, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(314), 2, - sym_ellipsis, - sym_float, - ACTIONS(1812), 2, - anon_sym_match, - anon_sym_type, - STATE(1583), 2, - sym_attribute, - sym_subscript, - STATE(2537), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(308), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1810), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1392), 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, - [50749] = 3, + [50311] = 5, + ACTIONS(1435), 1, + anon_sym_finally, + STATE(722), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1798), 12, - sym__dedent, + ACTIONS(1457), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68822,7 +68058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1800), 33, + ACTIONS(1455), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68839,7 +68075,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, @@ -68856,81 +68091,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50803] = 22, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(1802), 1, - sym_identifier, - ACTIONS(1804), 1, - anon_sym_LPAREN, - ACTIONS(1808), 1, - anon_sym_STAR, - ACTIONS(1814), 1, - anon_sym_LBRACK, - ACTIONS(1816), 1, - anon_sym_await, - ACTIONS(1818), 1, - anon_sym_RPAREN, - STATE(1003), 1, - sym_string, - STATE(1601), 1, - sym_list_splat_pattern, - STATE(1611), 1, - sym_primary_expression, - STATE(2404), 1, - sym_pattern, - STATE(2729), 1, - sym__patterns, + [50370] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, - sym_ellipsis, - sym_float, - ACTIONS(1812), 2, - anon_sym_match, - anon_sym_type, - STATE(1583), 2, - sym_attribute, - sym_subscript, - STATE(2537), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(308), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1810), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1392), 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, - [50895] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1822), 12, + ACTIONS(1766), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68943,7 +68108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1820), 33, + ACTIONS(1768), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68955,12 +68120,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -68977,64 +68143,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50949] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1822), 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(1820), 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, + [50425] = 5, + ACTIONS(1447), 1, 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, - [51003] = 3, + STATE(831), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1824), 12, + ACTIONS(1770), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69045,7 +68164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1826), 32, + ACTIONS(1772), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69078,13 +68197,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51056] = 3, + [50484] = 5, + ACTIONS(1441), 1, + anon_sym_else, + STATE(727), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1828), 12, + ACTIONS(1790), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69095,7 +68218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1830), 32, + ACTIONS(1792), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69128,11 +68251,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51109] = 3, + [50543] = 5, + ACTIONS(1441), 1, + anon_sym_else, + STATE(829), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1834), 12, + ACTIONS(1786), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69145,7 +68272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1832), 32, + ACTIONS(1788), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69178,11 +68305,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51162] = 3, + [50602] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1836), 12, + ACTIONS(1780), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -69195,7 +68322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1838), 32, + ACTIONS(1778), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69207,6 +68334,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, @@ -69228,11 +68357,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51215] = 3, + [50657] = 5, + ACTIONS(1429), 1, + anon_sym_else, + STATE(713), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1840), 12, + ACTIONS(1764), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -69245,7 +68378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1842), 32, + ACTIONS(1762), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69278,11 +68411,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51268] = 3, + [50716] = 5, + ACTIONS(1441), 1, + anon_sym_else, + STATE(719), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1846), 12, + ACTIONS(1758), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69295,7 +68432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1844), 32, + ACTIONS(1760), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69328,11 +68465,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51321] = 3, + [50775] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1848), 12, + ACTIONS(1794), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -69345,7 +68482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1850), 32, + ACTIONS(1796), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69362,6 +68499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -69378,61 +68516,81 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51374] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1854), 12, - sym__dedent, + [50829] = 22, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, sym_string_start, + ACTIONS(1798), 1, + sym_identifier, + ACTIONS(1800), 1, anon_sym_LPAREN, + ACTIONS(1802), 1, + anon_sym_RPAREN, + ACTIONS(1804), 1, anon_sym_STAR, + ACTIONS(1810), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1812), 1, + anon_sym_await, + STATE(984), 1, + sym_string, + STATE(1581), 1, + sym_primary_expression, + STATE(1589), 1, + sym_list_splat_pattern, + STATE(2289), 1, + sym_pattern, + STATE(2615), 1, + sym__patterns, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(1808), 2, + anon_sym_match, + anon_sym_type, + STATE(1595), 2, + sym_attribute, + sym_subscript, + STATE(2546), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(304), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1852), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1806), 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, - [51427] = 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, + [50921] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1858), 12, + ACTIONS(1794), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69445,7 +68603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1856), 32, + ACTIONS(1796), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69462,6 +68620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -69478,13 +68637,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51480] = 3, + [50975] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1862), 12, - sym__dedent, + ACTIONS(1814), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69495,7 +68654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1860), 32, + ACTIONS(1816), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69512,6 +68671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -69528,11 +68688,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51533] = 3, + [51029] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1866), 12, + ACTIONS(1814), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69545,7 +68705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1864), 32, + ACTIONS(1816), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69562,6 +68722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -69578,13 +68739,83 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51586] = 3, + [51083] = 22, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(1798), 1, + sym_identifier, + ACTIONS(1800), 1, + anon_sym_LPAREN, + ACTIONS(1804), 1, + anon_sym_STAR, + ACTIONS(1810), 1, + anon_sym_LBRACK, + ACTIONS(1812), 1, + anon_sym_await, + ACTIONS(1818), 1, + anon_sym_RPAREN, + STATE(984), 1, + sym_string, + STATE(1581), 1, + sym_primary_expression, + STATE(1589), 1, + sym_list_splat_pattern, + STATE(2289), 1, + sym_pattern, + STATE(2709), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1870), 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, + [51175] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1820), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69595,7 +68826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1868), 32, + ACTIONS(1822), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69628,11 +68859,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51639] = 3, + [51228] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1874), 12, + ACTIONS(1826), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69645,7 +68876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1872), 32, + ACTIONS(1824), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69678,13 +68909,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51692] = 3, + [51281] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1878), 12, - sym__dedent, + ACTIONS(1828), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69695,7 +68926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1876), 32, + ACTIONS(1830), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69728,13 +68959,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51745] = 3, + [51334] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1836), 12, - sym__dedent, + ACTIONS(1832), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69745,7 +68976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1838), 32, + ACTIONS(1834), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69778,11 +69009,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51798] = 3, + [51387] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1882), 12, + ACTIONS(1838), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69795,7 +69026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1880), 32, + ACTIONS(1836), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69828,11 +69059,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51851] = 3, + [51440] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1760), 12, + ACTIONS(1842), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69845,7 +69076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1758), 32, + ACTIONS(1840), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69878,11 +69109,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51904] = 3, + [51493] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1886), 12, + ACTIONS(1846), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69895,7 +69126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1884), 32, + ACTIONS(1844), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69928,13 +69159,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51957] = 3, + [51546] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1890), 12, - sym__dedent, + ACTIONS(1848), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69945,7 +69176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1888), 32, + ACTIONS(1850), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69978,13 +69209,113 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52010] = 3, + [51599] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1894), 12, - sym__dedent, + ACTIONS(1852), 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(1854), 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, + [51652] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1770), 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(1772), 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, + [51705] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1856), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69995,7 +69326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1892), 32, + ACTIONS(1858), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70028,11 +69359,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52063] = 3, + [51758] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1896), 12, + ACTIONS(1860), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70045,7 +69376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1898), 32, + ACTIONS(1862), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70078,11 +69409,111 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52116] = 3, + [51811] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1902), 12, + ACTIONS(1864), 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(1866), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [51864] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1868), 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(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, + sym_true, + sym_false, + sym_none, + [51917] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1874), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70095,7 +69526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1900), 32, + ACTIONS(1872), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70128,13 +69559,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52169] = 3, + [51970] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1906), 12, - sym__dedent, + ACTIONS(1876), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70145,7 +69576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1904), 32, + ACTIONS(1878), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70178,13 +69609,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52222] = 3, + [52023] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1910), 12, - sym__dedent, + ACTIONS(1880), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70195,7 +69626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1908), 32, + ACTIONS(1882), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70228,11 +69659,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52275] = 3, + [52076] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1912), 12, + ACTIONS(1884), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70245,7 +69676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1914), 32, + ACTIONS(1886), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70278,13 +69709,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52328] = 3, + [52129] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1918), 12, - sym__dedent, + ACTIONS(1888), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70295,7 +69726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1916), 32, + ACTIONS(1890), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70328,111 +69759,147 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52381] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1922), 12, - sym__dedent, + [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, - anon_sym_AT, + 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(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_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1920), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1806), 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, - [52434] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1926), 12, - sym__dedent, + 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, - 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(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_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1924), 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, - [52487] = 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, + [52360] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1928), 12, + ACTIONS(1906), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70445,7 +69912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1930), 32, + ACTIONS(1908), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70478,11 +69945,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52540] = 3, + [52413] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1932), 12, + ACTIONS(1910), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70495,7 +69962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1934), 32, + ACTIONS(1912), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70528,11 +69995,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52593] = 3, + [52466] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1936), 12, + ACTIONS(1914), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70545,7 +70012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1938), 32, + ACTIONS(1916), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70578,11 +70045,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52646] = 3, + [52519] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1940), 12, + ACTIONS(1918), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70595,7 +70062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1942), 32, + ACTIONS(1920), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70628,111 +70095,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52699] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1946), 12, - sym__dedent, + [52572] = 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(1944), 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, - [52752] = 3, + 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(1950), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + 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(1948), 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, - [52805] = 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, + [52661] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1952), 12, + ACTIONS(1922), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70745,7 +70180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1954), 32, + ACTIONS(1924), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70778,13 +70213,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52858] = 3, + [52714] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1958), 12, - sym__dedent, + ACTIONS(1926), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70795,7 +70230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1956), 32, + ACTIONS(1928), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70828,149 +70263,163 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52911] = 21, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(320), 1, + [52767] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1930), 12, sym_string_start, - ACTIONS(1802), 1, - sym_identifier, - ACTIONS(1804), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1808), 1, anon_sym_STAR, - ACTIONS(1814), 1, anon_sym_LBRACK, - ACTIONS(1816), 1, - anon_sym_await, - ACTIONS(1960), 1, - anon_sym_RPAREN, - STATE(1003), 1, - sym_string, - STATE(1601), 1, - sym_list_splat_pattern, - STATE(1611), 1, - sym_primary_expression, - STATE(2576), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(314), 2, - sym_ellipsis, - sym_float, - ACTIONS(1812), 2, - anon_sym_match, - anon_sym_type, - STATE(1583), 2, - sym_attribute, - sym_subscript, - STATE(2537), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(308), 3, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1810), 3, + sym_ellipsis, + sym_float, + ACTIONS(1932), 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(316), 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(1392), 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, - [53000] = 21, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(1962), 1, - sym_identifier, - ACTIONS(1964), 1, - anon_sym_LPAREN, - ACTIONS(1970), 1, - anon_sym_LBRACK, - ACTIONS(1972), 1, - anon_sym_await, - STATE(1003), 1, - sym_string, - STATE(1594), 1, - sym_list_splat_pattern, - STATE(1609), 1, - sym_primary_expression, - STATE(2279), 1, - sym_pattern, - STATE(2753), 1, - sym_pattern_list, + [52820] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(1936), 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(1968), 2, + ACTIONS(1934), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, anon_sym_type, - STATE(1595), 2, - sym_attribute, - sym_subscript, - STATE(1638), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(308), 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, + [52873] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1940), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1966), 3, + sym_ellipsis, + sym_float, + ACTIONS(1938), 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(316), 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(1392), 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, - [53089] = 3, + [52926] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1976), 12, - sym__dedent, + ACTIONS(1942), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70981,7 +70430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1974), 32, + ACTIONS(1944), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71014,13 +70463,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53142] = 3, + [52979] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1840), 12, - sym__dedent, + ACTIONS(1946), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71031,7 +70480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1842), 32, + ACTIONS(1948), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71064,11 +70513,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53195] = 3, + [53032] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1978), 12, + ACTIONS(1950), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71081,7 +70530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1980), 32, + ACTIONS(1952), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71114,11 +70563,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53248] = 3, + [53085] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1982), 12, + ACTIONS(1954), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71131,7 +70580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1984), 32, + ACTIONS(1956), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71164,13 +70613,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53301] = 3, + [53138] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1988), 12, - sym__dedent, + ACTIONS(1958), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71181,7 +70630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1986), 32, + ACTIONS(1960), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71214,11 +70663,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53354] = 3, + [53191] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1760), 12, + ACTIONS(1962), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71231,7 +70680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1758), 32, + ACTIONS(1964), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71264,11 +70713,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53407] = 3, + [53244] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1886), 12, + ACTIONS(1826), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71281,7 +70730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1884), 32, + ACTIONS(1824), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71314,11 +70763,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53460] = 3, + [53297] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1902), 12, + ACTIONS(1842), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71331,7 +70780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1900), 32, + ACTIONS(1840), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71364,11 +70813,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53513] = 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(1906), 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, + [53439] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1437), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71381,7 +70898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1904), 32, + ACTIONS(1439), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71414,11 +70931,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53566] = 3, + [53492] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1918), 12, + ACTIONS(1966), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71431,7 +70948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1916), 32, + ACTIONS(1968), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71464,11 +70981,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53619] = 3, + [53545] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1990), 12, + ACTIONS(1970), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71481,7 +70998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1992), 32, + ACTIONS(1972), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71514,11 +71031,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53672] = 3, + [53598] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1946), 12, + ACTIONS(1838), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71531,7 +71048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1944), 32, + ACTIONS(1836), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71564,13 +71081,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53725] = 3, + [53651] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1828), 12, - sym__dedent, + ACTIONS(1874), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71581,7 +71098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1830), 32, + ACTIONS(1872), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71614,13 +71131,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53778] = 3, + [53704] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1996), 12, - sym__dedent, + ACTIONS(1974), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71631,7 +71148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1994), 32, + ACTIONS(1976), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71664,11 +71181,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53831] = 3, + [53757] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1998), 12, + ACTIONS(1978), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71681,7 +71198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2000), 32, + ACTIONS(1980), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71714,11 +71231,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53884] = 3, + [53810] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1950), 12, + ACTIONS(1982), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71731,7 +71248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1948), 32, + ACTIONS(1984), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71764,81 +71281,63 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53937] = 21, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(1962), 1, - sym_identifier, - ACTIONS(1964), 1, - anon_sym_LPAREN, - ACTIONS(1970), 1, - anon_sym_LBRACK, - ACTIONS(1972), 1, - anon_sym_await, - STATE(1003), 1, - sym_string, - STATE(1594), 1, - sym_list_splat_pattern, - STATE(1609), 1, - sym_primary_expression, - STATE(2406), 1, - sym_pattern, - STATE(2704), 1, - sym_pattern_list, + [53863] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, - sym_ellipsis, - sym_float, - ACTIONS(1968), 2, - anon_sym_match, - anon_sym_type, - STATE(1595), 2, - sym_attribute, - sym_subscript, - STATE(1638), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(308), 3, + ACTIONS(1986), 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(1966), 3, + sym_ellipsis, + sym_float, + ACTIONS(1988), 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(316), 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(1392), 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, - [54026] = 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, @@ -71849,7 +71348,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, @@ -71882,11 +71381,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54079] = 3, + [53969] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1976), 12, + ACTIONS(1936), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71899,7 +71398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1974), 32, + ACTIONS(1934), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71932,79 +71431,161 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54132] = 21, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(320), 1, + [54022] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1940), 12, sym_string_start, - ACTIONS(1802), 1, - sym_identifier, - ACTIONS(1804), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1808), 1, anon_sym_STAR, - ACTIONS(1814), 1, anon_sym_LBRACK, - ACTIONS(1816), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1938), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(2002), 1, - anon_sym_RPAREN, - STATE(1003), 1, - sym_string, - STATE(1601), 1, - sym_list_splat_pattern, - STATE(1611), 1, - sym_primary_expression, - STATE(2576), 1, - sym_pattern, + sym_true, + sym_false, + sym_none, + [54075] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(1992), 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(1812), 2, + ACTIONS(1990), 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(1583), 2, - sym_attribute, - sym_subscript, - STATE(2537), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(308), 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, + [54128] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1992), 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(1810), 3, + sym_ellipsis, + sym_float, + ACTIONS(1990), 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(316), 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(1392), 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, - [54221] = 3, + [54181] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1988), 12, + ACTIONS(1994), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72017,7 +71598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1986), 32, + ACTIONS(1996), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72050,13 +71631,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54274] = 3, + [54234] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1996), 12, + ACTIONS(1994), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72067,7 +71648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1994), 32, + ACTIONS(1996), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72100,13 +71681,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54327] = 3, + [54287] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1896), 12, - sym__dedent, + ACTIONS(1998), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72117,7 +71698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1898), 32, + ACTIONS(2000), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72150,13 +71731,81 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54380] = 3, + [54340] = 21, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(1421), 1, + anon_sym_STAR, + ACTIONS(1894), 1, + sym_identifier, + ACTIONS(1896), 1, + anon_sym_LPAREN, + ACTIONS(1902), 1, + anon_sym_LBRACK, + ACTIONS(1904), 1, + anon_sym_await, + ACTIONS(2002), 1, + anon_sym_in, + STATE(984), 1, + sym_string, + STATE(1588), 1, + sym_primary_expression, + STATE(1604), 1, + sym_list_splat_pattern, + STATE(1636), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1786), 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, + [54429] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1750), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72167,7 +71816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1788), 32, + ACTIONS(1752), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72200,13 +71849,81 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54433] = 3, + [54482] = 21, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(1421), 1, + anon_sym_STAR, + ACTIONS(1894), 1, + sym_identifier, + ACTIONS(1896), 1, + anon_sym_LPAREN, + ACTIONS(1902), 1, + anon_sym_LBRACK, + ACTIONS(1904), 1, + anon_sym_await, + STATE(984), 1, + sym_string, + STATE(1588), 1, + sym_primary_expression, + STATE(1604), 1, + sym_list_splat_pattern, + STATE(2477), 1, + sym_pattern, + STATE(2768), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1958), 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, + [54571] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1998), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72217,7 +71934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1956), 32, + ACTIONS(2000), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72250,60 +71967,60 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54486] = 21, - ACTIONS(303), 1, + [54624] = 21, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(1962), 1, + ACTIONS(1894), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(1896), 1, anon_sym_LPAREN, - ACTIONS(1970), 1, + ACTIONS(1902), 1, anon_sym_LBRACK, - ACTIONS(1972), 1, + ACTIONS(1904), 1, anon_sym_await, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1594), 1, - sym_list_splat_pattern, - STATE(1609), 1, + STATE(1588), 1, sym_primary_expression, - STATE(2408), 1, + STATE(1604), 1, + sym_list_splat_pattern, + STATE(2437), 1, sym_pattern, - STATE(2764), 1, + STATE(2695), 1, sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(1968), 2, + ACTIONS(1900), 2, anon_sym_match, anon_sym_type, - STATE(1595), 2, + STATE(1611), 2, sym_attribute, sym_subscript, - STATE(1638), 2, + STATE(1626), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1966), 3, + ACTIONS(1898), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1392), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -72318,13 +72035,81 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [54575] = 3, + [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(1912), 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, + [54802] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2020), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72335,7 +72120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1914), 32, + ACTIONS(2022), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72368,11 +72153,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54628] = 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(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(2004), 12, + ACTIONS(2026), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72385,7 +72238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2006), 32, + ACTIONS(2028), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72418,11 +72271,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54681] = 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(2008), 12, + 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, @@ -72435,7 +72356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2010), 32, + ACTIONS(2032), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72468,13 +72389,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54734] = 3, + [55139] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1491), 12, + ACTIONS(1950), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72485,7 +72406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1489), 32, + ACTIONS(1952), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72518,13 +72439,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54787] = 3, + [55192] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2012), 12, + ACTIONS(1958), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72535,7 +72456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2014), 32, + ACTIONS(1960), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72568,13 +72489,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54840] = 3, + [55245] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2016), 12, + ACTIONS(1437), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72585,7 +72506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2018), 32, + ACTIONS(1439), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72618,13 +72539,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54893] = 3, + [55298] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2022), 12, - sym__dedent, + ACTIONS(2034), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72635,7 +72556,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, @@ -72668,11 +72589,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54946] = 3, + [55351] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1990), 12, + ACTIONS(1982), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -72685,7 +72606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1992), 32, + ACTIONS(1984), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72718,13 +72639,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54999] = 3, + [55404] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2022), 12, + ACTIONS(1986), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72735,7 +72656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2020), 32, + ACTIONS(1988), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72768,13 +72689,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55052] = 3, + [55457] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2024), 12, + ACTIONS(2020), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72785,7 +72706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2026), 32, + ACTIONS(2022), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72818,149 +72739,163 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55105] = 21, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(320), 1, + [55510] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2026), 12, + sym__dedent, sym_string_start, - ACTIONS(2002), 1, - anon_sym_RBRACK, - ACTIONS(2028), 1, - sym_identifier, - ACTIONS(2030), 1, anon_sym_LPAREN, - ACTIONS(2032), 1, anon_sym_STAR, - ACTIONS(2038), 1, anon_sym_LBRACK, - ACTIONS(2040), 1, - anon_sym_await, - STATE(1003), 1, - sym_string, - STATE(1602), 1, - sym_list_splat_pattern, - STATE(1616), 1, - sym_primary_expression, - STATE(2570), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(314), 2, - sym_ellipsis, - sym_float, - ACTIONS(2036), 2, - anon_sym_match, - anon_sym_type, - STATE(1603), 2, - sym_attribute, - sym_subscript, - STATE(2561), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(308), 3, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2034), 3, + sym_ellipsis, + sym_float, + ACTIONS(2028), 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(316), 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(1392), 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, - [55194] = 21, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(1962), 1, - sym_identifier, - ACTIONS(1964), 1, - anon_sym_LPAREN, - ACTIONS(1970), 1, - anon_sym_LBRACK, - ACTIONS(1972), 1, - anon_sym_await, - ACTIONS(2042), 1, - anon_sym_in, - STATE(1003), 1, - sym_string, - STATE(1594), 1, - sym_list_splat_pattern, - STATE(1609), 1, - sym_primary_expression, - STATE(1628), 1, - sym_pattern, + [55563] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(2030), 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(1968), 2, + ACTIONS(2032), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, anon_sym_type, - STATE(1595), 2, - sym_attribute, - sym_subscript, - STATE(1638), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(308), 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, + [55616] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2034), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1966), 3, + sym_ellipsis, + sym_float, + ACTIONS(2036), 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(316), 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(1392), 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, - [55283] = 3, + [55669] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1846), 12, + ACTIONS(2040), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72971,7 +72906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1844), 32, + ACTIONS(2038), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73004,11 +72939,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55336] = 3, + [55722] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1928), 12, + ACTIONS(1820), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73021,7 +72956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1930), 32, + ACTIONS(1822), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73054,13 +72989,81 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55389] = 3, + [55775] = 21, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(1421), 1, + anon_sym_STAR, + ACTIONS(1894), 1, + sym_identifier, + ACTIONS(1896), 1, + anon_sym_LPAREN, + ACTIONS(1902), 1, + anon_sym_LBRACK, + ACTIONS(1904), 1, + anon_sym_await, + STATE(984), 1, + sym_string, + STATE(1588), 1, + sym_primary_expression, + STATE(1604), 1, + sym_list_splat_pattern, + STATE(2436), 1, + sym_pattern, + STATE(2674), 1, + sym_pattern_list, + 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, + [55864] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2044), 12, + ACTIONS(1750), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73071,7 +73074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2046), 32, + ACTIONS(1752), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73104,13 +73107,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55442] = 3, + [55917] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1862), 12, + ACTIONS(1457), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73121,7 +73124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1860), 32, + ACTIONS(1455), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73154,11 +73157,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55495] = 3, + [55970] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1834), 12, + ACTIONS(2040), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73171,7 +73174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1832), 32, + ACTIONS(2038), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73204,11 +73207,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55548] = 3, + [56023] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2004), 12, + ACTIONS(2044), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73221,7 +73224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2006), 32, + ACTIONS(2042), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73254,13 +73257,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55601] = 3, + [56076] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1854), 12, + ACTIONS(1828), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73271,7 +73274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1852), 32, + ACTIONS(1830), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73304,13 +73307,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55654] = 3, + [56129] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1858), 12, + ACTIONS(1864), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73321,7 +73324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1856), 32, + ACTIONS(1866), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73354,11 +73357,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55707] = 3, + [56182] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2008), 12, + ACTIONS(1868), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73371,7 +73374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2010), 32, + ACTIONS(1870), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73404,11 +73407,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55760] = 3, + [56235] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2050), 12, + ACTIONS(1962), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73421,7 +73424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2048), 32, + ACTIONS(1964), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73454,13 +73457,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55813] = 3, + [56288] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1870), 12, + ACTIONS(2048), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73471,7 +73474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1868), 32, + ACTIONS(2046), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73504,13 +73507,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55866] = 3, + [56341] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1910), 12, + ACTIONS(2052), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73521,7 +73524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1908), 32, + ACTIONS(2050), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73554,13 +73557,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55919] = 3, + [56394] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1874), 12, + ACTIONS(1856), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73571,7 +73574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1872), 32, + ACTIONS(1858), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73604,11 +73607,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55972] = 3, + [56447] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2012), 12, + ACTIONS(1910), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73621,7 +73624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2014), 32, + ACTIONS(1912), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73654,11 +73657,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56025] = 3, + [56500] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1932), 12, + ACTIONS(1926), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73671,7 +73674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1934), 32, + ACTIONS(1928), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73704,11 +73707,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56078] = 3, + [56553] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1936), 12, + ACTIONS(1930), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73721,7 +73724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1938), 32, + ACTIONS(1932), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73754,11 +73757,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56131] = 3, + [56606] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1940), 12, + ACTIONS(1832), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73771,7 +73774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1942), 32, + ACTIONS(1834), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73804,13 +73807,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56184] = 3, + [56659] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1786), 12, + ACTIONS(1848), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73821,7 +73824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1788), 32, + ACTIONS(1850), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73854,13 +73857,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56237] = 3, + [56712] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1882), 12, + ACTIONS(1852), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73871,7 +73874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1880), 32, + ACTIONS(1854), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73904,13 +73907,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56290] = 3, + [56765] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1890), 12, + ACTIONS(1770), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73921,7 +73924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1888), 32, + ACTIONS(1772), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73954,13 +73957,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56343] = 3, + [56818] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1894), 12, + ACTIONS(1860), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73971,7 +73974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1892), 32, + ACTIONS(1862), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74004,11 +74007,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56396] = 3, + [56871] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2024), 12, + ACTIONS(1876), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74021,7 +74024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2026), 32, + ACTIONS(1878), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74054,11 +74057,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56449] = 3, + [56924] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2016), 12, + ACTIONS(1880), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74071,7 +74074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2018), 32, + ACTIONS(1882), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74104,13 +74107,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56502] = 3, + [56977] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2052), 12, + ACTIONS(1884), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74121,7 +74124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2054), 32, + ACTIONS(1886), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74154,11 +74157,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56555] = 3, + [57030] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1998), 12, + ACTIONS(1888), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74171,7 +74174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2000), 32, + ACTIONS(1890), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74204,79 +74207,61 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56608] = 21, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(1962), 1, - sym_identifier, - ACTIONS(1964), 1, - anon_sym_LPAREN, - ACTIONS(1970), 1, - anon_sym_LBRACK, - ACTIONS(1972), 1, - anon_sym_await, - ACTIONS(2056), 1, - anon_sym_in, - STATE(1003), 1, - sym_string, - STATE(1594), 1, - sym_list_splat_pattern, - STATE(1609), 1, - sym_primary_expression, - STATE(1628), 1, - sym_pattern, + [57083] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, - sym_ellipsis, - sym_float, - ACTIONS(1968), 2, - anon_sym_match, - anon_sym_type, - STATE(1595), 2, - sym_attribute, - sym_subscript, - STATE(1638), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(308), 3, + ACTIONS(2048), 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(1966), 3, + sym_ellipsis, + sym_float, + ACTIONS(2046), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(316), 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(1392), 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, - [56697] = 3, + [57136] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1952), 12, + ACTIONS(1906), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74289,7 +74274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1954), 32, + ACTIONS(1908), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74322,81 +74307,63 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56750] = 21, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(1962), 1, - sym_identifier, - ACTIONS(1964), 1, - anon_sym_LPAREN, - ACTIONS(1970), 1, - anon_sym_LBRACK, - ACTIONS(1972), 1, - anon_sym_await, - STATE(1003), 1, - sym_string, - STATE(1594), 1, - sym_list_splat_pattern, - STATE(1609), 1, - sym_primary_expression, - STATE(2319), 1, - sym_pattern, - STATE(2644), 1, - sym_pattern_list, + [57189] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, - sym_ellipsis, - sym_float, - ACTIONS(1968), 2, - anon_sym_match, - anon_sym_type, - STATE(1595), 2, - sym_attribute, - sym_subscript, - STATE(1638), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(308), 3, + ACTIONS(2044), 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(1966), 3, + sym_ellipsis, + sym_float, + ACTIONS(2042), 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(316), 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(1392), 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, - [56839] = 3, + [57242] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1501), 12, + ACTIONS(1914), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74407,7 +74374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1503), 32, + ACTIONS(1916), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74440,13 +74407,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56892] = 3, + [57295] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1501), 12, - sym__dedent, + ACTIONS(2052), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74457,7 +74424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1503), 32, + ACTIONS(2050), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74490,13 +74457,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56945] = 3, + [57348] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1922), 12, + ACTIONS(1918), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74540,81 +74507,63 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56998] = 21, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(320), 1, + [57401] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1922), 12, + sym__dedent, sym_string_start, - ACTIONS(1960), 1, - anon_sym_RBRACK, - ACTIONS(2028), 1, - sym_identifier, - ACTIONS(2030), 1, anon_sym_LPAREN, - ACTIONS(2032), 1, anon_sym_STAR, - ACTIONS(2038), 1, anon_sym_LBRACK, - ACTIONS(2040), 1, - anon_sym_await, - STATE(1003), 1, - sym_string, - STATE(1602), 1, - sym_list_splat_pattern, - STATE(1616), 1, - sym_primary_expression, - STATE(2570), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(314), 2, - sym_ellipsis, - sym_float, - ACTIONS(2036), 2, - anon_sym_match, - anon_sym_type, - STATE(1603), 2, - sym_attribute, - sym_subscript, - STATE(2561), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(308), 3, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2034), 3, + sym_ellipsis, + sym_float, + ACTIONS(1924), 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(316), 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(1392), 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, - [57087] = 3, + [57454] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1978), 12, - sym__dedent, + ACTIONS(1457), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74625,7 +74574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1980), 32, + ACTIONS(1455), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74658,13 +74607,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57140] = 3, + [57507] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1866), 12, + ACTIONS(1974), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74675,7 +74624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1864), 32, + ACTIONS(1976), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74708,11 +74657,147 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57193] = 3, + [57560] = 21, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(1421), 1, + anon_sym_STAR, + ACTIONS(1894), 1, + sym_identifier, + ACTIONS(1896), 1, + anon_sym_LPAREN, + ACTIONS(1902), 1, + anon_sym_LBRACK, + ACTIONS(1904), 1, + anon_sym_await, + STATE(984), 1, + sym_string, + STATE(1588), 1, + sym_primary_expression, + STATE(1604), 1, + sym_list_splat_pattern, + STATE(2439), 1, + sym_pattern, + STATE(2669), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2052), 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, + [57649] = 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(2441), 1, + sym_pattern, + STATE(2679), 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, + [57738] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1978), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74725,7 +74810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2054), 32, + ACTIONS(1980), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74758,11 +74843,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57246] = 3, + [57791] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2044), 12, + ACTIONS(1966), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74775,7 +74860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2046), 32, + ACTIONS(1968), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74808,11 +74893,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57299] = 3, + [57844] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1824), 12, + ACTIONS(1942), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74825,7 +74910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1826), 32, + ACTIONS(1944), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74858,13 +74943,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57352] = 3, + [57897] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1878), 12, + ACTIONS(1946), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74875,7 +74960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1876), 32, + ACTIONS(1948), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74908,11 +74993,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57405] = 3, + [57950] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1491), 12, + ACTIONS(1954), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74925,7 +75010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1489), 32, + ACTIONS(1956), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74958,13 +75043,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57458] = 3, + [58003] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1926), 12, + ACTIONS(1970), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74975,7 +75060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1924), 32, + ACTIONS(1972), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75008,60 +75093,60 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57511] = 21, - ACTIONS(303), 1, + [58056] = 21, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(1962), 1, + ACTIONS(1894), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(1896), 1, anon_sym_LPAREN, - ACTIONS(1970), 1, + ACTIONS(1902), 1, anon_sym_LBRACK, - ACTIONS(1972), 1, + ACTIONS(1904), 1, anon_sym_await, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1594), 1, - sym_list_splat_pattern, - STATE(1609), 1, + STATE(1588), 1, sym_primary_expression, - STATE(2449), 1, + STATE(1604), 1, + sym_list_splat_pattern, + STATE(2453), 1, sym_pattern, - STATE(2680), 1, + STATE(2703), 1, sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(1968), 2, + ACTIONS(1900), 2, anon_sym_match, anon_sym_type, - STATE(1595), 2, + STATE(1611), 2, sym_attribute, sym_subscript, - STATE(1638), 2, + STATE(1626), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1966), 3, + ACTIONS(1898), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1392), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75076,60 +75161,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [57600] = 21, - ACTIONS(303), 1, + [58145] = 21, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(1962), 1, + ACTIONS(1894), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(1896), 1, anon_sym_LPAREN, - ACTIONS(1970), 1, + ACTIONS(1902), 1, anon_sym_LBRACK, - ACTIONS(1972), 1, + ACTIONS(1904), 1, anon_sym_await, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1594), 1, - sym_list_splat_pattern, - STATE(1609), 1, + STATE(1588), 1, sym_primary_expression, - STATE(2451), 1, + STATE(1604), 1, + sym_list_splat_pattern, + STATE(2454), 1, sym_pattern, - STATE(2689), 1, + STATE(2705), 1, sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(1968), 2, + ACTIONS(1900), 2, anon_sym_match, anon_sym_type, - STATE(1595), 2, + STATE(1611), 2, sym_attribute, sym_subscript, - STATE(1638), 2, + STATE(1626), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1966), 3, + ACTIONS(1898), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1392), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75144,60 +75229,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [57689] = 21, - ACTIONS(303), 1, + [58234] = 21, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(1962), 1, + ACTIONS(1798), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(1800), 1, anon_sym_LPAREN, - ACTIONS(1970), 1, + ACTIONS(1804), 1, + anon_sym_STAR, + ACTIONS(1810), 1, anon_sym_LBRACK, - ACTIONS(1972), 1, + ACTIONS(1812), 1, anon_sym_await, - STATE(1003), 1, + ACTIONS(2016), 1, + anon_sym_RPAREN, + STATE(984), 1, sym_string, - STATE(1594), 1, - sym_list_splat_pattern, - STATE(1609), 1, + STATE(1581), 1, sym_primary_expression, - STATE(2463), 1, + STATE(1589), 1, + sym_list_splat_pattern, + STATE(2542), 1, sym_pattern, - STATE(2714), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(1968), 2, + ACTIONS(1808), 2, anon_sym_match, anon_sym_type, STATE(1595), 2, sym_attribute, sym_subscript, - STATE(1638), 2, + STATE(2546), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1966), 3, + ACTIONS(1806), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1392), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75212,60 +75297,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [57778] = 21, - ACTIONS(303), 1, + [58323] = 20, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(1962), 1, + ACTIONS(1083), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(1085), 1, anon_sym_LPAREN, - ACTIONS(1970), 1, + ACTIONS(1093), 1, anon_sym_LBRACK, - ACTIONS(1972), 1, + ACTIONS(1095), 1, anon_sym_await, - STATE(1003), 1, + ACTIONS(2054), 1, + anon_sym_STAR, + STATE(984), 1, sym_string, - STATE(1594), 1, + STATE(1475), 1, sym_list_splat_pattern, - STATE(1609), 1, + STATE(1618), 1, sym_primary_expression, - STATE(2464), 1, + STATE(1636), 1, sym_pattern, - STATE(2716), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(1968), 2, + ACTIONS(1091), 2, anon_sym_match, anon_sym_type, - STATE(1595), 2, + STATE(1476), 2, sym_attribute, sym_subscript, - STATE(1638), 2, + STATE(1626), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1966), 3, + ACTIONS(1089), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1392), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75280,110 +75363,124 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [57867] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1982), 12, - sym__dedent, + [58409] = 20, + ACTIONS(17), 1, + anon_sym_STAR, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, sym_string_start, + ACTIONS(955), 1, + sym_identifier, + ACTIONS(959), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(967), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(969), 1, + anon_sym_await, + STATE(984), 1, + sym_string, + STATE(1345), 1, + sym_list_splat_pattern, + STATE(1593), 1, + sym_pattern, + STATE(1598), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + ACTIONS(965), 2, + anon_sym_match, + anon_sym_type, + STATE(1346), 2, + sym_attribute, + sym_subscript, + STATE(1597), 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(1984), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(963), 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, - [57920] = 21, - ACTIONS(303), 1, + 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, + [58495] = 20, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(1962), 1, + ACTIONS(1894), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(1896), 1, anon_sym_LPAREN, - ACTIONS(1970), 1, + ACTIONS(1902), 1, anon_sym_LBRACK, - ACTIONS(1972), 1, + ACTIONS(1904), 1, anon_sym_await, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1594), 1, - sym_list_splat_pattern, - STATE(1609), 1, + STATE(1588), 1, sym_primary_expression, - STATE(2490), 1, + STATE(1604), 1, + sym_list_splat_pattern, + STATE(1636), 1, sym_pattern, - STATE(2780), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(1968), 2, + ACTIONS(1900), 2, anon_sym_match, anon_sym_type, - STATE(1595), 2, + STATE(1611), 2, sym_attribute, sym_subscript, - STATE(1638), 2, + STATE(1626), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1966), 3, + ACTIONS(1898), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1392), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75398,60 +75495,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58009] = 21, - ACTIONS(303), 1, + [58581] = 20, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(1962), 1, + ACTIONS(1736), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(1738), 1, anon_sym_LPAREN, - ACTIONS(1970), 1, + ACTIONS(1740), 1, + anon_sym_STAR, + ACTIONS(1746), 1, anon_sym_LBRACK, - ACTIONS(1972), 1, + ACTIONS(1748), 1, anon_sym_await, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1594), 1, + STATE(1569), 1, sym_list_splat_pattern, - STATE(1609), 1, + STATE(1608), 1, sym_primary_expression, - STATE(2491), 1, + STATE(2053), 1, sym_pattern, - STATE(2784), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(1968), 2, + ACTIONS(1744), 2, anon_sym_match, anon_sym_type, - STATE(1595), 2, + STATE(1567), 2, sym_attribute, sym_subscript, - STATE(1638), 2, + STATE(2068), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1966), 3, + ACTIONS(1742), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1392), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75466,108 +75561,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58098] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2050), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + [58667] = 20, + ACTIONS(299), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(2048), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [58151] = 20, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(1107), 1, + ACTIONS(2004), 1, sym_identifier, - ACTIONS(1109), 1, + ACTIONS(2006), 1, anon_sym_LPAREN, - ACTIONS(1117), 1, + ACTIONS(2008), 1, + anon_sym_STAR, + ACTIONS(2014), 1, anon_sym_LBRACK, - ACTIONS(1119), 1, + ACTIONS(2018), 1, anon_sym_await, - ACTIONS(2058), 1, - anon_sym_STAR, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1461), 1, + STATE(1586), 1, sym_list_splat_pattern, - STATE(1612), 1, + STATE(1607), 1, sym_primary_expression, - STATE(1628), 1, + STATE(2565), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(1115), 2, + ACTIONS(2012), 2, anon_sym_match, anon_sym_type, - STATE(1464), 2, + STATE(1587), 2, sym_attribute, sym_subscript, - STATE(1638), 2, + STATE(2487), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1113), 3, + ACTIONS(2010), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1392), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75582,58 +75627,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58237] = 20, - ACTIONS(17), 1, - anon_sym_STAR, - ACTIONS(303), 1, + [58753] = 20, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(963), 1, + ACTIONS(1798), 1, sym_identifier, - ACTIONS(967), 1, + ACTIONS(1800), 1, anon_sym_LPAREN, - ACTIONS(975), 1, + ACTIONS(1804), 1, + anon_sym_STAR, + ACTIONS(1810), 1, anon_sym_LBRACK, - ACTIONS(977), 1, + ACTIONS(1812), 1, anon_sym_await, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1322), 1, + STATE(1581), 1, + sym_primary_expression, + STATE(1589), 1, sym_list_splat_pattern, - STATE(1588), 1, + STATE(2542), 1, sym_pattern, - STATE(1598), 1, - sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(973), 2, + ACTIONS(1808), 2, anon_sym_match, anon_sym_type, - STATE(1341), 2, + STATE(1595), 2, sym_attribute, sym_subscript, - STATE(1592), 2, + STATE(2546), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(971), 3, + ACTIONS(1806), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1392), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75648,58 +75693,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58323] = 20, - ACTIONS(303), 1, + [58839] = 19, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2028), 1, - sym_identifier, - ACTIONS(2030), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(2032), 1, - anon_sym_STAR, - ACTIONS(2038), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(2040), 1, + ACTIONS(1421), 1, + anon_sym_STAR, + ACTIONS(2056), 1, + sym_identifier, + ACTIONS(2064), 1, anon_sym_await, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1602), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1616), 1, + STATE(1581), 1, sym_primary_expression, - STATE(2570), 1, - sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(2036), 2, + ACTIONS(2058), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2062), 2, anon_sym_match, anon_sym_type, - STATE(1603), 2, + STATE(1579), 2, sym_attribute, sym_subscript, - STATE(2561), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2034), 3, + ACTIONS(2060), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1392), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75714,58 +75757,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58409] = 20, - ACTIONS(303), 1, + [58922] = 19, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(1962), 1, - sym_identifier, - ACTIONS(1964), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(1970), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1972), 1, + ACTIONS(1421), 1, + anon_sym_STAR, + ACTIONS(2066), 1, + sym_identifier, + ACTIONS(2072), 1, anon_sym_await, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1594), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1609), 1, + STATE(1588), 1, sym_primary_expression, - STATE(1628), 1, - sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(1968), 2, + ACTIONS(2058), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(2070), 2, anon_sym_match, anon_sym_type, - STATE(1595), 2, + STATE(1599), 2, sym_attribute, sym_subscript, - STATE(1638), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1966), 3, + ACTIONS(2068), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1392), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75780,60 +75821,120 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58495] = 20, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(1728), 1, - sym_identifier, - ACTIONS(1730), 1, + [59005] = 21, + ACTIONS(2076), 1, + anon_sym_DOT, + ACTIONS(2078), 1, anon_sym_LPAREN, - ACTIONS(1732), 1, + ACTIONS(2086), 1, + anon_sym_STAR_STAR, + ACTIONS(2088), 1, + anon_sym_EQ, + ACTIONS(2090), 1, + anon_sym_LBRACK, + ACTIONS(2096), 1, + anon_sym_PIPE, + ACTIONS(2098), 1, + anon_sym_not, + ACTIONS(2100), 1, + anon_sym_AMP, + ACTIONS(2102), 1, + anon_sym_CARET, + ACTIONS(2104), 1, + anon_sym_is, + STATE(1545), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2080), 2, anon_sym_STAR, - ACTIONS(1738), 1, + anon_sym_SLASH, + ACTIONS(2082), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2094), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2106), 2, + anon_sym_LT, + anon_sym_GT, + STATE(873), 2, + sym__not_in, + sym__is_not, + STATE(1066), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2092), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2084), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2074), 9, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [59091] = 17, + ACTIONS(691), 1, + anon_sym_LPAREN, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(1740), 1, + ACTIONS(703), 1, + anon_sym_LBRACE, + ACTIONS(707), 1, anon_sym_await, - STATE(1003), 1, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(1269), 1, + anon_sym_STAR, + ACTIONS(2108), 1, + anon_sym_not, + STATE(969), 1, sym_string, - STATE(1567), 1, - sym_list_splat_pattern, - STATE(1617), 1, + STATE(1009), 1, sym_primary_expression, - STATE(2090), 1, - sym_pattern, + STATE(1283), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, - sym_ellipsis, - sym_float, - ACTIONS(1736), 2, + ACTIONS(697), 2, anon_sym_match, anon_sym_type, - STATE(1568), 2, - sym_attribute, - sym_subscript, - STATE(2054), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(308), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1734), 3, + ACTIONS(705), 2, + sym_ellipsis, + sym_float, + ACTIONS(695), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 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(1392), 14, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -75846,60 +75947,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58581] = 20, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(1802), 1, - sym_identifier, - ACTIONS(1804), 1, + [59169] = 17, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(1808), 1, - anon_sym_STAR, - ACTIONS(1814), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(1816), 1, + ACTIONS(747), 1, + anon_sym_LBRACE, + ACTIONS(751), 1, anon_sym_await, - STATE(1003), 1, + ACTIONS(753), 1, + sym_string_start, + ACTIONS(1273), 1, + anon_sym_STAR, + ACTIONS(2108), 1, + anon_sym_not, + STATE(958), 1, sym_string, - STATE(1601), 1, - sym_list_splat_pattern, - STATE(1611), 1, + STATE(993), 1, sym_primary_expression, - STATE(2576), 1, - sym_pattern, + STATE(1259), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, - sym_ellipsis, - sym_float, - ACTIONS(1812), 2, + ACTIONS(741), 2, anon_sym_match, anon_sym_type, - STATE(1583), 2, - sym_attribute, - sym_subscript, - STATE(2537), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(308), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1810), 3, + ACTIONS(749), 2, + sym_ellipsis, + sym_float, + ACTIONS(739), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 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(1392), 14, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -75912,58 +76008,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58667] = 19, - ACTIONS(303), 1, + [59247] = 17, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(2060), 1, - sym_identifier, - ACTIONS(2068), 1, + ACTIONS(662), 1, anon_sym_await, - STATE(1003), 1, + ACTIONS(1421), 1, + anon_sym_STAR, + ACTIONS(2108), 1, + anon_sym_not, + STATE(984), 1, sym_string, - STATE(1300), 1, - sym_list_splat_pattern, - STATE(1609), 1, + STATE(1125), 1, sym_primary_expression, + STATE(1372), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(2062), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2066), 2, + ACTIONS(656), 2, anon_sym_match, anon_sym_type, - STATE(1599), 2, - sym_attribute, - sym_subscript, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2064), 3, + ACTIONS(654), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 4, + ACTIONS(312), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1392), 14, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -75976,58 +76069,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58750] = 19, - ACTIONS(303), 1, + [59325] = 17, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(320), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(656), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(2070), 1, - sym_identifier, - ACTIONS(2076), 1, + ACTIONS(641), 1, anon_sym_await, - STATE(1003), 1, + ACTIONS(1293), 1, + anon_sym_STAR, + ACTIONS(2108), 1, + anon_sym_not, + STATE(954), 1, sym_string, - STATE(1300), 1, - sym_list_splat_pattern, - STATE(1611), 1, + STATE(973), 1, sym_primary_expression, + STATE(1047), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(2062), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2074), 2, + ACTIONS(635), 2, anon_sym_match, anon_sym_type, - STATE(1577), 2, - sym_attribute, - sym_subscript, - ACTIONS(308), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2072), 3, + ACTIONS(633), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 4, + ACTIONS(77), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1392), 14, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -76040,51 +76130,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58833] = 17, - ACTIONS(723), 1, + [59403] = 17, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(729), 1, anon_sym_await, - ACTIONS(741), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1265), 1, + ACTIONS(1303), 1, anon_sym_STAR, - ACTIONS(2078), 1, + ACTIONS(2108), 1, anon_sym_not, - STATE(963), 1, + STATE(995), 1, sym_string, - STATE(1013), 1, + STATE(1075), 1, sym_primary_expression, - STATE(1213), 1, + STATE(1301), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(719), 2, anon_sym_match, anon_sym_type, - ACTIONS(737), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(727), 3, + ACTIONS(717), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(721), 5, + ACTIONS(711), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1190), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76101,51 +76191,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58911] = 17, - ACTIONS(789), 1, + [59481] = 17, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(797), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(801), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(805), 1, + ACTIONS(797), 1, anon_sym_await, - ACTIONS(807), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1249), 1, + ACTIONS(1243), 1, anon_sym_STAR, - ACTIONS(2078), 1, + ACTIONS(2108), 1, anon_sym_not, - STATE(970), 1, + STATE(985), 1, sym_string, - STATE(997), 1, + STATE(1089), 1, sym_primary_expression, - STATE(1254), 1, + STATE(1320), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(803), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(793), 3, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(787), 5, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1148), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76162,51 +76252,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58989] = 17, - ACTIONS(745), 1, + [59559] = 17, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(761), 1, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(2078), 1, + ACTIONS(2108), 1, anon_sym_not, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1279), 1, + STATE(1212), 1, sym_primary_expression, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(763), 2, anon_sym_match, anon_sym_type, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(749), 3, + ACTIONS(761), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(743), 5, + ACTIONS(755), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76223,51 +76313,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59067] = 17, - ACTIONS(674), 1, + [59637] = 17, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(690), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(692), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(977), 1, anon_sym_STAR, - ACTIONS(2078), 1, + ACTIONS(2108), 1, anon_sym_not, - STATE(961), 1, + STATE(975), 1, sym_string, - STATE(1027), 1, + STATE(1030), 1, sym_primary_expression, - STATE(1212), 1, + STATE(1197), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(672), 2, anon_sym_match, anon_sym_type, - ACTIONS(688), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(678), 3, + ACTIONS(670), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(672), 5, + ACTIONS(664), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1251), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76284,51 +76374,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59145] = 17, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(656), 1, + [59715] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(670), 1, + ACTIONS(793), 1, + anon_sym_LBRACE, + ACTIONS(797), 1, anon_sym_await, - ACTIONS(1433), 1, + ACTIONS(799), 1, + sym_string_start, + ACTIONS(1243), 1, anon_sym_STAR, - ACTIONS(2078), 1, - anon_sym_not, - STATE(1003), 1, + STATE(985), 1, sym_string, - STATE(1061), 1, + STATE(1089), 1, sym_primary_expression, - STATE(1300), 1, + STATE(1320), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, - sym_ellipsis, - sym_float, - ACTIONS(664), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(308), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(662), 3, + ACTIONS(795), 2, + sym_ellipsis, + sym_float, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 5, + ACTIONS(791), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1392), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76345,51 +76433,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59223] = 17, - ACTIONS(699), 1, + [59790] = 16, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(709), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(717), 1, + ACTIONS(751), 1, anon_sym_await, - ACTIONS(719), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1275), 1, + ACTIONS(1273), 1, anon_sym_STAR, - ACTIONS(2078), 1, - anon_sym_not, - STATE(977), 1, + STATE(958), 1, sym_string, - STATE(1047), 1, + STATE(1021), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1259), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(741), 2, anon_sym_match, anon_sym_type, - ACTIONS(715), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(703), 3, + ACTIONS(739), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(697), 5, + ACTIONS(733), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1349), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76406,51 +76492,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59301] = 17, - ACTIONS(767), 1, + [59865] = 16, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(775), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(785), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(1339), 1, + ACTIONS(977), 1, anon_sym_STAR, - ACTIONS(2078), 1, - anon_sym_not, - STATE(985), 1, + STATE(975), 1, sym_string, - STATE(1075), 1, + STATE(1030), 1, sym_primary_expression, - STATE(1376), 1, + STATE(1197), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(672), 2, anon_sym_match, anon_sym_type, - ACTIONS(781), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(771), 3, + ACTIONS(670), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(765), 5, + ACTIONS(664), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1308), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76467,116 +76551,113 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59379] = 21, - ACTIONS(2082), 1, + [59940] = 21, + ACTIONS(2088), 1, + anon_sym_as, + ACTIONS(2098), 1, + anon_sym_not, + ACTIONS(2110), 1, anon_sym_DOT, - ACTIONS(2084), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2092), 1, + ACTIONS(2120), 1, anon_sym_STAR_STAR, - ACTIONS(2094), 1, - anon_sym_EQ, - ACTIONS(2096), 1, + ACTIONS(2122), 1, anon_sym_LBRACK, - ACTIONS(2102), 1, + ACTIONS(2128), 1, anon_sym_PIPE, - ACTIONS(2104), 1, - anon_sym_not, - ACTIONS(2106), 1, + ACTIONS(2130), 1, anon_sym_AMP, - ACTIONS(2108), 1, + ACTIONS(2132), 1, anon_sym_CARET, - ACTIONS(2110), 1, + ACTIONS(2134), 1, anon_sym_is, - STATE(1544), 1, + STATE(1552), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2086), 2, + ACTIONS(2114), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2088), 2, + ACTIONS(2116), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2100), 2, + ACTIONS(2126), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2112), 2, + ACTIONS(2136), 2, anon_sym_LT, anon_sym_GT, - STATE(909), 2, + STATE(914), 2, sym__not_in, sym__is_not, - STATE(1076), 2, + STATE(1281), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2098), 3, + ACTIONS(2124), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2090), 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(2080), 9, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2074), 8, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [59465] = 17, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(637), 1, + [60025] = 16, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(645), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(649), 1, + ACTIONS(769), 1, + anon_sym_LBRACE, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(1319), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(2078), 1, - anon_sym_not, - STATE(953), 1, + STATE(1081), 1, sym_string, - STATE(968), 1, + STATE(1210), 1, sym_primary_expression, - STATE(1049), 1, + STATE(1444), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(643), 2, + ACTIONS(763), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(641), 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(1052), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76593,110 +76674,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59543] = 18, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(656), 1, - anon_sym_LPAREN, + [60100] = 16, ACTIONS(666), 1, - anon_sym_LBRACK, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(2114), 1, - sym_identifier, - ACTIONS(2120), 1, - anon_sym_await, - STATE(1003), 1, - sym_string, - STATE(1300), 1, - sym_list_splat_pattern, - STATE(1598), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(314), 2, - sym_ellipsis, - sym_float, - ACTIONS(2118), 2, - anon_sym_match, - anon_sym_type, - STATE(651), 2, - sym_attribute, - sym_subscript, - ACTIONS(308), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2116), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1392), 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, - [59622] = 16, - ACTIONS(674), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(690), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(692), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(977), 1, anon_sym_STAR, - STATE(961), 1, + STATE(975), 1, sym_string, - STATE(1026), 1, + STATE(1015), 1, sym_primary_expression, - STATE(1212), 1, + STATE(1197), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(672), 2, anon_sym_match, anon_sym_type, - ACTIONS(688), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(678), 3, + ACTIONS(670), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(672), 5, + ACTIONS(664), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1251), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76713,53 +76733,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59697] = 16, - ACTIONS(303), 1, + [60175] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(670), 1, - anon_sym_await, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(1003), 1, + ACTIONS(2138), 1, + sym_identifier, + ACTIONS(2144), 1, + anon_sym_await, + STATE(984), 1, sym_string, - STATE(1060), 1, - sym_primary_expression, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, + STATE(1581), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(664), 2, + ACTIONS(2142), 2, anon_sym_match, anon_sym_type, - ACTIONS(308), 3, + STATE(1349), 2, + sym_attribute, + sym_subscript, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(662), 3, + ACTIONS(2140), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 5, + ACTIONS(312), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1392), 16, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -76772,49 +76794,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59772] = 16, - ACTIONS(674), 1, + [60254] = 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(690), 1, + ACTIONS(751), 1, anon_sym_await, - ACTIONS(692), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1273), 1, anon_sym_STAR, - STATE(961), 1, + STATE(958), 1, sym_string, - STATE(1027), 1, + STATE(993), 1, sym_primary_expression, - STATE(1212), 1, + STATE(1259), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(741), 2, anon_sym_match, anon_sym_type, - ACTIONS(688), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(678), 3, + ACTIONS(739), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(672), 5, + ACTIONS(733), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1251), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76831,49 +76853,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59847] = 16, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(656), 1, - anon_sym_LPAREN, + [60329] = 16, ACTIONS(666), 1, + anon_sym_LPAREN, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(670), 1, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(1433), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(977), 1, anon_sym_STAR, - STATE(1003), 1, + STATE(975), 1, sym_string, - STATE(1061), 1, + STATE(1005), 1, sym_primary_expression, - STATE(1300), 1, + STATE(1197), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, - sym_ellipsis, - sym_float, - ACTIONS(664), 2, + ACTIONS(672), 2, anon_sym_match, anon_sym_type, - ACTIONS(308), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(662), 3, + ACTIONS(680), 2, + sym_ellipsis, + sym_float, + ACTIONS(670), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 5, + ACTIONS(676), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(664), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1392), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76890,55 +76912,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59922] = 18, - ACTIONS(303), 1, + [60404] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(320), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(656), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(2122), 1, - sym_identifier, - ACTIONS(2128), 1, + ACTIONS(641), 1, anon_sym_await, - STATE(1003), 1, + ACTIONS(1293), 1, + anon_sym_STAR, + STATE(954), 1, sym_string, - STATE(1300), 1, - sym_list_splat_pattern, - STATE(1614), 1, + STATE(959), 1, sym_primary_expression, + STATE(1047), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(2126), 2, + ACTIONS(635), 2, anon_sym_match, anon_sym_type, - STATE(1293), 2, - sym_attribute, - sym_subscript, - ACTIONS(308), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2124), 3, + ACTIONS(633), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 4, + ACTIONS(77), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1392), 14, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -76951,49 +76971,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60001] = 16, - ACTIONS(723), 1, + [60479] = 16, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(741), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(1265), 1, + ACTIONS(977), 1, anon_sym_STAR, - STATE(963), 1, + STATE(975), 1, sym_string, - STATE(1006), 1, + STATE(979), 1, sym_primary_expression, - STATE(1213), 1, + STATE(1197), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(672), 2, anon_sym_match, anon_sym_type, - ACTIONS(737), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(727), 3, + ACTIONS(670), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(721), 5, + ACTIONS(664), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1190), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77010,108 +77030,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60076] = 16, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(656), 1, - anon_sym_LPAREN, + [60554] = 16, ACTIONS(666), 1, + anon_sym_LPAREN, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(670), 1, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(1433), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(977), 1, anon_sym_STAR, - STATE(1003), 1, + STATE(975), 1, sym_string, - STATE(1062), 1, + STATE(1003), 1, sym_primary_expression, - STATE(1300), 1, + STATE(1197), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, - sym_ellipsis, - sym_float, - ACTIONS(664), 2, + ACTIONS(672), 2, anon_sym_match, anon_sym_type, - ACTIONS(308), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(662), 3, + ACTIONS(680), 2, + sym_ellipsis, + sym_float, + ACTIONS(670), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1392), 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, - [60151] = 16, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(656), 1, - anon_sym_LPAREN, - ACTIONS(666), 1, - anon_sym_LBRACK, - ACTIONS(670), 1, - anon_sym_await, - ACTIONS(1433), 1, - anon_sym_STAR, - STATE(1003), 1, - sym_string, - STATE(1065), 1, - sym_primary_expression, - STATE(1300), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(314), 2, - sym_ellipsis, - sym_float, - ACTIONS(664), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(308), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(662), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 5, + ACTIONS(664), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1392), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77128,49 +77089,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60226] = 16, - ACTIONS(674), 1, + [60629] = 16, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(690), 1, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(692), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(961), 1, + STATE(1081), 1, sym_string, - STATE(1028), 1, + STATE(1214), 1, sym_primary_expression, - STATE(1212), 1, + STATE(1444), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(763), 2, anon_sym_match, anon_sym_type, - ACTIONS(688), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(678), 3, + ACTIONS(761), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(672), 5, + ACTIONS(755), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1251), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77187,49 +77148,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60301] = 16, - ACTIONS(674), 1, + [60704] = 16, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(686), 1, - anon_sym_LBRACE, - ACTIONS(690), 1, + ACTIONS(641), 1, anon_sym_await, - ACTIONS(692), 1, - sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(961), 1, + STATE(954), 1, sym_string, - STATE(1029), 1, + STATE(956), 1, sym_primary_expression, - STATE(1212), 1, + STATE(1047), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(688), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(678), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(684), 3, + ACTIONS(635), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(672), 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(1251), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77246,53 +77207,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60376] = 18, - ACTIONS(303), 1, + [60779] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(2130), 1, + ACTIONS(2146), 1, sym_identifier, - ACTIONS(2136), 1, + ACTIONS(2152), 1, anon_sym_await, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1609), 1, + STATE(1588), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(2134), 2, + ACTIONS(2150), 2, anon_sym_match, anon_sym_type, - STATE(1296), 2, + STATE(1378), 2, sym_attribute, sym_subscript, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2132), 3, + ACTIONS(2148), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1392), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -77307,49 +77268,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60455] = 16, - ACTIONS(674), 1, + [60858] = 16, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(686), 1, - anon_sym_LBRACE, - ACTIONS(690), 1, + ACTIONS(641), 1, anon_sym_await, - ACTIONS(692), 1, - sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(961), 1, + STATE(954), 1, sym_string, - STATE(1030), 1, + STATE(965), 1, sym_primary_expression, - STATE(1212), 1, + STATE(1047), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(688), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(678), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(684), 3, + ACTIONS(635), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(672), 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(1251), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77366,49 +77327,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60530] = 16, - ACTIONS(699), 1, + [60933] = 16, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(709), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(717), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(719), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(1275), 1, + ACTIONS(977), 1, anon_sym_STAR, - STATE(977), 1, + STATE(975), 1, sym_string, - STATE(1116), 1, + STATE(1010), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1197), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(672), 2, anon_sym_match, anon_sym_type, - ACTIONS(715), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(703), 3, + ACTIONS(670), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(697), 5, + ACTIONS(664), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1349), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77425,49 +77386,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60605] = 16, - ACTIONS(674), 1, + [61008] = 16, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(686), 1, - anon_sym_LBRACE, - ACTIONS(690), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(692), 1, - sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(961), 1, + STATE(984), 1, sym_string, - STATE(1031), 1, + STATE(1129), 1, sym_primary_expression, - STATE(1212), 1, + STATE(1372), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(688), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(678), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(684), 3, + ACTIONS(656), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(672), 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(1251), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77484,49 +77445,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60680] = 16, - ACTIONS(674), 1, + [61083] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(690), 1, + ACTIONS(797), 1, anon_sym_await, - ACTIONS(692), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(961), 1, + STATE(985), 1, sym_string, - STATE(1032), 1, + STATE(1051), 1, sym_primary_expression, - STATE(1212), 1, + STATE(1320), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(688), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(678), 3, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(672), 5, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1251), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77543,49 +77504,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60755] = 16, - ACTIONS(699), 1, + [61158] = 16, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(709), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(713), 1, - anon_sym_LBRACE, - ACTIONS(717), 1, + ACTIONS(641), 1, anon_sym_await, - ACTIONS(719), 1, - sym_string_start, - ACTIONS(1275), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(977), 1, + STATE(954), 1, sym_string, - STATE(1125), 1, + STATE(973), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1047), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(715), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(703), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(711), 3, + ACTIONS(635), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(697), 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(1349), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77602,53 +77563,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60830] = 16, - ACTIONS(723), 1, - anon_sym_LPAREN, - ACTIONS(731), 1, - anon_sym_LBRACK, - ACTIONS(735), 1, + [61233] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(739), 1, - anon_sym_await, - ACTIONS(741), 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(963), 1, + ACTIONS(2154), 1, + sym_identifier, + ACTIONS(2160), 1, + anon_sym_await, + STATE(984), 1, sym_string, - STATE(1018), 1, - sym_primary_expression, - STATE(1213), 1, + STATE(1372), 1, sym_list_splat_pattern, + STATE(1606), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(737), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(727), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(733), 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(721), 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(1190), 16, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -77661,53 +77624,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60905] = 18, - ACTIONS(303), 1, + [61312] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(2138), 1, + ACTIONS(2162), 1, sym_identifier, - ACTIONS(2144), 1, + ACTIONS(2168), 1, anon_sym_await, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1610), 1, + STATE(1588), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(2142), 2, + ACTIONS(2166), 2, anon_sym_match, anon_sym_type, - STATE(1044), 2, + STATE(1610), 2, sym_attribute, sym_subscript, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2140), 3, + ACTIONS(2164), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1392), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -77722,49 +77685,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60984] = 16, - ACTIONS(699), 1, + [61391] = 16, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(709), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(717), 1, + ACTIONS(729), 1, anon_sym_await, - ACTIONS(719), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1275), 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(1407), 1, + STATE(1301), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(719), 2, anon_sym_match, anon_sym_type, - ACTIONS(715), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(703), 3, + ACTIONS(717), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(697), 5, + ACTIONS(711), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1349), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77781,53 +77744,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61059] = 18, - ACTIONS(303), 1, + [61466] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(2128), 1, - anon_sym_await, - ACTIONS(2146), 1, + ACTIONS(2170), 1, sym_identifier, - STATE(1003), 1, + ACTIONS(2176), 1, + anon_sym_await, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1611), 1, + STATE(1590), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(2150), 2, + ACTIONS(2174), 2, anon_sym_match, anon_sym_type, - STATE(1381), 2, + STATE(1039), 2, sym_attribute, sym_subscript, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2148), 3, + ACTIONS(2172), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1392), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -77842,49 +77805,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61138] = 16, - ACTIONS(674), 1, + [61545] = 16, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(686), 1, - anon_sym_LBRACE, - ACTIONS(690), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(692), 1, - sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(961), 1, + STATE(984), 1, sym_string, - STATE(1019), 1, + STATE(1130), 1, sym_primary_expression, - STATE(1212), 1, + STATE(1372), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(688), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(678), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(684), 3, + ACTIONS(656), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(672), 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(1251), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77901,49 +77864,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61213] = 16, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(656), 1, - anon_sym_LPAREN, + [61620] = 16, ACTIONS(666), 1, + anon_sym_LPAREN, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(670), 1, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(1433), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(977), 1, anon_sym_STAR, - STATE(1003), 1, + STATE(975), 1, sym_string, - STATE(1096), 1, + STATE(1011), 1, sym_primary_expression, - STATE(1300), 1, + STATE(1197), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, - sym_ellipsis, - sym_float, - ACTIONS(664), 2, + ACTIONS(672), 2, anon_sym_match, anon_sym_type, - ACTIONS(308), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(662), 3, + ACTIONS(680), 2, + sym_ellipsis, + sym_float, + ACTIONS(670), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 5, + ACTIONS(676), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(664), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1392), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77960,49 +77923,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61288] = 16, - ACTIONS(303), 1, + [61695] = 16, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(670), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1111), 1, + STATE(1115), 1, sym_primary_expression, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(664), 2, + ACTIONS(656), 2, anon_sym_match, anon_sym_type, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(662), 3, + ACTIONS(654), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 5, + ACTIONS(312), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1392), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78019,55 +77982,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61363] = 18, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(656), 1, + [61770] = 16, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(2152), 1, - sym_identifier, - ACTIONS(2158), 1, + ACTIONS(747), 1, + anon_sym_LBRACE, + ACTIONS(751), 1, anon_sym_await, - STATE(1003), 1, + ACTIONS(753), 1, + sym_string_start, + ACTIONS(1273), 1, + anon_sym_STAR, + STATE(958), 1, sym_string, - STATE(1300), 1, - sym_list_splat_pattern, - STATE(1611), 1, + STATE(1026), 1, sym_primary_expression, + STATE(1259), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, - sym_ellipsis, - sym_float, - ACTIONS(2156), 2, + ACTIONS(741), 2, anon_sym_match, anon_sym_type, - STATE(1581), 2, - sym_attribute, - sym_subscript, - ACTIONS(308), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2154), 3, + ACTIONS(749), 2, + sym_ellipsis, + sym_float, + ACTIONS(739), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 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(1392), 14, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -78080,113 +78041,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61442] = 21, - ACTIONS(2094), 1, - anon_sym_as, - ACTIONS(2104), 1, - anon_sym_not, - ACTIONS(2160), 1, - anon_sym_DOT, - ACTIONS(2162), 1, - anon_sym_LPAREN, - ACTIONS(2170), 1, - anon_sym_STAR_STAR, - ACTIONS(2172), 1, - anon_sym_LBRACK, - ACTIONS(2178), 1, - anon_sym_PIPE, - ACTIONS(2180), 1, - anon_sym_AMP, - ACTIONS(2182), 1, - anon_sym_CARET, - ACTIONS(2184), 1, - anon_sym_is, - STATE(1561), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2164), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2166), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2176), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2186), 2, - anon_sym_LT, - anon_sym_GT, - STATE(908), 2, - sym__not_in, - sym__is_not, - STATE(1220), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2174), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2168), 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(2080), 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, - [61527] = 16, - ACTIONS(303), 1, + [61845] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(320), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(656), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(670), 1, + ACTIONS(641), 1, anon_sym_await, - ACTIONS(1433), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(1003), 1, + STATE(954), 1, sym_string, - STATE(1113), 1, + STATE(957), 1, sym_primary_expression, - STATE(1300), 1, + STATE(1047), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(664), 2, + ACTIONS(635), 2, anon_sym_match, anon_sym_type, - ACTIONS(308), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(662), 3, + ACTIONS(633), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1392), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78203,49 +78100,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61602] = 16, - ACTIONS(723), 1, + [61920] = 16, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(741), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1265), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(963), 1, + STATE(1081), 1, sym_string, - STATE(1017), 1, + STATE(1132), 1, sym_primary_expression, - STATE(1213), 1, + STATE(1444), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(763), 2, anon_sym_match, anon_sym_type, - ACTIONS(737), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(727), 3, + ACTIONS(761), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(721), 5, + ACTIONS(755), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1190), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78262,55 +78159,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61677] = 18, - ACTIONS(303), 1, + [61995] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(320), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(656), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(2120), 1, + ACTIONS(641), 1, anon_sym_await, - ACTIONS(2188), 1, - sym_identifier, - STATE(1003), 1, + ACTIONS(1293), 1, + anon_sym_STAR, + STATE(954), 1, sym_string, - STATE(1300), 1, - sym_list_splat_pattern, - STATE(1598), 1, + STATE(962), 1, sym_primary_expression, + STATE(1047), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(2118), 2, + ACTIONS(635), 2, anon_sym_match, anon_sym_type, - STATE(651), 2, - sym_attribute, - sym_subscript, - ACTIONS(308), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2116), 3, + ACTIONS(633), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 4, + ACTIONS(77), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1392), 14, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -78323,53 +78218,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61756] = 16, - ACTIONS(67), 1, + [62070] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(637), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(645), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(649), 1, - anon_sym_await, - ACTIONS(1319), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(953), 1, + ACTIONS(2160), 1, + anon_sym_await, + ACTIONS(2178), 1, + sym_identifier, + STATE(984), 1, sym_string, - STATE(960), 1, - sym_primary_expression, - STATE(1049), 1, + STATE(1372), 1, sym_list_splat_pattern, + STATE(1606), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(643), 2, + ACTIONS(2158), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + STATE(1449), 2, + sym_attribute, + sym_subscript, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(641), 3, + ACTIONS(2156), 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(1052), 16, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -78382,49 +78279,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61831] = 16, - ACTIONS(723), 1, + [62149] = 16, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(751), 1, anon_sym_await, - ACTIONS(741), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1265), 1, + ACTIONS(1273), 1, anon_sym_STAR, - STATE(963), 1, + STATE(958), 1, sym_string, - STATE(1011), 1, + STATE(990), 1, sym_primary_expression, - STATE(1213), 1, + STATE(1259), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(741), 2, anon_sym_match, anon_sym_type, - ACTIONS(737), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(727), 3, + ACTIONS(739), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(721), 5, + ACTIONS(733), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1190), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78441,53 +78338,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61906] = 18, - ACTIONS(303), 1, + [62224] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(2190), 1, - sym_identifier, - ACTIONS(2196), 1, + ACTIONS(2152), 1, anon_sym_await, - STATE(1003), 1, + ACTIONS(2180), 1, + sym_identifier, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1615), 1, + STATE(1588), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(2194), 2, + ACTIONS(2150), 2, anon_sym_match, anon_sym_type, - STATE(1435), 2, + STATE(1378), 2, sym_attribute, sym_subscript, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2192), 3, + ACTIONS(2148), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1392), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -78502,49 +78399,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61985] = 16, - ACTIONS(767), 1, + [62303] = 16, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(775), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(729), 1, anon_sym_await, - ACTIONS(785), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1339), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(985), 1, + STATE(995), 1, sym_string, - STATE(1097), 1, + STATE(1073), 1, sym_primary_expression, - STATE(1376), 1, + STATE(1301), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(719), 2, anon_sym_match, anon_sym_type, - ACTIONS(781), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(771), 3, + ACTIONS(717), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(765), 5, + ACTIONS(711), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1308), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78561,117 +78458,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62060] = 21, - ACTIONS(2094), 1, - anon_sym_EQ, - ACTIONS(2104), 1, - anon_sym_not, - ACTIONS(2198), 1, - anon_sym_DOT, - ACTIONS(2200), 1, - anon_sym_LPAREN, - ACTIONS(2208), 1, - anon_sym_STAR_STAR, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2216), 1, - anon_sym_PIPE, - ACTIONS(2218), 1, - anon_sym_AMP, - ACTIONS(2220), 1, - anon_sym_CARET, - ACTIONS(2222), 1, - anon_sym_is, - STATE(1558), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2202), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2204), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2214), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2224), 2, - anon_sym_LT, - anon_sym_GT, - STATE(858), 2, - sym__not_in, - sym__is_not, - STATE(1269), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2212), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2206), 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(2080), 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, - [62145] = 16, - ACTIONS(67), 1, + [62378] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(637), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(645), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(649), 1, - anon_sym_await, - ACTIONS(1319), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(953), 1, + ACTIONS(2160), 1, + anon_sym_await, + ACTIONS(2182), 1, + sym_identifier, + STATE(984), 1, sym_string, - STATE(957), 1, - sym_primary_expression, - STATE(1049), 1, + STATE(1372), 1, sym_list_splat_pattern, + STATE(1607), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(643), 2, + ACTIONS(2186), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + STATE(1229), 2, + sym_attribute, + sym_subscript, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(641), 3, + ACTIONS(2184), 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(1052), 16, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -78684,49 +78519,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62220] = 16, - ACTIONS(723), 1, + [62457] = 16, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(729), 1, anon_sym_await, - ACTIONS(741), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1265), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(963), 1, + STATE(995), 1, sym_string, - STATE(1012), 1, + STATE(1074), 1, sym_primary_expression, - STATE(1213), 1, + STATE(1301), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(719), 2, anon_sym_match, anon_sym_type, - ACTIONS(737), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(727), 3, + ACTIONS(717), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(721), 5, + ACTIONS(711), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1190), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78743,49 +78578,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62295] = 16, - ACTIONS(767), 1, + [62532] = 16, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(775), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(785), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1339), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(985), 1, + STATE(1081), 1, sym_string, - STATE(1066), 1, + STATE(1201), 1, sym_primary_expression, - STATE(1376), 1, + STATE(1444), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(763), 2, anon_sym_match, anon_sym_type, - ACTIONS(781), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(771), 3, + ACTIONS(761), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(765), 5, + ACTIONS(755), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1308), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78802,49 +78637,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62370] = 16, - ACTIONS(767), 1, + [62607] = 16, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(775), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(729), 1, anon_sym_await, - ACTIONS(785), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1339), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(985), 1, + STATE(995), 1, sym_string, - STATE(1072), 1, + STATE(1075), 1, sym_primary_expression, - STATE(1376), 1, + STATE(1301), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(719), 2, anon_sym_match, anon_sym_type, - ACTIONS(781), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(771), 3, + ACTIONS(717), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(765), 5, + ACTIONS(711), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1308), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78861,49 +78696,113 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62445] = 16, - ACTIONS(767), 1, + [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(775), 1, + ACTIONS(2198), 1, + anon_sym_STAR_STAR, + ACTIONS(2200), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + 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(743), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(751), 1, anon_sym_await, - ACTIONS(785), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1339), 1, + ACTIONS(1273), 1, anon_sym_STAR, - STATE(985), 1, + STATE(958), 1, sym_string, - STATE(1075), 1, + STATE(977), 1, sym_primary_expression, - STATE(1376), 1, + STATE(1259), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(741), 2, anon_sym_match, anon_sym_type, - ACTIONS(781), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(771), 3, + ACTIONS(739), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(765), 5, + ACTIONS(733), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1308), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78920,53 +78819,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62520] = 18, - ACTIONS(303), 1, + [62842] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(2144), 1, + ACTIONS(2176), 1, anon_sym_await, - ACTIONS(2226), 1, + ACTIONS(2216), 1, sym_identifier, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1610), 1, + STATE(1590), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(2142), 2, + ACTIONS(2174), 2, anon_sym_match, anon_sym_type, - STATE(1044), 2, + STATE(1039), 2, sym_attribute, sym_subscript, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2140), 3, + ACTIONS(2172), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1392), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -78981,49 +78880,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62599] = 16, - ACTIONS(767), 1, + [62921] = 16, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(775), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(779), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(729), 1, anon_sym_await, - ACTIONS(785), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1339), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(985), 1, + STATE(995), 1, sym_string, - STATE(1077), 1, + STATE(1076), 1, sym_primary_expression, - STATE(1376), 1, + STATE(1301), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(719), 2, anon_sym_match, anon_sym_type, - ACTIONS(781), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(771), 3, + ACTIONS(717), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(765), 5, + ACTIONS(711), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1308), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79040,49 +78939,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62674] = 16, - ACTIONS(303), 1, + [62996] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(320), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(656), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(670), 1, + ACTIONS(641), 1, anon_sym_await, - ACTIONS(1433), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(1003), 1, + STATE(954), 1, sym_string, - STATE(1094), 1, + STATE(966), 1, sym_primary_expression, - STATE(1300), 1, + STATE(1047), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(664), 2, + ACTIONS(635), 2, anon_sym_match, anon_sym_type, - ACTIONS(308), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(662), 3, + ACTIONS(633), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1392), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79099,55 +78998,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62749] = 18, - ACTIONS(303), 1, + [63071] = 16, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(2196), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(2228), 1, - sym_identifier, - STATE(1003), 1, + ACTIONS(1421), 1, + anon_sym_STAR, + STATE(984), 1, sym_string, - STATE(1300), 1, - sym_list_splat_pattern, - STATE(1616), 1, + STATE(1127), 1, sym_primary_expression, + STATE(1372), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(2232), 2, + ACTIONS(656), 2, anon_sym_match, anon_sym_type, - STATE(1140), 2, - sym_attribute, - sym_subscript, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2230), 3, + ACTIONS(654), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 4, + ACTIONS(312), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1392), 14, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -79160,49 +79057,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62828] = 16, - ACTIONS(745), 1, + [63146] = 16, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(757), 1, - anon_sym_LBRACE, - ACTIONS(761), 1, + ACTIONS(641), 1, anon_sym_await, - ACTIONS(763), 1, - sym_string_start, - ACTIONS(1345), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(1098), 1, + STATE(954), 1, sym_string, - STATE(1221), 1, + STATE(967), 1, sym_primary_expression, - STATE(1423), 1, + STATE(1047), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(759), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(749), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(755), 3, + ACTIONS(635), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(743), 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(1425), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79219,49 +79116,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62903] = 16, - ACTIONS(767), 1, + [63221] = 16, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(775), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(779), 1, - anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(641), 1, anon_sym_await, - ACTIONS(785), 1, - sym_string_start, - ACTIONS(1339), 1, + ACTIONS(1293), 1, anon_sym_STAR, - STATE(985), 1, + STATE(954), 1, sym_string, - STATE(1079), 1, + STATE(972), 1, sym_primary_expression, - STATE(1376), 1, + STATE(1047), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(781), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(771), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(777), 3, + ACTIONS(635), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(765), 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(1308), 16, + STATE(1099), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79278,49 +79175,113 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62978] = 16, - ACTIONS(767), 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(775), 1, + ACTIONS(2228), 1, + anon_sym_STAR_STAR, + ACTIONS(2230), 1, anon_sym_LBRACK, - ACTIONS(779), 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(783), 1, + ACTIONS(729), 1, anon_sym_await, - ACTIONS(785), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1339), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(985), 1, + STATE(995), 1, sym_string, - STATE(1081), 1, + STATE(1077), 1, sym_primary_expression, - STATE(1376), 1, + STATE(1301), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(719), 2, anon_sym_match, anon_sym_type, - ACTIONS(781), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(771), 3, + ACTIONS(717), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(765), 5, + ACTIONS(711), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1308), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79337,53 +79298,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63053] = 18, - ACTIONS(303), 1, + [63456] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(2196), 1, - anon_sym_await, - ACTIONS(2234), 1, + ACTIONS(2246), 1, sym_identifier, - STATE(1003), 1, + ACTIONS(2252), 1, + anon_sym_await, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1615), 1, + STATE(1598), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(2194), 2, + ACTIONS(2250), 2, anon_sym_match, anon_sym_type, - STATE(1435), 2, + STATE(651), 2, sym_attribute, sym_subscript, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2192), 3, + ACTIONS(2248), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1392), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -79398,53 +79359,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63132] = 16, - ACTIONS(767), 1, - anon_sym_LPAREN, - ACTIONS(775), 1, - anon_sym_LBRACK, - ACTIONS(779), 1, + [63535] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(783), 1, - anon_sym_await, - ACTIONS(785), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(1339), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(985), 1, + ACTIONS(2254), 1, + sym_identifier, + ACTIONS(2260), 1, + anon_sym_await, + STATE(984), 1, sym_string, - STATE(1083), 1, - sym_primary_expression, - STATE(1376), 1, + STATE(1372), 1, sym_list_splat_pattern, + STATE(1608), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(781), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(771), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(777), 3, + ACTIONS(2258), 2, + anon_sym_match, + anon_sym_type, + STATE(1230), 2, + sym_attribute, + sym_subscript, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(765), 5, + ACTIONS(2256), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(312), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1308), 16, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -79457,49 +79420,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63207] = 16, - ACTIONS(767), 1, + [63614] = 16, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(775), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(779), 1, - anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(785), 1, - sym_string_start, - ACTIONS(1339), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(985), 1, + STATE(984), 1, sym_string, - STATE(1132), 1, + STATE(1123), 1, sym_primary_expression, - STATE(1376), 1, + STATE(1372), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(781), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(771), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(777), 3, + ACTIONS(656), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(765), 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(1308), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79516,49 +79479,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63282] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(637), 1, + [63689] = 16, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(645), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(649), 1, + ACTIONS(769), 1, + anon_sym_LBRACE, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(1319), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(953), 1, + STATE(1081), 1, sym_string, - STATE(958), 1, + STATE(1284), 1, sym_primary_expression, - STATE(1049), 1, + STATE(1444), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(643), 2, + ACTIONS(763), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(641), 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(1052), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79575,49 +79538,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63357] = 16, - ACTIONS(745), 1, + [63764] = 16, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(761), 1, + ACTIONS(729), 1, anon_sym_await, - ACTIONS(763), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1345), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(1098), 1, + STATE(995), 1, sym_string, - STATE(1217), 1, + STATE(1078), 1, sym_primary_expression, - STATE(1423), 1, + STATE(1301), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(719), 2, anon_sym_match, anon_sym_type, - ACTIONS(759), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(749), 3, + ACTIONS(717), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(743), 5, + ACTIONS(711), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1425), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79634,53 +79597,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63432] = 18, - ACTIONS(303), 1, + [63839] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(2236), 1, + ACTIONS(2262), 1, sym_identifier, - ACTIONS(2242), 1, + ACTIONS(2268), 1, anon_sym_await, - STATE(1003), 1, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1617), 1, + STATE(1618), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(2240), 2, + ACTIONS(2266), 2, anon_sym_match, anon_sym_type, - STATE(1141), 2, + STATE(1471), 2, sym_attribute, sym_subscript, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2238), 3, + ACTIONS(2264), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1392), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -79695,53 +79658,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63511] = 18, - ACTIONS(303), 1, + [63918] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(2136), 1, - anon_sym_await, - ACTIONS(2244), 1, + ACTIONS(2270), 1, sym_identifier, - STATE(1003), 1, + ACTIONS(2276), 1, + anon_sym_await, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1609), 1, + STATE(1581), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(2134), 2, + ACTIONS(2274), 2, anon_sym_match, anon_sym_type, - STATE(1296), 2, + STATE(1580), 2, sym_attribute, sym_subscript, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2132), 3, + ACTIONS(2272), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1392), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -79756,49 +79719,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63590] = 16, - ACTIONS(723), 1, + [63997] = 16, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(729), 1, anon_sym_await, - ACTIONS(741), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1265), 1, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(963), 1, + STATE(995), 1, sym_string, - STATE(1013), 1, + STATE(1079), 1, sym_primary_expression, - STATE(1213), 1, + STATE(1301), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(719), 2, anon_sym_match, anon_sym_type, - ACTIONS(737), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(727), 3, + ACTIONS(717), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(721), 5, + ACTIONS(711), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1190), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79815,49 +79778,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63665] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(637), 1, + [64072] = 16, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(645), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(649), 1, + ACTIONS(725), 1, + anon_sym_LBRACE, + ACTIONS(729), 1, anon_sym_await, - ACTIONS(1319), 1, + ACTIONS(731), 1, + sym_string_start, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(953), 1, + STATE(995), 1, sym_string, - STATE(968), 1, + STATE(1080), 1, sym_primary_expression, - STATE(1049), 1, + STATE(1301), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(643), 2, + ACTIONS(719), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(641), 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(1052), 16, + STATE(1381), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79874,55 +79837,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63740] = 18, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(656), 1, + [64147] = 16, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(2246), 1, - sym_identifier, - ACTIONS(2252), 1, + ACTIONS(703), 1, + anon_sym_LBRACE, + ACTIONS(707), 1, anon_sym_await, - STATE(1003), 1, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(1269), 1, + anon_sym_STAR, + STATE(969), 1, sym_string, - STATE(1300), 1, - sym_list_splat_pattern, - STATE(1612), 1, + STATE(999), 1, sym_primary_expression, + STATE(1283), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, - sym_ellipsis, - sym_float, - ACTIONS(2250), 2, + ACTIONS(697), 2, anon_sym_match, anon_sym_type, - STATE(1469), 2, - sym_attribute, - sym_subscript, - ACTIONS(308), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2248), 3, + ACTIONS(705), 2, + sym_ellipsis, + sym_float, + ACTIONS(695), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 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(1392), 14, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -79935,49 +79896,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63819] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(637), 1, + [64222] = 16, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(645), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(649), 1, + ACTIONS(703), 1, + anon_sym_LBRACE, + ACTIONS(707), 1, anon_sym_await, - ACTIONS(1319), 1, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(953), 1, + STATE(969), 1, sym_string, - STATE(976), 1, + STATE(1001), 1, sym_primary_expression, - STATE(1049), 1, + STATE(1283), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(643), 2, + ACTIONS(697), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(641), 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(1052), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79994,49 +79955,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63894] = 16, - ACTIONS(699), 1, + [64297] = 16, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(709), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(717), 1, + ACTIONS(707), 1, anon_sym_await, - ACTIONS(719), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(1275), 1, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(977), 1, + STATE(969), 1, sym_string, - STATE(1039), 1, + STATE(1009), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1283), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(697), 2, anon_sym_match, anon_sym_type, - ACTIONS(715), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(703), 3, + ACTIONS(695), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(697), 5, + ACTIONS(689), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1349), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80053,49 +80014,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63969] = 16, - ACTIONS(723), 1, + [64372] = 16, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(707), 1, anon_sym_await, - ACTIONS(741), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(1265), 1, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(963), 1, + STATE(969), 1, sym_string, - STATE(1014), 1, + STATE(1016), 1, sym_primary_expression, - STATE(1213), 1, + STATE(1283), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(697), 2, anon_sym_match, anon_sym_type, - ACTIONS(737), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(727), 3, + ACTIONS(695), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(721), 5, + ACTIONS(689), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1190), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80112,49 +80073,110 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64044] = 16, - ACTIONS(699), 1, + [64447] = 18, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(709), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(1421), 1, + anon_sym_STAR, + ACTIONS(2260), 1, + anon_sym_await, + ACTIONS(2278), 1, + sym_identifier, + STATE(984), 1, + sym_string, + STATE(1372), 1, + sym_list_splat_pattern, + STATE(1600), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(310), 2, + sym_ellipsis, + sym_float, + 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(2280), 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, + [64526] = 16, + ACTIONS(691), 1, + anon_sym_LPAREN, + ACTIONS(699), 1, + anon_sym_LBRACK, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(717), 1, + ACTIONS(707), 1, anon_sym_await, - ACTIONS(719), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(1275), 1, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(977), 1, + STATE(969), 1, sym_string, - STATE(1047), 1, + STATE(997), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1283), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(697), 2, anon_sym_match, anon_sym_type, - ACTIONS(715), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(703), 3, + ACTIONS(695), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(697), 5, + ACTIONS(689), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1349), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80171,49 +80193,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64119] = 16, - ACTIONS(67), 1, + [64601] = 16, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(637), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(645), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(649), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(1319), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(953), 1, + STATE(984), 1, sym_string, - STATE(959), 1, + STATE(1124), 1, sym_primary_expression, - STATE(1049), 1, + STATE(1372), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(643), 2, + ACTIONS(656), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(641), 3, + ACTIONS(654), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(312), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1052), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80230,49 +80252,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64194] = 16, - ACTIONS(723), 1, + [64676] = 16, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(707), 1, anon_sym_await, - ACTIONS(741), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(1265), 1, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(963), 1, + STATE(969), 1, sym_string, - STATE(1015), 1, + STATE(1023), 1, sym_primary_expression, - STATE(1213), 1, + STATE(1283), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(697), 2, anon_sym_match, anon_sym_type, - ACTIONS(737), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(727), 3, + ACTIONS(695), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(721), 5, + ACTIONS(689), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1190), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80289,49 +80311,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64269] = 16, - ACTIONS(723), 1, + [64751] = 16, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(739), 1, + ACTIONS(751), 1, anon_sym_await, - ACTIONS(741), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1265), 1, + ACTIONS(1273), 1, anon_sym_STAR, - STATE(963), 1, + STATE(958), 1, sym_string, - STATE(1016), 1, + STATE(1028), 1, sym_primary_expression, - STATE(1213), 1, + STATE(1259), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(741), 2, anon_sym_match, anon_sym_type, - ACTIONS(737), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(727), 3, + ACTIONS(739), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(721), 5, + ACTIONS(733), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1190), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80348,49 +80370,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64344] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(637), 1, + [64826] = 16, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(645), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(649), 1, + ACTIONS(703), 1, + anon_sym_LBRACE, + ACTIONS(707), 1, anon_sym_await, - ACTIONS(1319), 1, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(953), 1, + STATE(969), 1, sym_string, - STATE(966), 1, + STATE(1024), 1, sym_primary_expression, - STATE(1049), 1, + STATE(1283), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(643), 2, + ACTIONS(697), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(641), 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(1052), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80407,113 +80429,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64419] = 21, - ACTIONS(2094), 1, - anon_sym_as, - ACTIONS(2104), 1, - anon_sym_not, - ACTIONS(2254), 1, - anon_sym_DOT, - ACTIONS(2256), 1, + [64901] = 16, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(2264), 1, - anon_sym_STAR_STAR, - ACTIONS(2266), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(2272), 1, - anon_sym_PIPE, - ACTIONS(2274), 1, - anon_sym_AMP, - ACTIONS(2276), 1, - anon_sym_CARET, - ACTIONS(2278), 1, - anon_sym_is, - STATE(1553), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2258), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2260), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2270), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2280), 2, - anon_sym_LT, - anon_sym_GT, - STATE(933), 2, - sym__not_in, - sym__is_not, - STATE(1166), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2268), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2262), 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(2080), 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, - [64504] = 16, - ACTIONS(67), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(637), 1, - anon_sym_LPAREN, - ACTIONS(645), 1, - anon_sym_LBRACK, - ACTIONS(649), 1, + ACTIONS(707), 1, anon_sym_await, - ACTIONS(1319), 1, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(953), 1, + STATE(969), 1, sym_string, - STATE(975), 1, + STATE(1025), 1, sym_primary_expression, - STATE(1049), 1, + STATE(1283), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(643), 2, + ACTIONS(697), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(641), 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(1052), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80530,53 +80488,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64579] = 18, - ACTIONS(303), 1, + [64976] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(2282), 1, - sym_identifier, - ACTIONS(2288), 1, + ACTIONS(2144), 1, anon_sym_await, - STATE(1003), 1, + ACTIONS(2284), 1, + sym_identifier, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1609), 1, + STATE(1603), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(2286), 2, + ACTIONS(2288), 2, anon_sym_match, anon_sym_type, - STATE(1596), 2, + STATE(1342), 2, sym_attribute, sym_subscript, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2284), 3, + ACTIONS(2286), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1392), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -80591,53 +80549,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64658] = 16, - ACTIONS(745), 1, - anon_sym_LPAREN, - ACTIONS(753), 1, - anon_sym_LBRACK, - ACTIONS(757), 1, + [65055] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(761), 1, - anon_sym_await, - ACTIONS(763), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(1345), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(1098), 1, + ACTIONS(2252), 1, + anon_sym_await, + ACTIONS(2290), 1, + sym_identifier, + STATE(984), 1, sym_string, - STATE(1268), 1, - sym_primary_expression, - STATE(1423), 1, + STATE(1372), 1, sym_list_splat_pattern, + STATE(1598), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(759), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(749), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(755), 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(743), 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(1425), 16, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -80650,49 +80610,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64733] = 16, - ACTIONS(699), 1, + [65134] = 16, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(709), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(717), 1, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(719), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1275), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(977), 1, + STATE(1081), 1, sym_string, - STATE(1048), 1, + STATE(1217), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1444), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(763), 2, anon_sym_match, anon_sym_type, - ACTIONS(715), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(703), 3, + ACTIONS(761), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(697), 5, + ACTIONS(755), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1349), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80709,49 +80669,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64808] = 16, - ACTIONS(745), 1, + [65209] = 16, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(761), 1, + ACTIONS(707), 1, anon_sym_await, - ACTIONS(763), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(1345), 1, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(1098), 1, + STATE(969), 1, sym_string, - STATE(1271), 1, + STATE(982), 1, sym_primary_expression, - STATE(1423), 1, + STATE(1283), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(697), 2, anon_sym_match, anon_sym_type, - ACTIONS(759), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(749), 3, + ACTIONS(695), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(743), 5, + ACTIONS(689), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1425), 16, + STATE(1280), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80768,49 +80728,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64883] = 16, - ACTIONS(67), 1, + [65284] = 16, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(637), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(645), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(649), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(1319), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(953), 1, + STATE(984), 1, sym_string, - STATE(964), 1, + STATE(1125), 1, sym_primary_expression, - STATE(1049), 1, + STATE(1372), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(643), 2, + ACTIONS(656), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(641), 3, + ACTIONS(654), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(312), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1052), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80827,49 +80787,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64958] = 16, - ACTIONS(699), 1, + [65359] = 16, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(709), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(717), 1, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(719), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1275), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(977), 1, + STATE(1081), 1, sym_string, - STATE(1115), 1, + STATE(1211), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1444), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(763), 2, anon_sym_match, anon_sym_type, - ACTIONS(715), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(703), 3, + ACTIONS(761), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(697), 5, + ACTIONS(755), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1349), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80886,108 +80846,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65033] = 16, - ACTIONS(745), 1, + [65434] = 16, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(761), 1, + ACTIONS(751), 1, anon_sym_await, - ACTIONS(763), 1, - sym_string_start, - ACTIONS(1345), 1, - anon_sym_STAR, - STATE(1098), 1, - sym_string, - STATE(1279), 1, - sym_primary_expression, - STATE(1423), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(751), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(759), 2, - sym_ellipsis, - sym_float, - ACTIONS(749), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(755), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(743), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1425), 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, - [65108] = 16, - ACTIONS(745), 1, - anon_sym_LPAREN, ACTIONS(753), 1, - anon_sym_LBRACK, - ACTIONS(757), 1, - anon_sym_LBRACE, - ACTIONS(761), 1, - anon_sym_await, - ACTIONS(763), 1, sym_string_start, - ACTIONS(1345), 1, + ACTIONS(1273), 1, anon_sym_STAR, - STATE(1098), 1, + STATE(958), 1, sym_string, - STATE(1280), 1, + STATE(983), 1, sym_primary_expression, - STATE(1423), 1, + STATE(1259), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(741), 2, anon_sym_match, anon_sym_type, - ACTIONS(759), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(749), 3, + ACTIONS(739), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(743), 5, + ACTIONS(733), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1425), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81004,110 +80905,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65183] = 18, - ACTIONS(303), 1, + [65509] = 16, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(2242), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(2290), 1, - sym_identifier, - STATE(1003), 1, + ACTIONS(1421), 1, + anon_sym_STAR, + STATE(984), 1, sym_string, - STATE(1300), 1, - sym_list_splat_pattern, - STATE(1613), 1, + STATE(1126), 1, sym_primary_expression, + STATE(1372), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(2294), 2, + ACTIONS(656), 2, anon_sym_match, anon_sym_type, - STATE(1211), 2, - sym_attribute, - sym_subscript, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2292), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1392), 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, - [65262] = 16, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(797), 1, - anon_sym_LBRACK, - ACTIONS(801), 1, - anon_sym_LBRACE, - ACTIONS(805), 1, - anon_sym_await, - ACTIONS(807), 1, - sym_string_start, - ACTIONS(1249), 1, - anon_sym_STAR, - STATE(970), 1, - sym_string, - STATE(992), 1, - sym_primary_expression, - STATE(1254), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(795), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(803), 2, - sym_ellipsis, - sym_float, - ACTIONS(793), 3, + ACTIONS(654), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(787), 5, + ACTIONS(312), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1148), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81124,108 +80964,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65337] = 16, - ACTIONS(789), 1, + [65584] = 16, + ACTIONS(299), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(797), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(801), 1, - anon_sym_LBRACE, - ACTIONS(805), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(807), 1, - sym_string_start, - ACTIONS(1249), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(970), 1, + STATE(984), 1, sym_string, - STATE(995), 1, + STATE(1128), 1, sym_primary_expression, - STATE(1254), 1, + STATE(1372), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(803), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(793), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(799), 3, + ACTIONS(656), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(787), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1148), 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, - [65412] = 16, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(797), 1, - anon_sym_LBRACK, - ACTIONS(801), 1, - anon_sym_LBRACE, - ACTIONS(805), 1, - anon_sym_await, - ACTIONS(807), 1, - sym_string_start, - ACTIONS(1249), 1, - anon_sym_STAR, - STATE(970), 1, - sym_string, - STATE(996), 1, - sym_primary_expression, - STATE(1254), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(795), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(803), 2, - sym_ellipsis, - sym_float, - ACTIONS(793), 3, + ACTIONS(654), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(787), 5, + ACTIONS(312), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1148), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81242,49 +81023,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65487] = 16, - ACTIONS(789), 1, + [65659] = 16, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(797), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(801), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(805), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(807), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(1249), 1, + ACTIONS(977), 1, anon_sym_STAR, - STATE(970), 1, + STATE(975), 1, sym_string, - STATE(997), 1, + STATE(1022), 1, sym_primary_expression, - STATE(1254), 1, + STATE(1197), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(672), 2, anon_sym_match, anon_sym_type, - ACTIONS(803), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(793), 3, + ACTIONS(670), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(787), 5, + ACTIONS(664), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1148), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81301,49 +81082,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65562] = 16, - ACTIONS(789), 1, + [65734] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(797), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(801), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(805), 1, + ACTIONS(797), 1, anon_sym_await, - ACTIONS(807), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1249), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(970), 1, + STATE(985), 1, sym_string, - STATE(998), 1, + STATE(1085), 1, sym_primary_expression, - STATE(1254), 1, + STATE(1320), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(803), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(793), 3, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(787), 5, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1148), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81360,49 +81141,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65637] = 16, - ACTIONS(699), 1, + [65809] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(709), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(713), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(717), 1, + ACTIONS(797), 1, anon_sym_await, - ACTIONS(719), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1275), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(977), 1, + STATE(985), 1, sym_string, - STATE(1118), 1, + STATE(1087), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1320), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(715), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(703), 3, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(697), 5, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1349), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81419,49 +81200,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65712] = 16, - ACTIONS(789), 1, + [65884] = 16, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(797), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(801), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(805), 1, + ACTIONS(751), 1, anon_sym_await, - ACTIONS(807), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1249), 1, + ACTIONS(1273), 1, anon_sym_STAR, - STATE(970), 1, + STATE(958), 1, sym_string, - STATE(999), 1, + STATE(1004), 1, sym_primary_expression, - STATE(1254), 1, + STATE(1259), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(741), 2, anon_sym_match, anon_sym_type, - ACTIONS(803), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(793), 3, + ACTIONS(739), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(787), 5, + ACTIONS(733), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1148), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81478,49 +81259,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65787] = 16, - ACTIONS(789), 1, + [65959] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(797), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(801), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(805), 1, + ACTIONS(797), 1, anon_sym_await, - ACTIONS(807), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1249), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(970), 1, + STATE(985), 1, sym_string, - STATE(1000), 1, + STATE(1090), 1, sym_primary_expression, - STATE(1254), 1, + STATE(1320), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(803), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(793), 3, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(787), 5, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1148), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81537,49 +81318,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65862] = 16, - ACTIONS(789), 1, + [66034] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(797), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(801), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(805), 1, + ACTIONS(797), 1, anon_sym_await, - ACTIONS(807), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1249), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(970), 1, + STATE(985), 1, sym_string, - STATE(1001), 1, + STATE(1091), 1, sym_primary_expression, - STATE(1254), 1, + STATE(1320), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(803), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(793), 3, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(787), 5, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1148), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81596,49 +81377,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65937] = 16, - ACTIONS(789), 1, + [66109] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(797), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(801), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(805), 1, + ACTIONS(797), 1, anon_sym_await, - ACTIONS(807), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1249), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(970), 1, + STATE(985), 1, sym_string, - STATE(1002), 1, + STATE(1092), 1, sym_primary_expression, - STATE(1254), 1, + STATE(1320), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(803), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(793), 3, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(799), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(787), 5, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1148), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81655,53 +81436,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66012] = 16, - ACTIONS(303), 1, + [66184] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(670), 1, - anon_sym_await, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(1003), 1, + ACTIONS(2144), 1, + anon_sym_await, + ACTIONS(2292), 1, + sym_identifier, + STATE(984), 1, sym_string, - STATE(1059), 1, - sym_primary_expression, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, + STATE(1603), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(664), 2, + ACTIONS(2288), 2, anon_sym_match, anon_sym_type, - ACTIONS(308), 3, + STATE(1342), 2, + sym_attribute, + sym_subscript, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(662), 3, + ACTIONS(2286), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 5, + ACTIONS(312), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1392), 16, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -81714,55 +81497,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66087] = 18, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(656), 1, + [66263] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(2242), 1, + ACTIONS(793), 1, + anon_sym_LBRACE, + ACTIONS(797), 1, anon_sym_await, - ACTIONS(2290), 1, - sym_identifier, - STATE(1003), 1, + ACTIONS(799), 1, + sym_string_start, + ACTIONS(1243), 1, + anon_sym_STAR, + STATE(985), 1, sym_string, - STATE(1300), 1, - sym_list_splat_pattern, - STATE(1617), 1, + STATE(1093), 1, sym_primary_expression, + STATE(1320), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, - sym_ellipsis, - sym_float, - ACTIONS(2294), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - STATE(1211), 2, - sym_attribute, - sym_subscript, - ACTIONS(308), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2292), 3, + ACTIONS(795), 2, + sym_ellipsis, + sym_float, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 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(1392), 14, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -81775,53 +81556,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66166] = 18, - ACTIONS(303), 1, + [66338] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(2122), 1, - sym_identifier, - ACTIONS(2128), 1, + ACTIONS(2260), 1, anon_sym_await, - STATE(1003), 1, + ACTIONS(2278), 1, + sym_identifier, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1611), 1, + STATE(1608), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(2126), 2, + ACTIONS(2282), 2, anon_sym_match, anon_sym_type, - STATE(1293), 2, + STATE(1196), 2, sym_attribute, sym_subscript, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2124), 3, + ACTIONS(2280), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1392), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -81836,53 +81617,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66245] = 18, - ACTIONS(303), 1, + [66417] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(320), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(656), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, + ACTIONS(1421), 1, anon_sym_STAR, - ACTIONS(2190), 1, - sym_identifier, - ACTIONS(2196), 1, + ACTIONS(2144), 1, anon_sym_await, - STATE(1003), 1, + ACTIONS(2292), 1, + sym_identifier, + STATE(984), 1, sym_string, - STATE(1300), 1, + STATE(1372), 1, sym_list_splat_pattern, - STATE(1616), 1, + STATE(1581), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(2194), 2, + ACTIONS(2288), 2, anon_sym_match, anon_sym_type, - STATE(1435), 2, + STATE(1342), 2, sym_attribute, sym_subscript, - ACTIONS(308), 3, + ACTIONS(304), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2192), 3, + ACTIONS(2286), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 4, + ACTIONS(312), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1392), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -81897,53 +81678,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66324] = 16, - ACTIONS(699), 1, - anon_sym_LPAREN, - ACTIONS(709), 1, - anon_sym_LBRACK, - ACTIONS(713), 1, + [66496] = 18, + ACTIONS(299), 1, anon_sym_LBRACE, - ACTIONS(717), 1, - anon_sym_await, - ACTIONS(719), 1, + ACTIONS(316), 1, sym_string_start, - ACTIONS(1275), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1421), 1, anon_sym_STAR, - STATE(977), 1, + ACTIONS(2154), 1, + sym_identifier, + ACTIONS(2160), 1, + anon_sym_await, + STATE(984), 1, sym_string, - STATE(1124), 1, - sym_primary_expression, - STATE(1407), 1, + STATE(1372), 1, sym_list_splat_pattern, + STATE(1607), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(715), 2, + ACTIONS(310), 2, sym_ellipsis, sym_float, - ACTIONS(703), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(711), 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(697), 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(1349), 16, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -81956,49 +81739,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66399] = 16, - ACTIONS(745), 1, + [66575] = 16, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(761), 1, + ACTIONS(751), 1, anon_sym_await, - ACTIONS(763), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1345), 1, + ACTIONS(1273), 1, anon_sym_STAR, - STATE(1098), 1, + STATE(958), 1, sym_string, - STATE(1282), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1423), 1, + STATE(1259), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(741), 2, anon_sym_match, anon_sym_type, - ACTIONS(759), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(749), 3, + ACTIONS(739), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(743), 5, + ACTIONS(733), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1425), 16, + STATE(1180), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82015,49 +81798,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66474] = 16, - ACTIONS(745), 1, + [66650] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(761), 1, + ACTIONS(797), 1, anon_sym_await, - ACTIONS(763), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1345), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(1098), 1, + STATE(985), 1, sym_string, - STATE(1283), 1, + STATE(1094), 1, sym_primary_expression, - STATE(1423), 1, + STATE(1320), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(759), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(749), 3, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(743), 5, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1425), 16, + STATE(1331), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82074,55 +81857,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66549] = 18, - ACTIONS(303), 1, - anon_sym_LBRACE, - ACTIONS(320), 1, - sym_string_start, - ACTIONS(656), 1, - anon_sym_LPAREN, + [66725] = 16, ACTIONS(666), 1, + anon_sym_LPAREN, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(1433), 1, - anon_sym_STAR, - ACTIONS(2128), 1, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(2296), 1, - sym_identifier, - STATE(1003), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(977), 1, + anon_sym_STAR, + STATE(975), 1, sym_string, - STATE(1300), 1, - sym_list_splat_pattern, - STATE(1614), 1, + STATE(1027), 1, sym_primary_expression, + STATE(1197), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 2, - sym_ellipsis, - sym_float, - ACTIONS(2126), 2, + ACTIONS(672), 2, anon_sym_match, anon_sym_type, - STATE(1293), 2, - sym_attribute, - sym_subscript, - ACTIONS(308), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2124), 3, + ACTIONS(680), 2, + sym_ellipsis, + sym_float, + ACTIONS(670), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 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(1392), 14, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -82135,49 +81916,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66628] = 16, - ACTIONS(745), 1, + [66800] = 16, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(757), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(761), 1, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(763), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1345), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(1098), 1, + STATE(1081), 1, sym_string, - STATE(1284), 1, + STATE(1212), 1, sym_primary_expression, - STATE(1423), 1, + STATE(1444), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(763), 2, anon_sym_match, anon_sym_type, - ACTIONS(759), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(749), 3, + ACTIONS(761), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(743), 5, + ACTIONS(755), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1425), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82194,49 +81975,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66703] = 16, - ACTIONS(674), 1, + [66875] = 16, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(690), 1, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(692), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(961), 1, + STATE(1081), 1, sym_string, - STATE(1025), 1, + STATE(1213), 1, sym_primary_expression, - STATE(1212), 1, + STATE(1444), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(763), 2, anon_sym_match, anon_sym_type, - ACTIONS(688), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(678), 3, + ACTIONS(761), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(684), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(672), 5, + ACTIONS(755), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1251), 16, + STATE(1441), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82253,107 +82034,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66778] = 5, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(954), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2300), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2298), 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, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [66830] = 20, - ACTIONS(2084), 1, - anon_sym_LPAREN, - ACTIONS(2092), 1, - anon_sym_STAR_STAR, ACTIONS(2102), 1, - anon_sym_PIPE, - ACTIONS(2104), 1, - anon_sym_not, - ACTIONS(2106), 1, - anon_sym_AMP, - ACTIONS(2108), 1, anon_sym_CARET, - ACTIONS(2110), 1, + ACTIONS(2104), 1, anon_sym_is, - ACTIONS(2302), 1, + ACTIONS(2294), 1, anon_sym_DOT, - ACTIONS(2304), 1, + ACTIONS(2296), 1, anon_sym_LBRACK, - STATE(1544), 1, + STATE(1545), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2086), 2, + ACTIONS(2080), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2088), 2, + ACTIONS(2082), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2100), 2, + ACTIONS(2094), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2112), 2, + ACTIONS(2106), 2, anon_sym_LT, anon_sym_GT, - STATE(909), 2, + STATE(873), 2, sym__not_in, sym__is_not, - STATE(1076), 2, + STATE(1066), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2098), 3, + ACTIONS(2092), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2090), 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(2080), 8, + ACTIONS(2074), 8, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -82362,132 +82096,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_and, anon_sym_or, - [66912] = 21, - ACTIONS(2094), 1, - anon_sym_EQ, - ACTIONS(2104), 1, + [67032] = 21, + ACTIONS(2088), 1, + anon_sym_as, + ACTIONS(2098), 1, anon_sym_not, - ACTIONS(2306), 1, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(2308), 1, + ACTIONS(2300), 1, anon_sym_LPAREN, - ACTIONS(2316), 1, + ACTIONS(2308), 1, anon_sym_STAR_STAR, - ACTIONS(2318), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2324), 1, + ACTIONS(2316), 1, anon_sym_PIPE, - ACTIONS(2326), 1, + ACTIONS(2318), 1, anon_sym_AMP, - ACTIONS(2328), 1, + ACTIONS(2320), 1, anon_sym_CARET, - ACTIONS(2330), 1, + ACTIONS(2322), 1, anon_sym_is, - STATE(1555), 1, + STATE(1568), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2310), 2, + ACTIONS(2302), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2312), 2, + ACTIONS(2304), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2322), 2, + ACTIONS(2314), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2332), 2, + ACTIONS(2324), 2, anon_sym_LT, anon_sym_GT, - STATE(893), 2, + STATE(854), 2, sym__not_in, sym__is_not, - STATE(1307), 2, + STATE(1367), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2320), 3, + ACTIONS(2312), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2314), 6, + 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(2080), 7, + ACTIONS(2074), 7, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - [66996] = 5, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(950), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1554), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1549), 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_async, + anon_sym_for, anon_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, - [67048] = 5, - ACTIONS(2338), 1, + [67116] = 5, + ACTIONS(2330), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(954), 2, + STATE(951), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2336), 5, + ACTIONS(2328), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2334), 31, + ACTIONS(2326), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -82519,62 +82206,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67100] = 21, - ACTIONS(2094), 1, + [67168] = 21, + ACTIONS(2088), 1, anon_sym_EQ, - ACTIONS(2104), 1, + ACTIONS(2098), 1, anon_sym_not, - ACTIONS(2341), 1, + ACTIONS(2333), 1, anon_sym_DOT, - ACTIONS(2343), 1, + ACTIONS(2335), 1, anon_sym_LPAREN, - ACTIONS(2351), 1, + ACTIONS(2343), 1, anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2359), 1, + ACTIONS(2351), 1, anon_sym_PIPE, - ACTIONS(2361), 1, + ACTIONS(2353), 1, anon_sym_AMP, - ACTIONS(2363), 1, + ACTIONS(2355), 1, anon_sym_CARET, - ACTIONS(2365), 1, + ACTIONS(2357), 1, anon_sym_is, - STATE(1556), 1, + STATE(1554), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2345), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2347), 2, + ACTIONS(2339), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2357), 2, + ACTIONS(2349), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2367), 2, + ACTIONS(2359), 2, anon_sym_LT, anon_sym_GT, - STATE(859), 2, + STATE(927), 2, sym__not_in, sym__is_not, - STATE(1286), 2, + STATE(1386), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2355), 3, + ACTIONS(2347), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2349), 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(2080), 7, + ACTIONS(2074), 7, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -82582,100 +82269,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_and, anon_sym_or, - [67184] = 21, - ACTIONS(2094), 1, - anon_sym_as, - ACTIONS(2104), 1, + [67252] = 21, + ACTIONS(2088), 1, + anon_sym_EQ, + ACTIONS(2098), 1, anon_sym_not, - ACTIONS(2369), 1, + ACTIONS(2361), 1, anon_sym_DOT, - ACTIONS(2371), 1, + ACTIONS(2363), 1, anon_sym_LPAREN, - ACTIONS(2379), 1, + ACTIONS(2371), 1, anon_sym_STAR_STAR, - ACTIONS(2381), 1, + ACTIONS(2373), 1, anon_sym_LBRACK, - ACTIONS(2387), 1, + ACTIONS(2379), 1, anon_sym_PIPE, - ACTIONS(2389), 1, + ACTIONS(2381), 1, anon_sym_AMP, - ACTIONS(2391), 1, + ACTIONS(2383), 1, anon_sym_CARET, - ACTIONS(2393), 1, + ACTIONS(2385), 1, anon_sym_is, - STATE(1572), 1, + STATE(1555), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2373), 2, + ACTIONS(2365), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2375), 2, + ACTIONS(2367), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2385), 2, + ACTIONS(2377), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2395), 2, + ACTIONS(2387), 2, anon_sym_LT, anon_sym_GT, - STATE(914), 2, + STATE(892), 2, sym__not_in, sym__is_not, - STATE(1303), 2, + STATE(1289), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2383), 3, + ACTIONS(2375), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2377), 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(2080), 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, - [67268] = 8, - ACTIONS(2082), 1, - anon_sym_DOT, - ACTIONS(2084), 1, - anon_sym_LPAREN, - ACTIONS(2092), 1, - anon_sym_STAR_STAR, - ACTIONS(2096), 1, - anon_sym_LBRACK, + [67336] = 5, + ACTIONS(81), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1076), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2399), 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(2397), 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, @@ -82694,49 +82379,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67325] = 11, - ACTIONS(2082), 1, - anon_sym_DOT, - ACTIONS(2084), 1, - anon_sym_LPAREN, - ACTIONS(2092), 1, - anon_sym_STAR_STAR, - ACTIONS(2096), 1, - anon_sym_LBRACK, + [67388] = 5, + ACTIONS(81), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2086), 2, + STATE(951), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2391), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2100), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1076), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2098), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2399), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 22, + 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, @@ -82746,33 +82426,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67388] = 10, - ACTIONS(2082), 1, + [67440] = 8, + ACTIONS(2076), 1, anon_sym_DOT, - ACTIONS(2084), 1, + ACTIONS(2078), 1, anon_sym_LPAREN, - ACTIONS(2092), 1, + ACTIONS(2086), 1, anon_sym_STAR_STAR, - ACTIONS(2096), 1, + ACTIONS(2090), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2086), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1076), 2, + STATE(1066), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2098), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2399), 3, + ACTIONS(2395), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 24, + ACTIONS(2393), 27, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -82782,12 +82457,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -82797,28 +82475,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67449] = 8, - ACTIONS(2082), 1, + [67497] = 8, + ACTIONS(2076), 1, anon_sym_DOT, - ACTIONS(2084), 1, + ACTIONS(2078), 1, anon_sym_LPAREN, - ACTIONS(2092), 1, + ACTIONS(2086), 1, anon_sym_STAR_STAR, - ACTIONS(2096), 1, + ACTIONS(2090), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1076), 2, + STATE(1066), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2403), 5, + ACTIONS(2395), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2401), 27, + ACTIONS(2393), 27, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -82846,29 +82524,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67506] = 5, - ACTIONS(692), 1, + [67554] = 5, + ACTIONS(753), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(967), 2, + STATE(971), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1554), 5, + ACTIONS(1570), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1549), 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, @@ -82891,38 +82570,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [67557] = 5, - ACTIONS(741), 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(971), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2300), 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(2298), 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_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -82938,22 +82619,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67608] = 5, - ACTIONS(741), 1, + [67662] = 5, + ACTIONS(2401), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(962), 2, + STATE(960), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1554), 5, + ACTIONS(2328), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1549), 30, + ACTIONS(2326), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -82984,81 +82665,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67659] = 12, - ACTIONS(2082), 1, - anon_sym_DOT, - ACTIONS(2084), 1, - anon_sym_LPAREN, - ACTIONS(2092), 1, - anon_sym_STAR_STAR, - ACTIONS(2096), 1, - anon_sym_LBRACK, + [67713] = 5, + ACTIONS(2404), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2086), 2, + STATE(961), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2328), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2088), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2100), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1076), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2098), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2399), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 20, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2326), 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, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67724] = 8, - ACTIONS(2082), 1, + [67764] = 10, + ACTIONS(2076), 1, anon_sym_DOT, - ACTIONS(2084), 1, + ACTIONS(2078), 1, anon_sym_LPAREN, - ACTIONS(2092), 1, + ACTIONS(2086), 1, anon_sym_STAR_STAR, - ACTIONS(2096), 1, + ACTIONS(2090), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1076), 2, + ACTIONS(2080), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1066), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2407), 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(2405), 27, + ACTIONS(2393), 24, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -83068,15 +82747,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -83086,77 +82762,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67781] = 14, - ACTIONS(2082), 1, + [67825] = 20, + ACTIONS(2098), 1, + anon_sym_not, + ACTIONS(2407), 1, anon_sym_DOT, - ACTIONS(2084), 1, + ACTIONS(2409), 1, anon_sym_LPAREN, - ACTIONS(2092), 1, + ACTIONS(2417), 1, anon_sym_STAR_STAR, - ACTIONS(2096), 1, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(2106), 1, + ACTIONS(2425), 1, + anon_sym_PIPE, + ACTIONS(2427), 1, anon_sym_AMP, - ACTIONS(2108), 1, + ACTIONS(2429), 1, anon_sym_CARET, + ACTIONS(2431), 1, + anon_sym_is, + STATE(1559), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2086), 2, + ACTIONS(2411), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2088), 2, + ACTIONS(2413), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2100), 2, + ACTIONS(2423), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1076), 2, + 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(2098), 3, + ACTIONS(2421), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2399), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2397), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, + ACTIONS(2415), 6, 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, - [67850] = 5, - ACTIONS(692), 1, + ACTIONS(2074), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [67906] = 5, + ACTIONS(684), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(973), 2, + STATE(970), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2300), 5, + ACTIONS(2391), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2298), 30, + ACTIONS(2389), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -83187,45 +82869,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [67901] = 15, - ACTIONS(2082), 1, + [67957] = 11, + ACTIONS(2076), 1, anon_sym_DOT, - ACTIONS(2084), 1, + ACTIONS(2078), 1, anon_sym_LPAREN, - ACTIONS(2092), 1, + ACTIONS(2086), 1, anon_sym_STAR_STAR, - ACTIONS(2096), 1, + ACTIONS(2090), 1, anon_sym_LBRACK, - ACTIONS(2102), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2080), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2094), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1066), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2092), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2395), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2393), 22, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_PIPE, - ACTIONS(2106), 1, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_AMP, - ACTIONS(2108), 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, + [68020] = 14, + ACTIONS(2076), 1, + anon_sym_DOT, + ACTIONS(2078), 1, + anon_sym_LPAREN, + ACTIONS(2086), 1, + anon_sym_STAR_STAR, + ACTIONS(2090), 1, + anon_sym_LBRACK, + ACTIONS(2100), 1, + anon_sym_AMP, + ACTIONS(2102), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2086), 2, + ACTIONS(2080), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2088), 2, + ACTIONS(2082), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2100), 2, + ACTIONS(2094), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1076), 2, + STATE(1066), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2098), 3, + ACTIONS(2092), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2411), 3, + ACTIONS(2395), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2409), 17, + ACTIONS(2393), 18, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -83234,6 +82966,7 @@ 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, @@ -83243,68 +82976,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67972] = 5, - ACTIONS(807), 1, - sym_string_start, + [68089] = 13, + ACTIONS(2076), 1, + anon_sym_DOT, + ACTIONS(2078), 1, + anon_sym_LPAREN, + ACTIONS(2086), 1, + anon_sym_STAR_STAR, + ACTIONS(2090), 1, + anon_sym_LBRACK, + ACTIONS(2102), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(974), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2300), 5, - anon_sym_as, + ACTIONS(2080), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2082), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2094), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1066), 2, + 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(2298), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2393), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_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, - [68023] = 5, - ACTIONS(807), 1, + [68156] = 5, + ACTIONS(709), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(969), 2, + STATE(961), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1554), 5, + ACTIONS(2391), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1549), 30, + ACTIONS(2389), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -83335,22 +83076,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68074] = 5, - ACTIONS(2413), 1, + [68207] = 5, + ACTIONS(709), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(971), 2, + STATE(968), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2336), 5, + ACTIONS(1570), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2334), 30, + ACTIONS(1565), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -83362,10 +83103,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, @@ -83381,83 +83122,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68125] = 20, - ACTIONS(2104), 1, - anon_sym_not, - ACTIONS(2416), 1, - anon_sym_DOT, - ACTIONS(2418), 1, - anon_sym_LPAREN, - ACTIONS(2426), 1, - anon_sym_STAR_STAR, - ACTIONS(2428), 1, - anon_sym_LBRACK, - ACTIONS(2434), 1, - anon_sym_PIPE, - ACTIONS(2436), 1, - anon_sym_AMP, - ACTIONS(2438), 1, - anon_sym_CARET, - ACTIONS(2440), 1, - anon_sym_is, - STATE(1562), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2420), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2422), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2432), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2442), 2, - anon_sym_LT, - anon_sym_GT, - STATE(927), 2, - sym__not_in, - sym__is_not, - STATE(1430), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2430), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2424), 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(2080), 7, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [68206] = 5, - ACTIONS(2444), 1, + [68258] = 5, + ACTIONS(2435), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(973), 2, + STATE(970), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2336), 5, + ACTIONS(2328), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2334), 30, + ACTIONS(2326), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -83488,22 +83168,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [68257] = 5, - ACTIONS(2447), 1, + [68309] = 5, + ACTIONS(753), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(974), 2, + STATE(960), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2336), 5, + ACTIONS(2391), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2334), 30, + ACTIONS(2389), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -83515,10 +83195,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, @@ -83534,41 +83214,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68308] = 13, - ACTIONS(2082), 1, + [68360] = 12, + ACTIONS(2076), 1, anon_sym_DOT, - ACTIONS(2084), 1, + ACTIONS(2078), 1, anon_sym_LPAREN, - ACTIONS(2092), 1, + ACTIONS(2086), 1, anon_sym_STAR_STAR, - ACTIONS(2096), 1, + ACTIONS(2090), 1, anon_sym_LBRACK, - ACTIONS(2108), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2086), 2, + ACTIONS(2080), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2088), 2, + ACTIONS(2082), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2100), 2, + ACTIONS(2094), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1076), 2, + STATE(1066), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2098), 3, + ACTIONS(2092), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2399), 3, + ACTIONS(2395), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 19, + ACTIONS(2393), 20, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -83582,88 +83260,100 @@ 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, - [68375] = 8, - ACTIONS(2082), 1, + [68425] = 15, + ACTIONS(2076), 1, anon_sym_DOT, - ACTIONS(2084), 1, + ACTIONS(2078), 1, anon_sym_LPAREN, - ACTIONS(2092), 1, + ACTIONS(2086), 1, anon_sym_STAR_STAR, - ACTIONS(2096), 1, + ACTIONS(2090), 1, anon_sym_LBRACK, + ACTIONS(2096), 1, + anon_sym_PIPE, + ACTIONS(2100), 1, + anon_sym_AMP, + ACTIONS(2102), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1076), 2, + ACTIONS(2080), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2082), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2094), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1066), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2399), 5, - anon_sym_STAR, + ACTIONS(2092), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2440), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 27, + ACTIONS(2438), 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_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, - [68432] = 5, - ACTIONS(719), 1, - sym_string_start, + [68496] = 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(994), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1554), 5, - anon_sym_as, + STATE(1066), 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(1549), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2442), 27, + sym__newline, + anon_sym_SEMI, + anon_sym_from, 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, @@ -83682,26 +83372,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68482] = 3, + [68553] = 5, + ACTIONS(684), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 6, - anon_sym_as, + STATE(964), 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(1626), 31, + 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, @@ -83725,33 +83418,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [68528] = 3, + [68604] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 6, - anon_sym_as, + ACTIONS(2448), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 31, + 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_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, @@ -83767,21 +83461,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [68574] = 3, + [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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 6, + STATE(1233), 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(1670), 31, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2393), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -83789,8 +83490,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, @@ -83810,25 +83509,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [68620] = 3, + [68706] = 5, + ACTIONS(799), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 6, + STATE(981), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2391), 5, anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 31, + ACTIONS(2389), 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, @@ -83837,7 +83539,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, @@ -83853,31 +83554,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [68666] = 3, + [68756] = 10, + 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, - ACTIONS(1679), 6, - anon_sym_as, + ACTIONS(2222), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + 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(1677), 31, - anon_sym_DOT, - anon_sym_LPAREN, + 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_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, @@ -83885,8 +83594,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, @@ -83897,33 +83604,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [68712] = 3, + [68816] = 4, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 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(1677), 31, + 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_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, @@ -83939,91 +83648,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [68758] = 20, - ACTIONS(2104), 1, - anon_sym_not, - ACTIONS(2308), 1, - anon_sym_LPAREN, - ACTIONS(2316), 1, - anon_sym_STAR_STAR, - ACTIONS(2324), 1, - anon_sym_PIPE, - ACTIONS(2326), 1, - anon_sym_AMP, - ACTIONS(2328), 1, - anon_sym_CARET, - ACTIONS(2330), 1, - anon_sym_is, - ACTIONS(2369), 1, - anon_sym_DOT, - ACTIONS(2381), 1, - anon_sym_LBRACK, - STATE(1555), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2310), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2312), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2322), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2332), 2, - anon_sym_LT, - anon_sym_GT, - STATE(893), 2, - sym__not_in, - sym__is_not, - STATE(1307), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2320), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2080), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2314), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [68838] = 5, - ACTIONS(785), 1, + [68864] = 5, + ACTIONS(2450), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(986), 2, + STATE(981), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1554), 5, + ACTIONS(2328), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1549), 29, + 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -84045,224 +83693,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68888] = 5, - ACTIONS(785), 1, - sym_string_start, + [68914] = 12, + ACTIONS(2110), 1, + anon_sym_DOT, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2120), 1, + anon_sym_STAR_STAR, + ACTIONS(2122), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(987), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2300), 5, + ACTIONS(2114), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2298), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(2116), 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(2126), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(1281), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2124), 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, - [68938] = 5, - ACTIONS(2450), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(987), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2336), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(2395), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2334), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2393), 19, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68988] = 20, - ACTIONS(2104), 1, - anon_sym_not, - ACTIONS(2254), 1, + [68978] = 12, + ACTIONS(2188), 1, anon_sym_DOT, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2418), 1, + ACTIONS(2190), 1, anon_sym_LPAREN, - ACTIONS(2426), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - ACTIONS(2434), 1, - anon_sym_PIPE, - ACTIONS(2436), 1, - anon_sym_AMP, - ACTIONS(2438), 1, - anon_sym_CARET, - ACTIONS(2440), 1, - anon_sym_is, - STATE(1562), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(2200), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2420), 2, + ACTIONS(2192), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2422), 2, + ACTIONS(2194), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2432), 2, + ACTIONS(2204), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2442), 2, - anon_sym_LT, - anon_sym_GT, - STATE(927), 2, - sym__not_in, - sym__is_not, - STATE(1430), 2, + STATE(1233), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2430), 3, + ACTIONS(2202), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2080), 6, - anon_sym_COMMA, + ACTIONS(2395), 3, anon_sym_as, - anon_sym_if, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - ACTIONS(2424), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [69068] = 5, - ACTIONS(2453), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(989), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2336), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2334), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2393), 19, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69118] = 4, - ACTIONS(284), 1, - anon_sym_COLON_EQ, + [69042] = 5, + ACTIONS(316), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 6, + STATE(1013), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1570), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(1565), 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, @@ -84284,22 +83842,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69166] = 5, - ACTIONS(2456), 1, + [69092] = 5, + ACTIONS(799), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(991), 2, + STATE(978), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2336), 5, + ACTIONS(1570), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2334), 29, + ACTIONS(1565), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84329,36 +83887,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69216] = 8, - ACTIONS(2254), 1, - anon_sym_DOT, - ACTIONS(2256), 1, - anon_sym_LPAREN, - ACTIONS(2264), 1, - anon_sym_STAR_STAR, - ACTIONS(2266), 1, - anon_sym_LBRACK, + [69142] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1166), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2403), 5, - anon_sym_as, + ACTIONS(2455), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2401), 26, + 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_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -84377,28 +83930,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69272] = 8, - ACTIONS(2254), 1, - anon_sym_DOT, - ACTIONS(2256), 1, - anon_sym_LPAREN, - ACTIONS(2264), 1, - anon_sym_STAR_STAR, - ACTIONS(2266), 1, - anon_sym_LBRACK, + [69188] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1166), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2407), 5, + ACTIONS(1720), 6, anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 26, + ACTIONS(1718), 31, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -84406,10 +83951,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, @@ -84425,28 +83972,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69328] = 5, - ACTIONS(719), 1, - sym_string_start, + sym_type_conversion, + [69234] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(991), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2300), 5, + ACTIONS(1672), 6, anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2298), 29, + ACTIONS(1670), 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, @@ -84455,6 +83999,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, @@ -84470,182 +84015,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69378] = 8, - ACTIONS(2254), 1, + sym_type_conversion, + [69280] = 20, + ACTIONS(2098), 1, + anon_sym_not, + ACTIONS(2188), 1, anon_sym_DOT, - ACTIONS(2256), 1, + ACTIONS(2200), 1, + anon_sym_LBRACK, + ACTIONS(2220), 1, anon_sym_LPAREN, - ACTIONS(2264), 1, + ACTIONS(2228), 1, anon_sym_STAR_STAR, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1166), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2399), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - 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, + ACTIONS(2236), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2238), 1, anon_sym_AMP, + ACTIONS(2240), 1, anon_sym_CARET, - anon_sym_LT_LT, + ACTIONS(2242), 1, anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [69434] = 11, - ACTIONS(2254), 1, - anon_sym_DOT, - ACTIONS(2256), 1, - anon_sym_LPAREN, - ACTIONS(2264), 1, - anon_sym_STAR_STAR, - ACTIONS(2266), 1, - anon_sym_LBRACK, + STATE(1558), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2258), 2, + ACTIONS(2222), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2270), 2, + ACTIONS(2224), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2234), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1166), 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(2268), 3, + ACTIONS(2232), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2399), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2397), 21, + 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_RBRACK, - anon_sym_PIPE, - anon_sym_not, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, + ACTIONS(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, - [69496] = 15, - ACTIONS(2254), 1, + [69360] = 10, + ACTIONS(2188), 1, anon_sym_DOT, - ACTIONS(2256), 1, + ACTIONS(2190), 1, anon_sym_LPAREN, - ACTIONS(2264), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - ACTIONS(2266), 1, + ACTIONS(2200), 1, anon_sym_LBRACK, - ACTIONS(2272), 1, - anon_sym_PIPE, - ACTIONS(2274), 1, - anon_sym_AMP, - ACTIONS(2276), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2258), 2, + ACTIONS(2192), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2260), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2270), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1166), 2, + STATE(1233), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2268), 3, + ACTIONS(2202), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2411), 3, + ACTIONS(2395), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2409), 16, + 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_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69566] = 8, - ACTIONS(2254), 1, + [69420] = 8, + ACTIONS(2110), 1, anon_sym_DOT, - ACTIONS(2256), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2264), 1, + ACTIONS(2120), 1, anon_sym_STAR_STAR, - ACTIONS(2266), 1, + ACTIONS(2122), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1166), 2, + STATE(1281), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2399), 5, + ACTIONS(2444), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 26, + ACTIONS(2442), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -84672,47 +84174,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69622] = 10, - ACTIONS(2254), 1, - anon_sym_DOT, - ACTIONS(2256), 1, - anon_sym_LPAREN, - ACTIONS(2264), 1, - anon_sym_STAR_STAR, - ACTIONS(2266), 1, - anon_sym_LBRACK, + [69476] = 5, + ACTIONS(731), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2258), 2, + STATE(998), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2391), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - STATE(1166), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2268), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2399), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 23, + 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_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, @@ -84722,51 +84219,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69682] = 14, - ACTIONS(2254), 1, + [69526] = 15, + ACTIONS(2188), 1, anon_sym_DOT, - ACTIONS(2256), 1, + ACTIONS(2190), 1, anon_sym_LPAREN, - ACTIONS(2264), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - ACTIONS(2266), 1, + ACTIONS(2200), 1, anon_sym_LBRACK, - ACTIONS(2274), 1, + ACTIONS(2206), 1, + anon_sym_PIPE, + ACTIONS(2208), 1, anon_sym_AMP, - ACTIONS(2276), 1, + ACTIONS(2210), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2258), 2, + ACTIONS(2192), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2260), 2, + ACTIONS(2194), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2270), 2, + ACTIONS(2204), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1166), 2, + STATE(1233), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2268), 3, + ACTIONS(2202), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2399), 3, + ACTIONS(2440), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 17, + ACTIONS(2438), 16, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, - anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -84776,141 +84274,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69750] = 13, - ACTIONS(2254), 1, + [69596] = 20, + ACTIONS(2098), 1, + anon_sym_not, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(2256), 1, + ACTIONS(2310), 1, + anon_sym_LBRACK, + ACTIONS(2363), 1, anon_sym_LPAREN, - ACTIONS(2264), 1, + ACTIONS(2371), 1, anon_sym_STAR_STAR, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2276), 1, + 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, - ACTIONS(2258), 2, + ACTIONS(2365), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2260), 2, + ACTIONS(2367), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2270), 2, + ACTIONS(2377), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1166), 2, + ACTIONS(2387), 2, + anon_sym_LT, + anon_sym_GT, + STATE(892), 2, + sym__not_in, + sym__is_not, + STATE(1289), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2268), 3, + ACTIONS(2375), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2399), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2397), 18, + ACTIONS(2074), 6, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, - 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, - [69816] = 12, - ACTIONS(2254), 1, - anon_sym_DOT, - ACTIONS(2256), 1, - anon_sym_LPAREN, - ACTIONS(2264), 1, - anon_sym_STAR_STAR, - ACTIONS(2266), 1, - anon_sym_LBRACK, + [69676] = 5, + ACTIONS(731), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2258), 2, + STATE(992), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1570), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2260), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2270), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1166), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2268), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2399), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 19, + 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_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, - [69880] = 5, - ACTIONS(320), 1, - sym_string_start, + [69726] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1023), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1554), 5, + ACTIONS(1716), 6, + anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1549), 29, + ACTIONS(1714), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -84926,33 +84421,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69930] = 6, - ACTIONS(284), 1, - anon_sym_COLON_EQ, - ACTIONS(2459), 1, + sym_type_conversion, + [69772] = 8, + ACTIONS(2110), 1, + anon_sym_DOT, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2120), 1, + anon_sym_STAR_STAR, + ACTIONS(2122), 1, anon_sym_LBRACK, - STATE(2016), 1, - sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 6, + STATE(1281), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2399), 5, anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 28, - anon_sym_DOT, - anon_sym_LPAREN, + 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_STAR_STAR, anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, @@ -84972,34 +84470,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69982] = 6, - ACTIONS(1556), 1, - anon_sym_COLON_EQ, - ACTIONS(2459), 1, - anon_sym_LBRACK, - STATE(2017), 1, - sym_type_parameter, + [69828] = 5, + ACTIONS(2457), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1554), 6, - anon_sym_as, + STATE(998), 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(1549), 28, + 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_async, - anon_sym_for, + 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, @@ -85018,28 +84515,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70034] = 8, - ACTIONS(2160), 1, + [69878] = 8, + ACTIONS(2110), 1, anon_sym_DOT, - ACTIONS(2162), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2170), 1, + ACTIONS(2120), 1, anon_sym_STAR_STAR, - ACTIONS(2172), 1, + ACTIONS(2122), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1220), 2, + STATE(1281), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2403), 5, + ACTIONS(2395), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2401), 26, + ACTIONS(2393), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -85047,10 +84544,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -85066,28 +84563,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70090] = 8, - ACTIONS(2160), 1, - anon_sym_DOT, - ACTIONS(2162), 1, - anon_sym_LPAREN, - ACTIONS(2170), 1, - anon_sym_STAR_STAR, - ACTIONS(2172), 1, - anon_sym_LBRACK, + [69934] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1220), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2407), 5, + ACTIONS(1708), 6, anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 26, + ACTIONS(1706), 31, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -85095,6 +84584,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -85114,40 +84605,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70146] = 3, + sym_type_conversion, + [69980] = 11, + ACTIONS(2110), 1, + anon_sym_DOT, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2120), 1, + anon_sym_STAR_STAR, + ACTIONS(2122), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2463), 5, + ACTIONS(2114), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + 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(2461), 32, - sym__newline, - sym_string_start, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + 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_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -85157,32 +84657,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70192] = 4, - ACTIONS(1556), 1, + [70042] = 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(1554), 6, + 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(1549), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(1565), 28, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_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, @@ -85201,40 +84703,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70240] = 3, + [70094] = 14, + 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(2238), 1, + anon_sym_AMP, + ACTIONS(2240), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 5, + 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(2465), 32, - sym__newline, - sym_string_start, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2393), 17, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [70162] = 11, + 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, - anon_sym_AT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2192), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2204), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(1233), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2202), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2395), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2393), 21, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + 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, @@ -85244,34 +84808,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70286] = 8, - ACTIONS(2160), 1, + [70224] = 8, + ACTIONS(2218), 1, anon_sym_DOT, - ACTIONS(2162), 1, + ACTIONS(2220), 1, anon_sym_LPAREN, - ACTIONS(2170), 1, + ACTIONS(2228), 1, anon_sym_STAR_STAR, - ACTIONS(2172), 1, + ACTIONS(2230), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1220), 2, + STATE(1144), 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(2397), 26, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_AT, anon_sym_DASH, @@ -85292,48 +84855,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70342] = 11, - ACTIONS(2160), 1, - anon_sym_DOT, - ACTIONS(2162), 1, - anon_sym_LPAREN, - ACTIONS(2170), 1, - anon_sym_STAR_STAR, - ACTIONS(2172), 1, - anon_sym_LBRACK, + sym_type_conversion, + [70280] = 5, + ACTIONS(2462), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2164), 2, + STATE(1006), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2328), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2176), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1220), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2174), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2399), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 21, + ACTIONS(2326), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -85343,74 +84901,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70404] = 15, - ACTIONS(2160), 1, + [70330] = 20, + ACTIONS(2098), 1, + anon_sym_not, + ACTIONS(2110), 1, anon_sym_DOT, - ACTIONS(2162), 1, + ACTIONS(2122), 1, + anon_sym_LBRACK, + ACTIONS(2409), 1, anon_sym_LPAREN, - ACTIONS(2170), 1, + ACTIONS(2417), 1, anon_sym_STAR_STAR, - ACTIONS(2172), 1, - anon_sym_LBRACK, - ACTIONS(2178), 1, + ACTIONS(2425), 1, anon_sym_PIPE, - ACTIONS(2180), 1, + ACTIONS(2427), 1, anon_sym_AMP, - ACTIONS(2182), 1, + ACTIONS(2429), 1, anon_sym_CARET, + ACTIONS(2431), 1, + anon_sym_is, + STATE(1559), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2164), 2, + ACTIONS(2411), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2166), 2, + ACTIONS(2413), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2176), 2, + ACTIONS(2423), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1220), 2, + 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(2174), 3, + ACTIONS(2421), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2411), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2409), 16, + 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_RBRACE, - anon_sym_not, + anon_sym_RBRACK, anon_sym_and, anon_sym_or, - 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, - [70474] = 8, - ACTIONS(2160), 1, + [70410] = 8, + ACTIONS(2188), 1, anon_sym_DOT, - ACTIONS(2162), 1, + ACTIONS(2190), 1, anon_sym_LPAREN, - ACTIONS(2170), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - ACTIONS(2172), 1, + ACTIONS(2200), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1220), 2, + STATE(1233), 2, sym_argument_list, sym_generator_expression, ACTIONS(2399), 5, @@ -85446,150 +85009,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70530] = 10, - ACTIONS(2160), 1, + [70466] = 15, + ACTIONS(2110), 1, anon_sym_DOT, - ACTIONS(2162), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2170), 1, + ACTIONS(2120), 1, anon_sym_STAR_STAR, - ACTIONS(2172), 1, + ACTIONS(2122), 1, anon_sym_LBRACK, + ACTIONS(2128), 1, + anon_sym_PIPE, + ACTIONS(2130), 1, + anon_sym_AMP, + ACTIONS(2132), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2164), 2, + ACTIONS(2114), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1220), 2, + 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(2174), 3, + ACTIONS(2124), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2399), 3, + ACTIONS(2440), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 23, + 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_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70590] = 14, - ACTIONS(2160), 1, + [70536] = 13, + ACTIONS(2218), 1, anon_sym_DOT, - ACTIONS(2162), 1, + ACTIONS(2220), 1, anon_sym_LPAREN, - ACTIONS(2170), 1, + ACTIONS(2228), 1, anon_sym_STAR_STAR, - ACTIONS(2172), 1, + ACTIONS(2230), 1, anon_sym_LBRACK, - ACTIONS(2180), 1, - anon_sym_AMP, - ACTIONS(2182), 1, + ACTIONS(2240), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2164), 2, + ACTIONS(2222), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2166), 2, + ACTIONS(2224), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2176), 2, + ACTIONS(2234), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1220), 2, + STATE(1144), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2174), 3, + ACTIONS(2232), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2399), 3, - anon_sym_as, + ACTIONS(2395), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 17, + ACTIONS(2393), 18, 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70658] = 13, - ACTIONS(2160), 1, + sym_type_conversion, + [70602] = 12, + ACTIONS(2218), 1, anon_sym_DOT, - ACTIONS(2162), 1, + ACTIONS(2220), 1, anon_sym_LPAREN, - ACTIONS(2170), 1, + ACTIONS(2228), 1, anon_sym_STAR_STAR, - ACTIONS(2172), 1, + ACTIONS(2230), 1, anon_sym_LBRACK, - ACTIONS(2182), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2164), 2, + ACTIONS(2222), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2166), 2, + ACTIONS(2224), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2176), 2, + ACTIONS(2234), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1220), 2, + STATE(1144), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2174), 3, + ACTIONS(2232), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2399), 3, - anon_sym_as, + ACTIONS(2395), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 18, + ACTIONS(2393), 19, 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, @@ -85597,91 +85161,131 @@ 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, - [70724] = 12, - ACTIONS(2160), 1, - anon_sym_DOT, - ACTIONS(2162), 1, - anon_sym_LPAREN, - ACTIONS(2170), 1, - anon_sym_STAR_STAR, - ACTIONS(2172), 1, - anon_sym_LBRACK, + sym_type_conversion, + [70666] = 4, + ACTIONS(1572), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2164), 2, + ACTIONS(1570), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2166), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1565), 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_LT_LT, - ACTIONS(2176), 2, + 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, - STATE(1220), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2174), 3, - anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2399), 3, - anon_sym_as, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [70714] = 5, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1006), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2391), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 19, + ACTIONS(2389), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, 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, - [70788] = 8, - ACTIONS(2198), 1, + [70764] = 8, + ACTIONS(2188), 1, anon_sym_DOT, - ACTIONS(2200), 1, + ACTIONS(2190), 1, anon_sym_LPAREN, - ACTIONS(2208), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - ACTIONS(2210), 1, + ACTIONS(2200), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1269), 2, + STATE(1233), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2403), 5, + ACTIONS(2444), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2401), 26, + 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_AT, anon_sym_DASH, @@ -85702,29 +85306,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [70844] = 8, - ACTIONS(2198), 1, + [70820] = 8, + ACTIONS(2218), 1, anon_sym_DOT, - ACTIONS(2200), 1, + ACTIONS(2220), 1, anon_sym_LPAREN, - ACTIONS(2208), 1, + ACTIONS(2228), 1, anon_sym_STAR_STAR, - ACTIONS(2210), 1, + ACTIONS(2230), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1269), 2, + STATE(1144), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2407), 5, + ACTIONS(2395), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 26, + ACTIONS(2393), 26, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -85751,95 +85354,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [70900] = 20, - ACTIONS(2104), 1, - anon_sym_not, - ACTIONS(2160), 1, + [70876] = 8, + ACTIONS(2110), 1, anon_sym_DOT, - ACTIONS(2172), 1, - anon_sym_LBRACK, - ACTIONS(2200), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2208), 1, + ACTIONS(2120), 1, anon_sym_STAR_STAR, - ACTIONS(2216), 1, - anon_sym_PIPE, - ACTIONS(2218), 1, - anon_sym_AMP, - ACTIONS(2220), 1, - anon_sym_CARET, - ACTIONS(2222), 1, - anon_sym_is, - STATE(1558), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(2122), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2202), 2, + STATE(1281), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2395), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2204), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2214), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2224), 2, anon_sym_LT, anon_sym_GT, - STATE(858), 2, - sym__not_in, - sym__is_not, - STATE(1269), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2212), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2080), 6, + ACTIONS(2393), 26, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_RBRACE, + 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, - ACTIONS(2206), 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, - [70980] = 4, - ACTIONS(284), 1, - anon_sym_COLON_EQ, + [70932] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 6, + ACTIONS(1635), 6, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(1633), 31, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -85855,30 +85444,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71028] = 5, - ACTIONS(320), 1, - sym_string_start, + sym_type_conversion, + [70978] = 4, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(989), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2300), 5, + ACTIONS(267), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2298), 29, + 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -85900,18 +85489,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71078] = 3, + [71026] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1687), 6, + ACTIONS(1720), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1685), 31, + ACTIONS(1718), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -85943,28 +85532,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [71124] = 8, - ACTIONS(2198), 1, + [71072] = 8, + ACTIONS(2218), 1, anon_sym_DOT, - ACTIONS(2200), 1, + ACTIONS(2220), 1, anon_sym_LPAREN, - ACTIONS(2208), 1, + ACTIONS(2228), 1, anon_sym_STAR_STAR, - ACTIONS(2210), 1, + ACTIONS(2230), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1269), 2, + STATE(1144), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2399), 5, + ACTIONS(2444), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 26, + ACTIONS(2442), 26, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -85991,47 +85580,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [71180] = 11, - ACTIONS(2198), 1, + [71128] = 8, + ACTIONS(2188), 1, anon_sym_DOT, - ACTIONS(2200), 1, + ACTIONS(2190), 1, anon_sym_LPAREN, - ACTIONS(2208), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - ACTIONS(2210), 1, + ACTIONS(2200), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2202), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2214), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1269), 2, + STATE(1233), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2212), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2399), 3, - anon_sym_EQ, + ACTIONS(2395), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 21, + 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_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, @@ -86041,84 +85628,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [71242] = 15, - ACTIONS(2198), 1, - anon_sym_DOT, - ACTIONS(2200), 1, - anon_sym_LPAREN, - ACTIONS(2208), 1, - anon_sym_STAR_STAR, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2216), 1, - anon_sym_PIPE, + [71184] = 8, ACTIONS(2218), 1, - anon_sym_AMP, - ACTIONS(2220), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2202), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2204), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2214), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1269), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2212), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2411), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2409), 16, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - sym_type_conversion, - [71312] = 8, - ACTIONS(2198), 1, anon_sym_DOT, - ACTIONS(2200), 1, + ACTIONS(2220), 1, anon_sym_LPAREN, - ACTIONS(2208), 1, + ACTIONS(2228), 1, anon_sym_STAR_STAR, - ACTIONS(2210), 1, + ACTIONS(2230), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1269), 2, + STATE(1144), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2399), 5, + ACTIONS(2395), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 26, + ACTIONS(2393), 26, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -86145,42 +85676,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [71368] = 10, - ACTIONS(2198), 1, + [71240] = 10, + ACTIONS(2110), 1, anon_sym_DOT, - ACTIONS(2200), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2208), 1, + ACTIONS(2120), 1, anon_sym_STAR_STAR, - ACTIONS(2210), 1, + ACTIONS(2122), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2202), 2, + ACTIONS(2114), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1269), 2, + STATE(1281), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2212), 3, + ACTIONS(2124), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2399), 3, - anon_sym_EQ, + ACTIONS(2395), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 23, + 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_RBRACK, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -86194,51 +85726,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [71428] = 14, - ACTIONS(2198), 1, + [71300] = 14, + ACTIONS(2110), 1, anon_sym_DOT, - ACTIONS(2200), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2208), 1, + ACTIONS(2120), 1, anon_sym_STAR_STAR, - ACTIONS(2210), 1, + ACTIONS(2122), 1, anon_sym_LBRACK, - ACTIONS(2218), 1, + ACTIONS(2130), 1, anon_sym_AMP, - ACTIONS(2220), 1, + ACTIONS(2132), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2202), 2, + ACTIONS(2114), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2204), 2, + ACTIONS(2116), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2214), 2, + ACTIONS(2126), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1269), 2, + STATE(1281), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2212), 3, + ACTIONS(2124), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2399), 3, - anon_sym_EQ, + ACTIONS(2395), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 17, + ACTIONS(2393), 17, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -86248,49 +85780,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [71496] = 13, - ACTIONS(2198), 1, + [71368] = 13, + ACTIONS(2110), 1, anon_sym_DOT, - ACTIONS(2200), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2208), 1, + ACTIONS(2120), 1, anon_sym_STAR_STAR, - ACTIONS(2210), 1, + ACTIONS(2122), 1, anon_sym_LBRACK, - ACTIONS(2220), 1, + ACTIONS(2132), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2202), 2, + ACTIONS(2114), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2204), 2, + ACTIONS(2116), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2214), 2, + ACTIONS(2126), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1269), 2, + STATE(1281), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2212), 3, + ACTIONS(2124), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2399), 3, - anon_sym_EQ, + ACTIONS(2395), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 18, + ACTIONS(2393), 18, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -86301,92 +85833,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [71562] = 12, - ACTIONS(2198), 1, + [71434] = 14, + ACTIONS(2188), 1, anon_sym_DOT, - ACTIONS(2200), 1, + ACTIONS(2190), 1, anon_sym_LPAREN, - ACTIONS(2208), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - ACTIONS(2210), 1, + ACTIONS(2200), 1, anon_sym_LBRACK, + ACTIONS(2208), 1, + anon_sym_AMP, + ACTIONS(2210), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2202), 2, + ACTIONS(2192), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2204), 2, + ACTIONS(2194), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2214), 2, + ACTIONS(2204), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1269), 2, + STATE(1233), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2212), 3, + ACTIONS(2202), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2399), 3, - anon_sym_EQ, + ACTIONS(2395), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 19, + ACTIONS(2393), 17, 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, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [71626] = 3, + [71502] = 11, + 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, - ACTIONS(2471), 5, + ACTIONS(2222), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + 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(2469), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2393), 21, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -86396,75 +85937,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71671] = 3, + sym_type_conversion, + [71564] = 13, + ACTIONS(2188), 1, + anon_sym_DOT, + ACTIONS(2190), 1, + anon_sym_LPAREN, + ACTIONS(2198), 1, + anon_sym_STAR_STAR, + ACTIONS(2200), 1, + anon_sym_LBRACK, + ACTIONS(2210), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 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(269), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + 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_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71716] = 3, + [71630] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 5, + ACTIONS(1672), 6, + anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(1670), 31, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -86480,30 +86033,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71761] = 3, + sym_type_conversion, + [71676] = 15, + 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(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(1679), 5, + 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, + STATE(1144), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2232), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2440), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2438), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [71746] = 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), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(265), 28, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -86522,27 +86135,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71806] = 3, + [71798] = 5, + ACTIONS(280), 1, + anon_sym_COLON_EQ, + ACTIONS(787), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 5, + ACTIONS(267), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2473), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(265), 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, @@ -86564,35 +86179,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71851] = 8, - ACTIONS(2369), 1, - anon_sym_DOT, - ACTIONS(2371), 1, - anon_sym_LPAREN, - ACTIONS(2379), 1, - anon_sym_STAR_STAR, - ACTIONS(2381), 1, - anon_sym_LBRACK, + [71847] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1303), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2399), 5, - anon_sym_as, + ACTIONS(1708), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 25, - anon_sym_RPAREN, + 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_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, @@ -86611,47 +86221,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71906] = 11, - ACTIONS(2369), 1, - anon_sym_DOT, - ACTIONS(2371), 1, - anon_sym_LPAREN, - ACTIONS(2379), 1, - anon_sym_STAR_STAR, - ACTIONS(2381), 1, - anon_sym_LBRACK, + [71892] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2373), 2, + ACTIONS(1720), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2385), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1303), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2383), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2399), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 20, - anon_sym_RPAREN, + 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_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, @@ -86661,34 +86263,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71967] = 5, - ACTIONS(1551), 1, - anon_sym_COMMA, - ACTIONS(1556), 1, - anon_sym_COLON_EQ, + [71937] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1554), 6, + ACTIONS(1720), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1549), 28, + 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_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, @@ -86704,18 +86305,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [72016] = 3, + [71982] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2479), 5, + ACTIONS(1672), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2477), 31, + ACTIONS(1670), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -86747,35 +86347,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72061] = 8, - ACTIONS(2369), 1, - anon_sym_DOT, - ACTIONS(2371), 1, - anon_sym_LPAREN, - ACTIONS(2379), 1, - anon_sym_STAR_STAR, - ACTIONS(2381), 1, - anon_sym_LBRACK, + [72027] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1303), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2407), 5, - anon_sym_as, + ACTIONS(1672), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 25, - anon_sym_RPAREN, + 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_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, @@ -86794,33 +86389,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72116] = 3, + [72072] = 5, + ACTIONS(1567), 1, + anon_sym_COMMA, + ACTIONS(1572), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 5, + ACTIONS(1570), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(1565), 28, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -86836,18 +86432,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72161] = 5, + sym_type_conversion, + [72121] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1637), 2, + ACTIONS(1614), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1640), 3, + ACTIONS(1617), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1634), 14, + ACTIONS(1611), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -86862,7 +86459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1630), 17, + ACTIONS(1607), 17, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -86880,33 +86477,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72210] = 6, - ACTIONS(284), 1, - anon_sym_COLON_EQ, - ACTIONS(2485), 1, - anon_sym_LBRACK, - STATE(1929), 1, - sym_type_parameter, + [72170] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 6, + ACTIONS(2467), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 27, + ACTIONS(2465), 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, @@ -86925,33 +86519,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72261] = 6, - ACTIONS(1556), 1, - anon_sym_COLON_EQ, - ACTIONS(2485), 1, - anon_sym_LBRACK, - STATE(1930), 1, - sym_type_parameter, + [72215] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1554), 6, + ACTIONS(2471), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1549), 27, + ACTIONS(2469), 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, @@ -86970,89 +86561,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72312] = 15, - ACTIONS(2369), 1, - anon_sym_DOT, - ACTIONS(2371), 1, - anon_sym_LPAREN, - ACTIONS(2379), 1, - anon_sym_STAR_STAR, - ACTIONS(2381), 1, + [72260] = 6, + ACTIONS(280), 1, + anon_sym_COLON_EQ, + ACTIONS(2473), 1, anon_sym_LBRACK, - ACTIONS(2387), 1, - anon_sym_PIPE, - ACTIONS(2389), 1, - anon_sym_AMP, - ACTIONS(2391), 1, - anon_sym_CARET, + STATE(1977), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2373), 2, + ACTIONS(267), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2375), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2385), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1303), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2383), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2411), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2409), 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, - [72381] = 8, - ACTIONS(2369), 1, + ACTIONS(265), 27, anon_sym_DOT, - ACTIONS(2371), 1, anon_sym_LPAREN, - ACTIONS(2379), 1, - anon_sym_STAR_STAR, - ACTIONS(2381), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1303), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2399), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2397), 25, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87071,30 +86606,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72436] = 3, + [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(1664), 5, + ACTIONS(1570), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1659), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(1565), 27, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87113,17 +86651,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72481] = 3, + [72362] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2489), 5, + ACTIONS(2477), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2487), 31, + ACTIONS(2475), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -87155,33 +86693,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72526] = 3, + [72407] = 7, + ACTIONS(1572), 1, + anon_sym_COLON_EQ, + ACTIONS(1619), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1687), 5, + 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_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1685), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, + ACTIONS(1611), 23, 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, @@ -87197,30 +86739,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72571] = 3, + [72460] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1554), 5, + ACTIONS(2455), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1549), 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, @@ -87239,33 +86781,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72616] = 6, - ACTIONS(284), 1, - anon_sym_COLON_EQ, - ACTIONS(2491), 1, - anon_sym_LBRACK, - STATE(1880), 1, - sym_type_parameter, + [72505] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 6, + ACTIONS(1642), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 27, + 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_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87284,30 +86823,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72667] = 3, + [72550] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(2448), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 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, @@ -87326,30 +86865,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72712] = 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(2499), 5, + ACTIONS(267), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 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, @@ -87368,30 +86910,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72757] = 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(2503), 5, + ACTIONS(1570), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2501), 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, @@ -87410,33 +86955,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72802] = 6, - ACTIONS(284), 1, - anon_sym_COLON_EQ, - ACTIONS(658), 1, - anon_sym_COLON, + [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(651), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(653), 5, + STATE(1367), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2399), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 27, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2397), 25, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87455,36 +87002,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72853] = 6, - ACTIONS(284), 1, - anon_sym_COLON_EQ, - ACTIONS(658), 1, - anon_sym_COLON, + [72752] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(651), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(653), 5, + ACTIONS(2455), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 27, + ACTIONS(2453), 31, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_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, @@ -87500,35 +87044,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72904] = 8, - ACTIONS(2341), 1, - anon_sym_DOT, - ACTIONS(2343), 1, - anon_sym_LPAREN, - ACTIONS(2351), 1, - anon_sym_STAR_STAR, - ACTIONS(2353), 1, - anon_sym_LBRACK, + [72797] = 4, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1286), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2399), 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(2397), 25, + ACTIONS(265), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87547,47 +87087,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72959] = 11, - ACTIONS(2341), 1, - anon_sym_DOT, - ACTIONS(2343), 1, - anon_sym_LPAREN, - ACTIONS(2351), 1, - anon_sym_STAR_STAR, - ACTIONS(2353), 1, - anon_sym_LBRACK, + [72844] = 4, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2345), 2, + ACTIONS(267), 6, + anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, - ACTIONS(2357), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1286), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2355), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2399), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 20, + ACTIONS(265), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -87597,88 +87130,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73020] = 15, - ACTIONS(2341), 1, - anon_sym_DOT, - ACTIONS(2343), 1, - anon_sym_LPAREN, - ACTIONS(2351), 1, - anon_sym_STAR_STAR, - ACTIONS(2353), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - anon_sym_PIPE, - ACTIONS(2361), 1, - anon_sym_AMP, - ACTIONS(2363), 1, - anon_sym_CARET, + [72891] = 4, + ACTIONS(1572), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2345), 2, + ACTIONS(1570), 6, + anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, - ACTIONS(2347), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2357), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1286), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2355), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2411), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2409), 15, + 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_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, - [73089] = 8, - ACTIONS(2341), 1, + [72938] = 8, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(2343), 1, + ACTIONS(2300), 1, anon_sym_LPAREN, - ACTIONS(2351), 1, + ACTIONS(2308), 1, anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1286), 2, + STATE(1367), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2399), 5, + ACTIONS(2444), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 25, + ACTIONS(2442), 25, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_AT, anon_sym_DASH, @@ -87698,19 +87220,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73144] = 3, + [72993] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 5, + ACTIONS(2483), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 31, - sym_string_start, + ACTIONS(2481), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -87723,7 +87247,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, @@ -87739,33 +87262,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [73189] = 3, + [73038] = 5, + ACTIONS(280), 1, + anon_sym_COLON_EQ, + ACTIONS(787), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2463), 5, + ACTIONS(267), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2461), 31, - sym_string_start, + 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, @@ -87781,47 +87306,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [73234] = 10, - ACTIONS(2341), 1, - anon_sym_DOT, - ACTIONS(2343), 1, - anon_sym_LPAREN, - ACTIONS(2351), 1, - anon_sym_STAR_STAR, - ACTIONS(2353), 1, - anon_sym_LBRACK, + [73087] = 5, + ACTIONS(1572), 1, + anon_sym_COLON_EQ, + ACTIONS(2485), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2345), 2, + ACTIONS(1570), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - STATE(1286), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2355), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2399), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 22, + 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_else, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -87831,35 +87350,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73293] = 8, - ACTIONS(2306), 1, - anon_sym_DOT, - ACTIONS(2308), 1, - anon_sym_LPAREN, - ACTIONS(2316), 1, - anon_sym_STAR_STAR, - ACTIONS(2318), 1, - anon_sym_LBRACK, + [73136] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1307), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2399), 5, + ACTIONS(2489), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 25, - anon_sym_RPAREN, + ACTIONS(2487), 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, @@ -87878,33 +87392,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73348] = 6, - ACTIONS(1556), 1, - anon_sym_COLON_EQ, - ACTIONS(2491), 1, - anon_sym_LBRACK, - STATE(1918), 1, - sym_type_parameter, + [73181] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1554), 6, + ACTIONS(2493), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1549), 27, + 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_COLON, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87923,33 +87434,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73399] = 3, + [73226] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 5, + ACTIONS(2448), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2505), 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, @@ -87965,17 +87476,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73444] = 3, + [73271] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1694), 5, + ACTIONS(2497), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1689), 31, + ACTIONS(2495), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -88007,30 +87518,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73489] = 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(1616), 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(1611), 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, @@ -88049,26 +87563,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73534] = 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(2467), 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(2465), 31, - sym_string_start, + 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, @@ -88091,47 +87608,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73579] = 11, - ACTIONS(2306), 1, - anon_sym_DOT, - ACTIONS(2308), 1, - anon_sym_LPAREN, - ACTIONS(2316), 1, - anon_sym_STAR_STAR, - ACTIONS(2318), 1, - anon_sym_LBRACK, + [73418] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2310), 2, + ACTIONS(2501), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2322), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1307), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2320), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2399), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 20, - anon_sym_RPAREN, + ACTIONS(2499), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -88141,34 +87650,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73640] = 5, - ACTIONS(276), 1, - anon_sym_COMMA, - ACTIONS(284), 1, - anon_sym_COLON_EQ, + [73463] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 6, + ACTIONS(1649), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 28, + ACTIONS(1644), 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, @@ -88184,35 +87692,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [73689] = 5, - ACTIONS(276), 1, - anon_sym_COMMA, - ACTIONS(284), 1, - anon_sym_COLON_EQ, + [73508] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 6, + ACTIONS(1660), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 28, + ACTIONS(1655), 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, @@ -88228,85 +87734,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [73738] = 15, - ACTIONS(2306), 1, - anon_sym_DOT, - ACTIONS(2308), 1, - anon_sym_LPAREN, - ACTIONS(2316), 1, - anon_sym_STAR_STAR, - ACTIONS(2318), 1, - anon_sym_LBRACK, - ACTIONS(2324), 1, - anon_sym_PIPE, - ACTIONS(2326), 1, - anon_sym_AMP, - ACTIONS(2328), 1, - anon_sym_CARET, + [73553] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2310), 2, + ACTIONS(2455), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2312), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2322), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1307), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2320), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2411), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2409), 15, - 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, 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, - [73807] = 3, + sym_type_conversion, + [73598] = 8, + ACTIONS(2361), 1, + anon_sym_DOT, + ACTIONS(2363), 1, + anon_sym_LPAREN, + ACTIONS(2371), 1, + anon_sym_STAR_STAR, + ACTIONS(2373), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2511), 5, + STATE(1289), 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(2509), 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_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -88325,28 +87823,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73852] = 8, - ACTIONS(2306), 1, + [73653] = 8, + ACTIONS(2361), 1, anon_sym_DOT, - ACTIONS(2308), 1, + ACTIONS(2363), 1, anon_sym_LPAREN, - ACTIONS(2316), 1, + ACTIONS(2371), 1, anon_sym_STAR_STAR, - ACTIONS(2318), 1, + ACTIONS(2373), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1307), 2, + STATE(1289), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2399), 5, + ACTIONS(2444), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 25, + ACTIONS(2442), 25, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -88372,77 +87870,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73907] = 5, + [73708] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(653), 2, + ACTIONS(2448), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(658), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 14, + ACTIONS(2446), 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, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(651), 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, - [73956] = 10, - ACTIONS(2306), 1, + sym_type_conversion, + [73753] = 8, + ACTIONS(2361), 1, anon_sym_DOT, - ACTIONS(2308), 1, + ACTIONS(2363), 1, anon_sym_LPAREN, - ACTIONS(2316), 1, + ACTIONS(2371), 1, anon_sym_STAR_STAR, - ACTIONS(2318), 1, + ACTIONS(2373), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2310), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1307), 2, + STATE(1289), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2320), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2399), 3, + ACTIONS(2395), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 22, + ACTIONS(2393), 25, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -88450,12 +87941,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -88465,94 +87959,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74015] = 5, + [73808] = 11, + ACTIONS(2361), 1, + anon_sym_DOT, + ACTIONS(2363), 1, + anon_sym_LPAREN, + ACTIONS(2371), 1, + anon_sym_STAR_STAR, + ACTIONS(2373), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(653), 2, + ACTIONS(2365), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(658), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(694), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2377), 2, anon_sym_DASH, - anon_sym_PIPE, 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, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(651), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2395), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2393), 20, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74064] = 14, - ACTIONS(2306), 1, + [73869] = 15, + ACTIONS(2361), 1, anon_sym_DOT, - ACTIONS(2308), 1, + ACTIONS(2363), 1, anon_sym_LPAREN, - ACTIONS(2316), 1, + ACTIONS(2371), 1, anon_sym_STAR_STAR, - ACTIONS(2318), 1, + ACTIONS(2373), 1, anon_sym_LBRACK, - ACTIONS(2326), 1, + ACTIONS(2379), 1, + anon_sym_PIPE, + ACTIONS(2381), 1, anon_sym_AMP, - ACTIONS(2328), 1, + ACTIONS(2383), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2310), 2, + ACTIONS(2365), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2312), 2, + ACTIONS(2367), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2322), 2, + ACTIONS(2377), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1307), 2, + STATE(1289), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2320), 3, + ACTIONS(2375), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2399), 3, + ACTIONS(2440), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 16, + ACTIONS(2438), 15, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -88562,30 +88063,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74131] = 3, + [73938] = 8, + ACTIONS(2361), 1, + anon_sym_DOT, + ACTIONS(2363), 1, + anon_sym_LPAREN, + ACTIONS(2371), 1, + anon_sym_STAR_STAR, + ACTIONS(2373), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2515), 5, + STATE(1289), 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(2513), 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_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -88604,41 +88110,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74176] = 13, - ACTIONS(2306), 1, + [73993] = 10, + ACTIONS(2361), 1, anon_sym_DOT, - ACTIONS(2308), 1, + ACTIONS(2363), 1, anon_sym_LPAREN, - ACTIONS(2316), 1, + ACTIONS(2371), 1, anon_sym_STAR_STAR, - ACTIONS(2318), 1, + ACTIONS(2373), 1, anon_sym_LBRACK, - ACTIONS(2328), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2365), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1289), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2375), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2395), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2393), 22, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_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, + [74052] = 14, + ACTIONS(2361), 1, + anon_sym_DOT, + ACTIONS(2363), 1, + anon_sym_LPAREN, + ACTIONS(2371), 1, + anon_sym_STAR_STAR, + ACTIONS(2373), 1, + anon_sym_LBRACK, + ACTIONS(2381), 1, + anon_sym_AMP, + ACTIONS(2383), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2310), 2, + ACTIONS(2365), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2312), 2, + ACTIONS(2367), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2322), 2, + ACTIONS(2377), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1307), 2, + STATE(1289), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2320), 3, + ACTIONS(2375), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2399), 3, + ACTIONS(2395), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 17, + ACTIONS(2393), 16, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -88649,70 +88206,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74241] = 3, + [74119] = 13, + ACTIONS(2361), 1, + anon_sym_DOT, + ACTIONS(2363), 1, + anon_sym_LPAREN, + ACTIONS(2371), 1, + anon_sym_STAR_STAR, + ACTIONS(2373), 1, + anon_sym_LBRACK, + ACTIONS(2383), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 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, + 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(1670), 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_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, + [74184] = 12, + ACTIONS(2361), 1, + anon_sym_DOT, + ACTIONS(2363), 1, + anon_sym_LPAREN, + ACTIONS(2371), 1, anon_sym_STAR_STAR, + ACTIONS(2373), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2365), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2367), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2377), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(1289), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2375), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2395), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2393), 18, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_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, - [74286] = 3, + [74247] = 5, + ACTIONS(775), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + STATE(1086), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1570), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(1565), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -88722,6 +88340,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, @@ -88740,27 +88359,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74331] = 4, - ACTIONS(284), 1, + [74296] = 4, + ACTIONS(280), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 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(269), 29, + ACTIONS(265), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -88783,27 +88401,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74378] = 4, - ACTIONS(284), 1, + sym_type_conversion, + [74343] = 4, + ACTIONS(280), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 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(269), 29, + ACTIONS(265), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -88826,27 +88444,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74425] = 4, - ACTIONS(1556), 1, + sym_type_conversion, + [74390] = 4, + ACTIONS(1572), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1554), 6, - 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(1549), 29, + ACTIONS(1565), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -88869,23 +88487,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74472] = 5, - ACTIONS(284), 1, - anon_sym_COLON_EQ, - ACTIONS(707), 1, - anon_sym_EQ, + sym_type_conversion, + [74437] = 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(271), 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(269), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2393), 25, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -88893,8 +88517,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, @@ -88913,21 +88535,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74521] = 3, + [74492] = 5, + ACTIONS(775), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2519), 5, + STATE(1088), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2391), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2517), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2389), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -88937,6 +88560,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, @@ -88955,39 +88579,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74566] = 3, + [74541] = 11, + 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(2463), 5, - anon_sym_as, + ACTIONS(2302), 2, anon_sym_STAR, 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(2461), 31, - sym_string_start, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2393), 20, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -88997,21 +88629,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74611] = 3, + [74602] = 5, + ACTIONS(2503), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2523), 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(2521), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2326), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -89021,6 +88654,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, @@ -89039,76 +88673,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74656] = 3, + [74651] = 15, + 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(2316), 1, + anon_sym_PIPE, + ACTIONS(2318), 1, + anon_sym_AMP, + ACTIONS(2320), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2527), 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(2440), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2525), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2438), 15, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74701] = 8, - ACTIONS(2341), 1, + [74720] = 8, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(2343), 1, + ACTIONS(2300), 1, anon_sym_LPAREN, - ACTIONS(2351), 1, + ACTIONS(2308), 1, anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1286), 2, + STATE(1367), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2403), 5, + ACTIONS(2395), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2401), 25, + ACTIONS(2393), 25, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_AT, anon_sym_DASH, @@ -89128,39 +88774,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74756] = 3, + [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(2531), 5, + ACTIONS(2302), 2, anon_sym_STAR, - anon_sym_EQ, 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(2529), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2393), 22, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -89170,48 +88823,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74801] = 14, - ACTIONS(2341), 1, + [74834] = 14, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(2343), 1, + ACTIONS(2300), 1, anon_sym_LPAREN, - ACTIONS(2351), 1, + ACTIONS(2308), 1, anon_sym_STAR_STAR, - ACTIONS(2353), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, + ACTIONS(2318), 1, anon_sym_AMP, - ACTIONS(2363), 1, + ACTIONS(2320), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2345), 2, + ACTIONS(2302), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2347), 2, + ACTIONS(2304), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2357), 2, + ACTIONS(2314), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1286), 2, + STATE(1367), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2355), 3, + ACTIONS(2312), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2399), 3, - anon_sym_EQ, + ACTIONS(2395), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 16, + ACTIONS(2393), 16, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_not, @@ -89223,108 +88876,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74868] = 8, - ACTIONS(2306), 1, + [74901] = 13, + ACTIONS(2298), 1, anon_sym_DOT, - ACTIONS(2308), 1, + ACTIONS(2300), 1, anon_sym_LPAREN, - ACTIONS(2316), 1, + ACTIONS(2308), 1, anon_sym_STAR_STAR, - ACTIONS(2318), 1, + ACTIONS(2310), 1, anon_sym_LBRACK, + ACTIONS(2320), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1307), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2403), 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(2401), 25, + 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_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, - [74923] = 5, - ACTIONS(763), 1, - sym_string_start, + [74966] = 12, + 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, - STATE(1126), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1554), 4, + 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(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(1549), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2393), 18, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74972] = 3, + [75029] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2535), 5, + ACTIONS(267), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2533), 31, + ACTIONS(265), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -89356,33 +89021,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75017] = 4, - ACTIONS(284), 1, - anon_sym_COLON_EQ, + [75074] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 6, + ACTIONS(2508), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 29, + 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, @@ -89398,34 +89063,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [75064] = 4, - ACTIONS(284), 1, - anon_sym_COLON_EQ, + [75119] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 6, + ACTIONS(267), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 29, + 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, @@ -89441,34 +89105,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [75111] = 4, - ACTIONS(1556), 1, - anon_sym_COLON_EQ, + [75164] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1554), 6, + ACTIONS(2512), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1549), 29, + 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_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89484,18 +89147,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [75158] = 3, + [75209] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 5, + ACTIONS(1570), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 31, + ACTIONS(1565), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -89527,29 +89189,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75203] = 5, - ACTIONS(284), 1, - anon_sym_COLON_EQ, - ACTIONS(707), 1, - anon_sym_EQ, + [75254] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 5, - anon_sym_as, + ACTIONS(2516), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 29, + ACTIONS(2514), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -89571,35 +89231,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75252] = 8, - ACTIONS(2341), 1, - anon_sym_DOT, - ACTIONS(2343), 1, - anon_sym_LPAREN, - ACTIONS(2351), 1, - anon_sym_STAR_STAR, - ACTIONS(2353), 1, - anon_sym_LBRACK, + [75299] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1286), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2407), 5, + ACTIONS(2520), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 25, + 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_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -89618,29 +89273,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75307] = 5, - ACTIONS(1556), 1, - anon_sym_COLON_EQ, - ACTIONS(2537), 1, - anon_sym_EQ, + [75344] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1554), 5, - anon_sym_as, + ACTIONS(2524), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1549), 29, + ACTIONS(2522), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -89662,33 +89315,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75356] = 3, + [75389] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 5, - anon_sym_as, + ACTIONS(2528), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 31, - sym_string_start, + ACTIONS(2526), 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, @@ -89704,31 +89357,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75401] = 4, - ACTIONS(284), 1, - anon_sym_COLON_EQ, + [75434] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 6, - anon_sym_as, + ACTIONS(2532), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 29, + 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_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, @@ -89747,31 +89399,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75448] = 4, - ACTIONS(284), 1, - anon_sym_COLON_EQ, + [75479] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 6, - anon_sym_as, + ACTIONS(2536), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 29, + 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_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, @@ -89790,31 +89441,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75495] = 4, - ACTIONS(1556), 1, - anon_sym_COLON_EQ, + [75524] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1554), 6, - anon_sym_as, + ACTIONS(2540), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1549), 29, + 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -89833,69 +89483,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75542] = 13, - ACTIONS(2341), 1, - anon_sym_DOT, - ACTIONS(2343), 1, - anon_sym_LPAREN, - ACTIONS(2351), 1, - anon_sym_STAR_STAR, - ACTIONS(2353), 1, - anon_sym_LBRACK, - ACTIONS(2363), 1, - anon_sym_CARET, + [75569] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2345), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2347), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2357), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1286), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2355), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2399), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2397), 17, - 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_AMP, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [75607] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2541), 5, + ACTIONS(2544), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2539), 31, + ACTIONS(2542), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -89927,89 +89525,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75652] = 12, - ACTIONS(2341), 1, - anon_sym_DOT, - ACTIONS(2343), 1, - anon_sym_LPAREN, - ACTIONS(2351), 1, - anon_sym_STAR_STAR, - ACTIONS(2353), 1, - anon_sym_LBRACK, + [75614] = 5, + ACTIONS(272), 1, + anon_sym_COMMA, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2345), 2, + ACTIONS(267), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2347), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2357), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1286), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2355), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2399), 3, + anon_sym_COLON, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 18, - anon_sym_COMMA, + ACTIONS(265), 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, 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, - [75715] = 8, - ACTIONS(2306), 1, - anon_sym_DOT, - ACTIONS(2308), 1, - anon_sym_LPAREN, - ACTIONS(2316), 1, - anon_sym_STAR_STAR, - ACTIONS(2318), 1, - anon_sym_LBRACK, + sym_type_conversion, + [75663] = 5, + ACTIONS(272), 1, + anon_sym_COMMA, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1307), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2407), 5, + ACTIONS(267), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 25, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(265), 28, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90025,133 +89612,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75770] = 10, - ACTIONS(2369), 1, - anon_sym_DOT, - ACTIONS(2371), 1, - anon_sym_LPAREN, - ACTIONS(2379), 1, - anon_sym_STAR_STAR, - ACTIONS(2381), 1, - anon_sym_LBRACK, + sym_type_conversion, + [75712] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2373), 2, + ACTIONS(645), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1303), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2383), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2399), 3, - anon_sym_as, + ACTIONS(650), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 22, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(686), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(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, - [75829] = 8, - ACTIONS(2369), 1, - anon_sym_DOT, - ACTIONS(2371), 1, - anon_sym_LPAREN, - ACTIONS(2379), 1, - anon_sym_STAR_STAR, - ACTIONS(2381), 1, - anon_sym_LBRACK, + [75761] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1303), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2403), 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(2401), 25, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(686), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(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, - [75884] = 7, - ACTIONS(1556), 1, + [75810] = 4, + ACTIONS(280), 1, anon_sym_COLON_EQ, - ACTIONS(1642), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1630), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1632), 4, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_PIPE, - ACTIONS(1637), 5, + ACTIONS(267), 6, anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1634), 23, + ACTIONS(265), 29, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90167,82 +89744,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75937] = 14, - ACTIONS(2369), 1, - anon_sym_DOT, - ACTIONS(2371), 1, - anon_sym_LPAREN, - ACTIONS(2379), 1, - anon_sym_STAR_STAR, - ACTIONS(2381), 1, - anon_sym_LBRACK, - ACTIONS(2389), 1, - anon_sym_AMP, - ACTIONS(2391), 1, - anon_sym_CARET, + [75857] = 4, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2373), 2, + ACTIONS(267), 6, + anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, - ACTIONS(2375), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2385), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1303), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2383), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2399), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 16, - anon_sym_RPAREN, + ACTIONS(265), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76004] = 6, - ACTIONS(284), 1, + [75904] = 4, + ACTIONS(1572), 1, anon_sym_COLON_EQ, - ACTIONS(658), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(651), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(653), 5, + ACTIONS(1570), 6, anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 27, + ACTIONS(1565), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -90265,36 +89830,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76055] = 6, - ACTIONS(284), 1, - anon_sym_COLON_EQ, - ACTIONS(658), 1, - anon_sym_COLON, + [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(651), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(653), 5, - anon_sym_as, + 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(694), 27, - anon_sym_DOT, - 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, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90310,36 +89877,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76106] = 6, - ACTIONS(1556), 1, - anon_sym_COLON_EQ, - ACTIONS(1640), 1, - anon_sym_COLON, + [76006] = 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(1630), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1637), 5, - anon_sym_as, + STATE(1386), 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(1634), 27, - 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_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, @@ -90355,33 +89924,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76157] = 3, + [76061] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2463), 5, - anon_sym_as, + ACTIONS(2548), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2461), 31, - sym_string_start, + 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_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, @@ -90397,33 +89966,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76202] = 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(2545), 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(2543), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(686), 27, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90439,138 +90011,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76247] = 13, - ACTIONS(2369), 1, - anon_sym_DOT, - ACTIONS(2371), 1, - anon_sym_LPAREN, - ACTIONS(2379), 1, - anon_sym_STAR_STAR, - ACTIONS(2381), 1, - anon_sym_LBRACK, - ACTIONS(2391), 1, - anon_sym_CARET, + [76157] = 6, + ACTIONS(280), 1, + anon_sym_COLON_EQ, + ACTIONS(650), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2373), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2375), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2385), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1303), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2383), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2399), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2397), 17, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, + ACTIONS(643), 2, anon_sym_async, anon_sym_for, - 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, - [76312] = 12, - ACTIONS(2369), 1, - anon_sym_DOT, - ACTIONS(2371), 1, - anon_sym_LPAREN, - ACTIONS(2379), 1, - anon_sym_STAR_STAR, - ACTIONS(2381), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2373), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2375), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2385), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1303), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2383), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2399), 3, + ACTIONS(645), 5, anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2397), 18, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_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, - [76375] = 5, - ACTIONS(763), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1127), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2300), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2298), 29, + ACTIONS(686), 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, @@ -90586,35 +90056,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76424] = 5, - ACTIONS(2547), 1, - sym_string_start, + [76208] = 6, + ACTIONS(1572), 1, + anon_sym_COLON_EQ, + ACTIONS(1617), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1127), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2336), 4, + 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(2334), 29, + 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, @@ -90630,17 +90101,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76473] = 3, + [76259] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 5, + ACTIONS(2552), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1626), 31, + ACTIONS(2550), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -90672,17 +90143,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76518] = 3, + [76304] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(1635), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 31, + ACTIONS(1633), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -90714,30 +90185,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76563] = 3, + [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(2556), 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(2554), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - 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, @@ -90756,39 +90232,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76608] = 3, + [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(1668), 5, + ACTIONS(2337), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2349), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1386), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2347), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2395), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + 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_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, @@ -90798,82 +90282,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76653] = 12, - ACTIONS(2306), 1, + [76465] = 15, + ACTIONS(2333), 1, anon_sym_DOT, - ACTIONS(2308), 1, + ACTIONS(2335), 1, anon_sym_LPAREN, - ACTIONS(2316), 1, + ACTIONS(2343), 1, anon_sym_STAR_STAR, - ACTIONS(2318), 1, + 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(2310), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2312), 2, + ACTIONS(2339), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2322), 2, + ACTIONS(2349), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1307), 2, + STATE(1386), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2320), 3, + ACTIONS(2347), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2399), 3, + ACTIONS(2440), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 18, - anon_sym_RPAREN, + ACTIONS(2438), 15, 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_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, - [76716] = 3, + [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(2535), 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(2533), 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_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, @@ -90889,84 +90383,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [76760] = 5, + [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(653), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(658), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(694), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + STATE(1386), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2347), 3, 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(651), 16, + ACTIONS(2395), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2393), 22, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, - anon_sym_RBRACK, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76808] = 5, + [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(653), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(658), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(694), 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(651), 16, + ACTIONS(2395), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2393), 16, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, - anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -90976,208 +90485,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76856] = 3, + [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(2552), 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(2550), 30, - anon_sym_DOT, - anon_sym_LPAREN, + 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_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, - [76900] = 3, + [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(2527), 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(2525), 30, - 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, - [76944] = 5, + [76843] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(653), 2, + ACTIONS(1716), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(658), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 14, + 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_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(651), 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, - [76992] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(653), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(658), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(694), 14, + [76888] = 14, + ACTIONS(2407), 1, anon_sym_DOT, + ACTIONS(2409), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2417), 1, anon_sym_STAR_STAR, + ACTIONS(2419), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2427), 1, anon_sym_AMP, + ACTIONS(2429), 1, anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(651), 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, - [77040] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1637), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1640), 3, - anon_sym_as, + ACTIONS(2395), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1634), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2411), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2413), 2, anon_sym_GT_GT, - 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_PLUS, + 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, - ACTIONS(1630), 16, + 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_RBRACK, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -91187,60 +90682,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77088] = 5, + [76954] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1637), 2, + ACTIONS(2467), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1640), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1634), 14, + ACTIONS(2465), 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(1630), 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, - [77136] = 3, + [76998] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2515), 5, + ACTIONS(267), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2513), 30, + ACTIONS(265), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -91271,17 +90764,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [77180] = 3, + [77042] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 5, + ACTIONS(267), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 30, + ACTIONS(265), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -91312,17 +90805,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [77224] = 3, + [77086] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, + ACTIONS(2528), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 30, + ACTIONS(2526), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -91353,17 +90846,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [77268] = 3, + [77130] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1616), 5, + ACTIONS(2471), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 30, + ACTIONS(2469), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -91375,10 +90868,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, @@ -91394,20 +90887,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77312] = 3, + [77174] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 5, + ACTIONS(2477), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 30, + ACTIONS(2475), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -91417,6 +90909,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, @@ -91435,24 +90928,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77356] = 3, + [77218] = 5, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 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(1677), 30, + ACTIONS(265), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -91476,17 +90971,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77400] = 3, + [77266] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1554), 5, + ACTIONS(2483), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1549), 30, + ACTIONS(2481), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -91517,29 +91012,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77444] = 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(2467), 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(2465), 30, - sym_string_start, + ACTIONS(265), 26, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -91558,31 +91056,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77488] = 5, - ACTIONS(284), 1, - anon_sym_COLON_EQ, + [77360] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(276), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(271), 5, + ACTIONS(2508), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 27, + 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -91601,30 +91097,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77536] = 4, - ACTIONS(284), 1, + [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(271), 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(269), 29, + ACTIONS(1565), 26, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -91643,33 +91141,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77582] = 4, - ACTIONS(284), 1, - anon_sym_COLON_EQ, + [77454] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 5, - anon_sym_as, + ACTIONS(2501), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 29, + ACTIONS(2499), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91685,30 +91181,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77628] = 4, - ACTIONS(1556), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [77498] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1554), 5, + ACTIONS(2532), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1549), 29, + ACTIONS(2530), 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, @@ -91727,31 +91223,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77674] = 5, - ACTIONS(284), 1, - anon_sym_COLON_EQ, + [77542] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(276), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(271), 5, + ACTIONS(2536), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 27, + 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -91770,17 +91264,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77722] = 3, + [77586] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1687), 5, + ACTIONS(2512), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1685), 30, + ACTIONS(2510), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -91811,32 +91305,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [77766] = 3, + [77630] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 5, - anon_sym_as, + ACTIONS(2516), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 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, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91852,17 +91345,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77810] = 3, + sym_type_conversion, + [77674] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 5, + ACTIONS(1649), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 30, + ACTIONS(1644), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -91893,17 +91387,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77854] = 3, + [77718] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 5, + ACTIONS(1660), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 30, + ACTIONS(1655), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -91934,34 +91428,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77898] = 5, - ACTIONS(1556), 1, - anon_sym_COLON_EQ, + [77762] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1551), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1554), 5, - anon_sym_as, + ACTIONS(2467), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1549), 27, + ACTIONS(2465), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91977,17 +91468,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77946] = 3, + sym_type_conversion, + [77806] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 5, + ACTIONS(2471), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2473), 30, + ACTIONS(2469), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92018,33 +91510,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [77990] = 4, - ACTIONS(284), 1, - anon_sym_COLON_EQ, + [77850] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 6, + ACTIONS(2477), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 28, + ACTIONS(2475), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_else, + anon_sym_COLON, anon_sym_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, @@ -92060,33 +91550,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78036] = 4, - ACTIONS(284), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [77894] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 6, + ACTIONS(2483), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 28, + ACTIONS(2481), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_else, + anon_sym_COLON, anon_sym_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, @@ -92102,30 +91591,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78082] = 4, - ACTIONS(1556), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [77938] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1554), 6, + ACTIONS(2540), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1549), 28, + ACTIONS(2538), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_else, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -92144,24 +91633,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78128] = 3, + [77982] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 5, + ACTIONS(2448), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1626), 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, @@ -92185,31 +91674,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78172] = 3, + [78026] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2479), 5, + ACTIONS(2544), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2477), 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, @@ -92225,30 +91715,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [78216] = 3, + [78070] = 5, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2511), 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(2509), 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, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -92267,25 +91758,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78260] = 3, + [78118] = 5, + ACTIONS(1572), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2523), 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(2521), 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, @@ -92308,32 +91801,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78304] = 3, + [78166] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2531), 5, - anon_sym_as, + ACTIONS(2508), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2529), 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, @@ -92349,32 +91841,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78348] = 3, + sym_type_conversion, + [78210] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2541), 5, - anon_sym_as, + ACTIONS(2532), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2539), 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, @@ -92390,35 +91882,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78392] = 6, - ACTIONS(1556), 1, - anon_sym_COLON_EQ, - ACTIONS(1563), 1, - anon_sym_LBRACK, - STATE(2097), 1, - sym_type_parameter, + sym_type_conversion, + [78254] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1554), 6, + ACTIONS(2536), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1549), 26, + 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_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, @@ -92434,32 +91923,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78442] = 3, + sym_type_conversion, + [78298] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2545), 5, - anon_sym_as, + ACTIONS(2540), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2543), 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, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92475,32 +91964,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78486] = 3, + sym_type_conversion, + [78342] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2489), 5, - anon_sym_as, + ACTIONS(2544), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2487), 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, @@ -92516,32 +92005,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78530] = 3, + sym_type_conversion, + [78386] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2463), 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(2461), 30, - sym_string_start, + ACTIONS(2550), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92557,32 +92087,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78574] = 3, + sym_type_conversion, + [78474] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 5, + ACTIONS(2489), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2487), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_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, + [78518] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2493), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2505), 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, @@ -92598,17 +92169,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78618] = 3, + sym_type_conversion, + [78562] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 5, + ACTIONS(2497), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1626), 30, + ACTIONS(2495), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92639,27 +92211,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [78662] = 5, - ACTIONS(1556), 1, - anon_sym_COLON_EQ, + [78606] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1630), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1637), 5, + ACTIONS(2548), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1634), 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, @@ -92682,32 +92252,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78710] = 3, + [78650] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2527), 5, - anon_sym_as, + ACTIONS(2520), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2525), 30, + ACTIONS(2518), 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, @@ -92723,32 +92292,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78754] = 3, + sym_type_conversion, + [78694] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2519), 5, - anon_sym_as, + ACTIONS(2524), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2517), 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, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92764,17 +92333,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78798] = 3, + sym_type_conversion, + [78738] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2535), 5, + ACTIONS(2552), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2533), 30, + ACTIONS(2550), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92805,17 +92375,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78842] = 3, + [78782] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(2489), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 30, + ACTIONS(2487), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92846,17 +92416,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78886] = 3, + [78826] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, + ACTIONS(2493), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 30, + ACTIONS(2491), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92887,17 +92457,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78930] = 3, + [78870] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 5, + ACTIONS(2497), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2473), 30, + ACTIONS(2495), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92928,17 +92498,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78974] = 3, + [78914] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2479), 5, + ACTIONS(2520), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2477), 30, + ACTIONS(2518), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92969,17 +92539,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79018] = 3, + [78958] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(2524), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 30, + ACTIONS(2522), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93010,32 +92580,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79062] = 3, + [79002] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2499), 5, - anon_sym_as, + ACTIONS(1635), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 30, + ACTIONS(1633), 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, @@ -93051,17 +92620,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79106] = 3, + sym_type_conversion, + [79046] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2503), 5, + ACTIONS(1570), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2501), 30, + ACTIONS(1565), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93073,10 +92643,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, @@ -93092,32 +92662,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79150] = 3, + [79090] = 4, + ACTIONS(1639), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2515), 5, - anon_sym_as, + ACTIONS(1642), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2513), 30, + ACTIONS(1637), 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, @@ -93133,29 +92703,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79194] = 3, + sym_type_conversion, + [79136] = 4, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 5, + ACTIONS(267), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 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, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -93174,20 +92746,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79238] = 3, + [79182] = 4, + ACTIONS(1567), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(1570), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 30, + ACTIONS(1565), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -93215,23 +92788,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79282] = 3, + [79228] = 4, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1554), 5, + ACTIONS(267), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1549), 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, @@ -93240,6 +92815,46 @@ static const uint16_t ts_small_parse_table[] = { 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, + [79274] = 4, + ACTIONS(1646), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1649), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1644), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, @@ -93256,21 +92871,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79326] = 4, - ACTIONS(1661), 1, + sym_type_conversion, + [79320] = 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), 16, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [79368] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 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), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [79416] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1716), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1659), 29, + ACTIONS(1714), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -93298,34 +92999,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79372] = 5, - ACTIONS(1556), 1, - anon_sym_COLON_EQ, + [79460] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1551), 2, + ACTIONS(1708), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1706), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1554), 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_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, + [79504] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1720), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1549), 27, + ACTIONS(1718), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93341,21 +93080,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79420] = 4, - ACTIONS(1551), 1, + sym_type_conversion, + [79548] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1720), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1718), 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, + [79592] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1554), 5, + ACTIONS(1672), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1549), 29, + ACTIONS(1670), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -93383,7 +93163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79466] = 3, + [79636] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -93424,31 +93204,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79510] = 3, + [79680] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 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(1670), 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, @@ -93464,22 +93246,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79554] = 4, - ACTIONS(1691), 1, - anon_sym_COMMA, + [79726] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1694), 5, + ACTIONS(2455), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1689), 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, anon_sym_if, @@ -93490,7 +93272,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, @@ -93506,19 +93287,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79600] = 5, + [79770] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(653), 2, + ACTIONS(1614), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(658), 3, + ACTIONS(1617), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 14, + ACTIONS(1611), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -93533,7 +93313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(651), 16, + ACTIONS(1607), 16, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -93550,103 +93330,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79648] = 5, + [79818] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(653), 2, + ACTIONS(1642), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(658), 3, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(694), 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(651), 16, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - sym_type_conversion, - [79696] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1630), 3, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - ACTIONS(1637), 5, - anon_sym_as, - anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1634), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [79742] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2467), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2465), 30, - sym_string_start, + ACTIONS(1637), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93654,13 +93348,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, @@ -93676,20 +93370,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79786] = 4, - ACTIONS(284), 1, + sym_type_conversion, + [79862] = 4, + ACTIONS(280), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 6, + ACTIONS(267), 6, anon_sym_STAR, anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 28, + ACTIONS(265), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93718,20 +93413,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79832] = 4, - ACTIONS(284), 1, + [79908] = 4, + ACTIONS(280), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 6, + ACTIONS(267), 6, anon_sym_STAR, anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 28, + ACTIONS(265), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93760,20 +93455,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79878] = 4, - ACTIONS(1556), 1, + [79954] = 4, + ACTIONS(1572), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1554), 6, + ACTIONS(1570), 6, anon_sym_STAR, anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1549), 28, + ACTIONS(1565), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93802,72 +93497,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79924] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1679), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1677), 30, + [80000] = 8, + ACTIONS(2407), 1, anon_sym_DOT, + ACTIONS(2409), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, + ACTIONS(2417), 1, anon_sym_STAR_STAR, + ACTIONS(2419), 1, 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, - [79968] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 5, + STATE(1417), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2399), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2397), 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, @@ -93883,33 +93543,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80012] = 4, - ACTIONS(1613), 1, - anon_sym_COMMA, + [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(1616), 5, + STATE(1417), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2444), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 29, - 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_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, @@ -93925,20 +93589,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80058] = 3, + [80108] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 5, + ACTIONS(1635), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 30, + ACTIONS(1633), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -93951,7 +93615,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, @@ -93967,23 +93630,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80102] = 3, + [80152] = 5, + ACTIONS(1572), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 5, + 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(269), 30, + ACTIONS(1565), 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, @@ -93992,7 +93658,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, @@ -94008,66 +93673,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80146] = 3, + [80200] = 4, + ACTIONS(1657), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 5, + ACTIONS(1660), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 30, - sym_string_start, + 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_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, - [80190] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2483), 5, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2481), 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, @@ -94090,62 +93714,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80234] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1637), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1640), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1634), 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(1630), 16, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, sym_type_conversion, - [80282] = 3, + [80246] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 5, + ACTIONS(2448), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1659), 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, @@ -94157,7 +93741,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, @@ -94173,26 +93756,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80326] = 3, + [80290] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 5, - anon_sym_as, + ACTIONS(1649), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1659), 30, + 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, @@ -94215,25 +93796,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80370] = 3, + sym_type_conversion, + [80334] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1694), 5, - anon_sym_as, + ACTIONS(1660), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1689), 30, + 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, @@ -94256,34 +93837,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80414] = 5, - ACTIONS(284), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [80378] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(651), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(653), 5, + ACTIONS(267), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 27, + ACTIONS(265), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94299,31 +93879,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80462] = 5, - ACTIONS(284), 1, - anon_sym_COLON_EQ, + [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(651), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(653), 5, - anon_sym_as, + 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(694), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + 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, @@ -94342,40 +93925,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80510] = 12, - ACTIONS(2416), 1, + [80476] = 11, + ACTIONS(2407), 1, anon_sym_DOT, - ACTIONS(2418), 1, + ACTIONS(2409), 1, anon_sym_LPAREN, - ACTIONS(2426), 1, + ACTIONS(2417), 1, anon_sym_STAR_STAR, - ACTIONS(2428), 1, + ACTIONS(2419), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2399), 2, + ACTIONS(2395), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 2, + ACTIONS(2411), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2422), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2432), 2, + ACTIONS(2423), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1430), 2, + STATE(1417), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2430), 3, + ACTIONS(2421), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2397), 18, + ACTIONS(2393), 20, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, @@ -94386,125 +93967,97 @@ 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, - [80572] = 5, - ACTIONS(1556), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1630), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1637), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1634), 27, + [80536] = 15, + ACTIONS(2407), 1, anon_sym_DOT, + ACTIONS(2409), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - 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_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, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [80620] = 6, - ACTIONS(1556), 1, - anon_sym_COLON_EQ, - ACTIONS(2459), 1, - anon_sym_LBRACK, - STATE(2017), 1, - sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1554), 5, + ACTIONS(2411), 2, anon_sym_STAR, - anon_sym_COLON, 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(1549), 27, - anon_sym_DOT, - anon_sym_LPAREN, + 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_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80670] = 3, + [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, - ACTIONS(2511), 5, - anon_sym_as, + 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(2509), 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_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, @@ -94520,27 +94073,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80714] = 8, - ACTIONS(2416), 1, + [80658] = 10, + ACTIONS(2407), 1, anon_sym_DOT, - ACTIONS(2418), 1, + ACTIONS(2409), 1, anon_sym_LPAREN, - ACTIONS(2426), 1, + ACTIONS(2417), 1, anon_sym_STAR_STAR, - ACTIONS(2428), 1, + ACTIONS(2419), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1430), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2403), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2395), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2401), 25, + 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, @@ -94548,15 +94106,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_in, anon_sym_RBRACK, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -94566,17 +94121,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80768] = 3, + [80716] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2523), 5, + ACTIONS(2512), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2521), 30, + ACTIONS(2510), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94588,10 +94143,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, @@ -94607,17 +94162,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80812] = 3, + [80760] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2531), 5, + ACTIONS(2516), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2529), 30, + ACTIONS(2514), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94629,10 +94184,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, @@ -94648,63 +94203,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80856] = 8, - ACTIONS(2416), 1, + [80804] = 12, + ACTIONS(2407), 1, anon_sym_DOT, - ACTIONS(2418), 1, + ACTIONS(2409), 1, anon_sym_LPAREN, - ACTIONS(2426), 1, + ACTIONS(2417), 1, anon_sym_STAR_STAR, - ACTIONS(2428), 1, + ACTIONS(2419), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1430), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2407), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2395), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 25, + 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_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80910] = 3, + [80866] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2541), 5, + ACTIONS(267), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2539), 30, + ACTIONS(265), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94735,17 +94294,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80954] = 3, + [80910] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2545), 5, + ACTIONS(2528), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2543), 30, + ACTIONS(2526), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94776,105 +94335,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80998] = 3, + [80954] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2489), 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(2487), 30, + ACTIONS(686), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(643), 16, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_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, - [81042] = 3, + [81002] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1687), 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(1685), 30, + ACTIONS(686), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(643), 16, + anon_sym_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, - [81086] = 3, + [81050] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 5, + ACTIONS(2455), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2505), 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, @@ -94883,7 +94447,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, @@ -94899,105 +94462,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81130] = 3, + [81094] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 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(2493), 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_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, - sym_type_conversion, - [81174] = 3, + [81142] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2499), 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(2497), 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_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, - sym_type_conversion, - [81218] = 3, + [81190] = 5, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2527), 5, + ACTIONS(272), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(267), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2525), 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, @@ -95006,7 +94576,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, @@ -95022,23 +94591,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81262] = 3, + [81238] = 5, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2519), 5, + ACTIONS(272), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(267), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2517), 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, @@ -95047,7 +94619,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, @@ -95063,23 +94634,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81306] = 3, + [81286] = 4, + ACTIONS(1572), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2535), 5, + ACTIONS(1570), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2533), 30, + 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, @@ -95088,7 +94661,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, @@ -95104,32 +94676,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81350] = 3, + [81332] = 4, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 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(2550), 30, + 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_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95145,101 +94718,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81394] = 3, + [81378] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, - anon_sym_as, + ACTIONS(1614), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1617), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 30, + ACTIONS(1611), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1607), 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, - [81438] = 3, + [81426] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 5, - anon_sym_as, + ACTIONS(1614), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1617), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2473), 30, + ACTIONS(1611), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1607), 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, - [81482] = 3, + [81474] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2479), 5, + ACTIONS(1716), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2477), 30, + ACTIONS(1714), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -95252,7 +94830,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, @@ -95268,29 +94845,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81526] = 3, + [81518] = 4, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 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(1626), 30, + 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_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, @@ -95309,17 +94887,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81570] = 3, + [81564] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(2501), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 30, + ACTIONS(2499), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95350,32 +94928,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81614] = 3, + [81608] = 5, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2499), 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(2497), 30, + ACTIONS(686), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95391,32 +94971,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81658] = 3, + [81656] = 5, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2503), 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(2501), 30, + ACTIONS(686), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_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, + [81704] = 5, + ACTIONS(1572), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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(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_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95432,19 +95057,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81702] = 3, + [81752] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(1708), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 30, + ACTIONS(1706), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -95454,7 +95080,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, @@ -95473,19 +95098,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81746] = 3, + [81796] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(1720), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 30, + ACTIONS(1718), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -95495,7 +95121,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, @@ -95514,19 +95139,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81790] = 3, + [81840] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(1720), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 30, + ACTIONS(1718), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -95536,7 +95162,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, @@ -95555,31 +95180,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81834] = 5, - ACTIONS(284), 1, + [81884] = 4, + ACTIONS(1572), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(276), 2, - anon_sym_RPAREN, + ACTIONS(1570), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1565), 28, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - ACTIONS(271), 5, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + 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, + 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(269), 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, @@ -95598,17 +95263,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81882] = 3, + [81974] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2515), 5, + ACTIONS(2512), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2513), 30, + ACTIONS(2510), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95639,17 +95304,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81926] = 3, + [82018] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 5, + ACTIONS(2516), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 30, + ACTIONS(2514), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95680,17 +95345,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81970] = 3, + [82062] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 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, @@ -95702,10 +95367,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, @@ -95721,17 +95386,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82014] = 3, + [82106] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 5, + ACTIONS(2471), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 30, + ACTIONS(2469), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95743,10 +95408,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, @@ -95762,24 +95427,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82058] = 3, + [82150] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1554), 5, + ACTIONS(2477), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1549), 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, @@ -95802,27 +95468,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [82102] = 5, - ACTIONS(284), 1, - anon_sym_COLON_EQ, + [82194] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(276), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(271), 5, + ACTIONS(1672), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 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, @@ -95846,33 +95509,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82150] = 4, + [82238] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1630), 3, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - ACTIONS(1637), 5, + ACTIONS(1672), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1634), 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, 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, @@ -95888,17 +95550,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82196] = 3, + [82282] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 5, + ACTIONS(1635), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1659), 30, + ACTIONS(1633), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95929,24 +95591,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82240] = 3, + [82326] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2503), 5, + ACTIONS(2483), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2501), 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, @@ -95969,30 +95632,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [82284] = 3, + [82370] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2463), 5, + ACTIONS(267), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2461), 30, - sym_string_start, + ACTIONS(265), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96011,20 +95673,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82328] = 3, + [82414] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(2528), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 30, + ACTIONS(2526), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -96034,6 +95695,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, @@ -96052,17 +95714,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82372] = 3, + [82458] = 5, + ACTIONS(1572), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 5, + ACTIONS(1567), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1570), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + 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, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [82506] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2455), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 30, + ACTIONS(2453), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96070,13 +95776,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, @@ -96092,25 +95798,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [82416] = 3, + [82550] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 5, + ACTIONS(2508), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 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, @@ -96133,36 +95839,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [82460] = 6, - ACTIONS(284), 1, - anon_sym_COLON_EQ, - ACTIONS(1563), 1, - anon_sym_LBRACK, - STATE(2096), 1, - sym_type_parameter, + [82594] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 6, + ACTIONS(2532), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 26, + 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_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96178,24 +95880,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82510] = 3, + [82638] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 5, + ACTIONS(2536), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 30, + 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -96218,21 +95962,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [82554] = 3, + [82726] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(1642), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 30, + ACTIONS(1637), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -96245,6 +95987,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, @@ -96260,24 +96003,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82598] = 3, + [82770] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1694), 5, + ACTIONS(2544), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1689), 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, @@ -96300,25 +96044,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [82642] = 3, + [82814] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1616), 5, + ACTIONS(2548), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 30, + 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -96341,21 +96085,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [82686] = 3, + [82858] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(2552), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 30, + ACTIONS(2550), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -96368,6 +96110,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, @@ -96383,31 +96126,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82730] = 3, + [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(2519), 5, + ACTIONS(267), 5, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2517), 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_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, @@ -96423,30 +96170,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [82774] = 3, + [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(2463), 5, + ACTIONS(1570), 5, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2461), 30, - sym_string_start, + 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_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96465,33 +96214,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82818] = 8, - ACTIONS(2416), 1, - anon_sym_DOT, - ACTIONS(2418), 1, - anon_sym_LPAREN, - ACTIONS(2426), 1, - anon_sym_STAR_STAR, - ACTIONS(2428), 1, - anon_sym_LBRACK, + [83002] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1430), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2399), 4, + ACTIONS(1716), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 25, + ACTIONS(1714), 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, @@ -96511,24 +96255,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82872] = 3, + [83046] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2511), 5, + ACTIONS(2489), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2509), 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, @@ -96551,21 +96296,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [82916] = 3, + [83090] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1687), 5, + ACTIONS(2493), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1685), 30, + ACTIONS(2491), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -96578,6 +96321,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, @@ -96593,46 +96337,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82960] = 11, - ACTIONS(2416), 1, + [83134] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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, - ACTIONS(2418), 1, anon_sym_LPAREN, - ACTIONS(2426), 1, + 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, - ACTIONS(2428), 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, + [83178] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2399), 2, + ACTIONS(2497), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 2, + ACTIONS(2495), 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, + [83222] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1708), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2432), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1706), 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, - STATE(1430), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2430), 3, - anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2397), 20, - anon_sym_COMMA, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [83266] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1720), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1718), 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, @@ -96642,24 +96501,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83020] = 3, + [83310] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2523), 5, + ACTIONS(1649), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2521), 30, + 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, @@ -96682,25 +96542,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [83064] = 3, + [83354] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2531), 5, + ACTIONS(1660), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2529), 30, + 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, @@ -96723,18 +96583,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [83108] = 3, + [83398] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1694), 5, + ACTIONS(1720), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1689), 30, + ACTIONS(1718), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96765,17 +96624,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83152] = 3, + [83442] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1616), 5, + ACTIONS(2520), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 30, + ACTIONS(2518), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96787,10 +96646,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, @@ -96806,24 +96665,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83196] = 3, + [83486] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2541), 5, + ACTIONS(2524), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2539), 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, @@ -96846,32 +96706,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [83240] = 3, + [83530] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2545), 5, + ACTIONS(1672), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2543), 30, + 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, + anon_sym_PLUS, + anon_sym_not, + anon_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, + [83574] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1672), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + 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, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96887,18 +96788,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [83284] = 3, + [83618] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2489), 5, + ACTIONS(1570), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2487), 30, + ACTIONS(1565), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96929,86 +96829,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [83328] = 15, - ACTIONS(2416), 1, - anon_sym_DOT, - ACTIONS(2418), 1, - anon_sym_LPAREN, - ACTIONS(2426), 1, - anon_sym_STAR_STAR, - ACTIONS(2428), 1, - anon_sym_LBRACK, - ACTIONS(2434), 1, - anon_sym_PIPE, - ACTIONS(2436), 1, - anon_sym_AMP, - ACTIONS(2438), 1, - anon_sym_CARET, + [83662] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2411), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2420), 2, + ACTIONS(1570), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2422), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2432), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1430), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2430), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2409), 15, + anon_sym_LT, + anon_sym_GT, + 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, 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, - [83396] = 8, - ACTIONS(2416), 1, - anon_sym_DOT, - ACTIONS(2418), 1, - anon_sym_LPAREN, - ACTIONS(2426), 1, - anon_sym_STAR_STAR, - ACTIONS(2428), 1, - anon_sym_LBRACK, + [83706] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1430), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2399), 4, + ACTIONS(2501), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 25, + ACTIONS(2499), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, @@ -97028,24 +96911,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83450] = 3, + [83750] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 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(2505), 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, @@ -97068,46 +96953,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [83494] = 10, - ACTIONS(2416), 1, - anon_sym_DOT, - ACTIONS(2418), 1, - anon_sym_LPAREN, - ACTIONS(2426), 1, - anon_sym_STAR_STAR, - ACTIONS(2428), 1, - anon_sym_LBRACK, + [83796] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2399), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2420), 2, + ACTIONS(1642), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - STATE(1430), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2430), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2397), 22, + anon_sym_LT, + anon_sym_GT, + 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, 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, @@ -97117,42 +96994,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83552] = 14, - ACTIONS(2416), 1, + [83840] = 13, + ACTIONS(2407), 1, anon_sym_DOT, - ACTIONS(2418), 1, + ACTIONS(2409), 1, anon_sym_LPAREN, - ACTIONS(2426), 1, + ACTIONS(2417), 1, anon_sym_STAR_STAR, - ACTIONS(2428), 1, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(2436), 1, - anon_sym_AMP, - ACTIONS(2438), 1, + ACTIONS(2429), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2399), 2, + ACTIONS(2395), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 2, + ACTIONS(2411), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2422), 2, + ACTIONS(2413), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2432), 2, + ACTIONS(2423), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1430), 2, + STATE(1417), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2430), 3, + ACTIONS(2421), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2397), 16, + ACTIONS(2393), 17, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -97163,89 +97038,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83618] = 13, - ACTIONS(2416), 1, - anon_sym_DOT, - ACTIONS(2418), 1, - anon_sym_LPAREN, - ACTIONS(2426), 1, - anon_sym_STAR_STAR, - ACTIONS(2428), 1, - anon_sym_LBRACK, - ACTIONS(2438), 1, - anon_sym_CARET, + [83904] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2399), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2420), 2, + ACTIONS(2471), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2422), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2432), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1430), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2430), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2397), 17, + anon_sym_LT, + anon_sym_GT, + 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_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, - [83682] = 6, - ACTIONS(284), 1, - anon_sym_COLON_EQ, - ACTIONS(2459), 1, - anon_sym_LBRACK, - STATE(2016), 1, - sym_type_parameter, + [83947] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 5, + ACTIONS(2467), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 27, + 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_RBRACK, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97264,25 +97125,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83732] = 3, + [83990] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2511), 5, + ACTIONS(2471), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2509), 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_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97304,25 +97165,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83775] = 3, + [84033] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 5, + ACTIONS(2477), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97344,25 +97205,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83818] = 3, + [84076] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2519), 5, - anon_sym_as, + ACTIONS(2501), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2517), 29, + 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_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97384,17 +97245,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83861] = 3, + [84119] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2535), 5, + ACTIONS(267), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2533), 29, + ACTIONS(265), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97424,29 +97285,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83904] = 4, - ACTIONS(1556), 1, - anon_sym_COLON_EQ, + [84162] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1554), 5, + ACTIONS(2512), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1549), 28, + 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_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97465,25 +97325,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83949] = 3, + [84205] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, - anon_sym_as, + ACTIONS(2516), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(2514), 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, @@ -97505,25 +97365,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83992] = 3, + [84248] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, - anon_sym_as, + ACTIONS(2467), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 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_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97545,67 +97405,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84035] = 5, + [84291] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1637), 2, + ACTIONS(2471), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1640), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1634), 14, + 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_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(1630), 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, - [84082] = 3, + [84334] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(2489), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 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, @@ -97627,25 +97485,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84125] = 3, + [84377] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 5, - anon_sym_as, + ACTIONS(2483), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2473), 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_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97667,67 +97525,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84168] = 5, + [84420] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1637), 2, + ACTIONS(267), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1640), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1634), 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(1630), 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, - [84215] = 3, + [84463] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2479), 5, - anon_sym_as, + ACTIONS(1708), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2477), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97749,17 +97605,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84258] = 3, + [84506] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2463), 4, + ACTIONS(1720), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2461), 30, - sym_string_start, + ACTIONS(1718), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97767,10 +97623,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97789,25 +97645,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84301] = 3, + [84549] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 5, + ACTIONS(1720), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 29, + 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97829,25 +97685,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84344] = 3, + [84592] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 5, + ACTIONS(1642), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1659), 29, + ACTIONS(1637), 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, @@ -97869,25 +97725,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84387] = 3, + [84635] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 5, + ACTIONS(1672), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 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, @@ -97909,17 +97765,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84430] = 3, + [84678] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2515), 5, + ACTIONS(1672), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2513), 29, + ACTIONS(1670), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97949,25 +97805,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84473] = 3, + [84721] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2511), 5, - anon_sym_as, + ACTIONS(2508), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2509), 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_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97989,25 +97845,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84516] = 3, + [84764] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 5, + ACTIONS(2532), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98029,103 +97885,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84559] = 7, - ACTIONS(1642), 1, - anon_sym_EQ, + [84807] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1637), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1640), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(1630), 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(1634), 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, - [84610] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(653), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(658), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(694), 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(651), 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, - [84657] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2511), 5, + ACTIONS(2536), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2509), 29, + ACTIONS(2534), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98155,17 +97925,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84700] = 3, + [84850] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1554), 5, + ACTIONS(2540), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1549), 29, + ACTIONS(2538), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98195,25 +97965,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84743] = 3, + [84893] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 5, + ACTIONS(2544), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 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, @@ -98235,17 +98005,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84786] = 3, + [84936] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1694), 5, + ACTIONS(2548), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1689), 29, + ACTIONS(2546), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98275,20 +98045,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84829] = 5, - ACTIONS(284), 1, - anon_sym_COLON_EQ, - ACTIONS(707), 1, - anon_sym_EQ, + [84979] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 4, + ACTIONS(2552), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 28, + ACTIONS(2550), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98296,6 +98063,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, @@ -98317,25 +98085,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84876] = 3, + [85022] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 5, + ACTIONS(2489), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 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, @@ -98357,17 +98125,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84919] = 3, + [85065] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1616), 5, + ACTIONS(2493), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 29, + ACTIONS(2491), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98397,150 +98165,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84962] = 4, + [85108] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1661), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1664), 5, - anon_sym_as, + ACTIONS(2497), 5, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1659), 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, - [85007] = 7, - ACTIONS(1642), 1, anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1637), 2, - anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1640), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 5, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(1630), 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(1634), 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, - [85058] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1694), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1689), 29, + ACTIONS(2495), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [85101] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1616), 5, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 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_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98562,17 +98205,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85144] = 3, + [85151] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 5, + ACTIONS(2520), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 29, + ACTIONS(2518), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98602,59 +98245,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85187] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(653), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(658), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(694), 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(651), 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, - [85234] = 3, + [85194] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(2524), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 29, + ACTIONS(2522), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98684,27 +98285,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85277] = 5, - ACTIONS(1556), 1, - anon_sym_COLON_EQ, - ACTIONS(2537), 1, - anon_sym_EQ, + [85237] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1554), 4, + ACTIONS(2520), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1549), 28, + 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, @@ -98726,58 +98325,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85324] = 4, + [85280] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1659), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1664), 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(1565), 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, - [85369] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2523), 5, + ACTIONS(1649), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2521), 29, + ACTIONS(1644), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98807,25 +98365,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85412] = 3, + [85323] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 5, + ACTIONS(1660), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 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, @@ -98847,25 +98405,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85455] = 3, + [85366] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2531), 5, + ACTIONS(2528), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2529), 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98887,25 +98445,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85498] = 3, + [85409] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1694), 5, + ACTIONS(1642), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1689), 29, + ACTIONS(1637), 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, @@ -98927,22 +98485,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85541] = 4, + [85452] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1551), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1554), 5, + ACTIONS(2483), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1549), 27, + ACTIONS(2481), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -98968,25 +98525,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85586] = 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(1616), 5, + ACTIONS(267), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 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, @@ -99008,21 +98567,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85629] = 4, - ACTIONS(284), 1, + [85542] = 5, + ACTIONS(280), 1, anon_sym_COLON_EQ, + ACTIONS(787), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 5, + ACTIONS(267), 4, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 28, + ACTIONS(265), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -99030,7 +98591,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, @@ -99049,17 +98609,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85674] = 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(2527), 5, + ACTIONS(1570), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2525), 29, + ACTIONS(1565), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99067,7 +98630,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99089,105 +98651,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85717] = 3, + [85636] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2527), 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(2525), 29, + ACTIONS(686), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(643), 15, + anon_sym_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, - [85760] = 3, + [85683] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2541), 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(2539), 29, + ACTIONS(686), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(643), 15, + anon_sym_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, - [85803] = 3, + [85730] = 7, + ACTIONS(1619), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2545), 5, + 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(1635), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2543), 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, @@ -99209,25 +98819,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85846] = 3, + [85824] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(265), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(267), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(308), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [85869] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2519), 5, + ACTIONS(265), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(267), 13, anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(308), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [85914] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1570), 5, + anon_sym_as, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2517), 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_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99249,17 +98941,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85889] = 3, + [85957] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2535), 5, + ACTIONS(2524), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2533), 29, + ACTIONS(2522), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -99289,25 +98981,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85932] = 3, + [86000] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(1716), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 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_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99329,25 +99021,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85975] = 3, + [86043] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, + ACTIONS(1708), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 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_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99369,17 +99061,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86018] = 3, + [86086] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2519), 5, + ACTIONS(1720), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2517), 29, + ACTIONS(1718), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99409,25 +99101,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86061] = 3, + [86129] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2489), 5, + ACTIONS(1720), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2487), 29, + 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99449,25 +99141,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86104] = 3, + [86172] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1687), 5, + ACTIONS(1672), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1685), 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, @@ -99489,58 +99181,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86147] = 4, + [86215] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1549), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1554), 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(1565), 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, - [86192] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2535), 5, + ACTIONS(1672), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2533), 29, + ACTIONS(1670), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99570,20 +99221,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86235] = 3, + [86258] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(2455), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 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, @@ -99592,6 +99242,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, @@ -99610,21 +99261,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86278] = 3, + [86301] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2515), 5, + ACTIONS(1639), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1642), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2513), 29, + ACTIONS(1637), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -99650,25 +99302,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86321] = 3, + [86346] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 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(2554), 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, @@ -99690,66 +99343,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86364] = 4, - ACTIONS(284), 1, - anon_sym_COLON_EQ, + [86391] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 5, + ACTIONS(1614), 2, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, + ACTIONS(1617), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 28, + ACTIONS(1611), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(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, - [86409] = 3, + [86438] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 5, + ACTIONS(1567), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1570), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2473), 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_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99771,20 +99426,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86452] = 3, + [86483] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2479), 5, + ACTIONS(2448), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2477), 29, + 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, @@ -99793,6 +99447,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, @@ -99811,100 +99466,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86495] = 3, + [86526] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1554), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1549), 29, + ACTIONS(1637), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(1642), 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, - [86538] = 3, + ACTIONS(1581), 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, + [86571] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2531), 5, + ACTIONS(1565), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1570), 13, anon_sym_STAR, - anon_sym_EQ, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2529), 29, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1581), 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, + [86616] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1644), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + anon_sym_LBRACK, + ACTIONS(1649), 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, - [86581] = 4, + ACTIONS(1653), 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, + [86661] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1661), 2, + ACTIONS(1646), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1664), 5, + ACTIONS(1649), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1659), 27, + ACTIONS(1644), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -99932,105 +99630,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86626] = 3, + [86706] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2527), 5, - anon_sym_as, + ACTIONS(1614), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1617), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2525), 29, + ACTIONS(1611), 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(1607), 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, - [86669] = 3, + [86753] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2499), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 29, + ACTIONS(1655), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + anon_sym_LBRACK, + ACTIONS(1660), 13, + anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_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, - [86712] = 3, + ACTIONS(1664), 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, + [86798] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2503), 5, + ACTIONS(1635), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2501), 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, @@ -100052,20 +99753,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86755] = 4, + [86841] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1551), 2, + ACTIONS(1567), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1554), 5, + ACTIONS(1570), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1549), 27, + ACTIONS(1565), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -100093,65 +99794,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86800] = 3, + [86886] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2541), 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(2539), 29, + ACTIONS(686), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(643), 15, + anon_sym_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, - [86843] = 3, + [86933] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2545), 5, + ACTIONS(2508), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2543), 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_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100173,22 +99876,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86886] = 4, + [86976] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1691), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1694), 5, + ACTIONS(2532), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1689), 27, + ACTIONS(2530), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -100214,22 +99916,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86931] = 4, + [87019] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1613), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1616), 5, + ACTIONS(2536), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 27, + ACTIONS(2534), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -100255,17 +99956,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86976] = 3, + [87062] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2541), 5, + ACTIONS(2540), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2539), 29, + ACTIONS(2538), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100295,17 +99996,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87019] = 3, + [87105] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(2544), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 29, + ACTIONS(2542), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100335,17 +100036,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87062] = 3, + [87148] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2523), 5, + ACTIONS(2548), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2521), 29, + ACTIONS(2546), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100375,25 +100076,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87105] = 3, + [87191] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 5, + ACTIONS(2552), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2473), 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, @@ -100415,18 +100116,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87148] = 5, + [87234] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(653), 2, + ACTIONS(645), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(658), 3, + ACTIONS(650), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 14, + ACTIONS(686), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -100441,12 +100142,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(651), 15, - anon_sym_RPAREN, + 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, @@ -100457,100 +100158,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87195] = 5, + [87281] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(653), 2, + ACTIONS(1607), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1614), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(658), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 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(651), 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, - [87242] = 4, + [87326] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1689), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1694), 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(1696), 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, - [87287] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2499), 5, + ACTIONS(2489), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 29, + ACTIONS(2487), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100580,22 +100239,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87330] = 4, + [87369] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1691), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1694), 5, + ACTIONS(2493), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1689), 27, + ACTIONS(2491), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -100621,25 +100279,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87375] = 3, + [87412] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 5, + ACTIONS(2497), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1626), 29, + ACTIONS(2495), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100661,21 +100319,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87418] = 3, + [87455] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2531), 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(2529), 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, @@ -100701,17 +100360,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87461] = 3, + [87500] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2503), 5, + ACTIONS(2501), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2501), 29, + ACTIONS(2499), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100741,107 +100400,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87504] = 4, + [87543] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(269), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(271), 13, + ACTIONS(1657), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1660), 5, + anon_sym_as, 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(312), 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, - [87549] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(269), 3, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1655), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(271), 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_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(312), 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, - [87594] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [87588] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2489), 5, + ACTIONS(2497), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2487), 29, + ACTIONS(2495), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100863,25 +100481,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87637] = 3, + [87631] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 5, + ACTIONS(1649), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 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_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100903,25 +100521,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87680] = 3, + [87674] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 5, + ACTIONS(1660), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1659), 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, @@ -100943,17 +100561,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87723] = 3, + [87717] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(1642), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 29, + ACTIONS(1637), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -100983,25 +100601,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87766] = 3, + [87760] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(2520), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 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, @@ -101023,25 +100641,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87809] = 3, + [87803] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(2524), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 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_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101063,25 +100681,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87852] = 3, + [87846] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 5, + ACTIONS(1649), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 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_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101103,59 +100721,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87895] = 5, + [87889] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1637), 2, + ACTIONS(1660), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1640), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1634), 14, + 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, 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(1630), 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, - [87942] = 3, + [87932] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 5, + ACTIONS(1570), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 29, + ACTIONS(1565), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -101185,57 +100801,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87985] = 3, + [87975] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2545), 5, - anon_sym_as, + ACTIONS(1614), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1617), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2543), 29, + ACTIONS(1611), 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(1607), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88028] = 3, + [88022] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2489), 5, + ACTIONS(2512), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2487), 29, + ACTIONS(2510), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101265,17 +100883,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88071] = 3, + [88065] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 5, + ACTIONS(2516), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 29, + ACTIONS(2514), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101305,25 +100923,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88114] = 3, + [88108] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 5, - anon_sym_as, + ACTIONS(1570), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 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_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101345,17 +100963,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88157] = 3, + [88151] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 5, + ACTIONS(267), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 29, + ACTIONS(265), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -101385,17 +101003,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88200] = 3, + [88194] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2479), 5, + ACTIONS(267), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2477), 29, + ACTIONS(265), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -101425,66 +101043,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88243] = 4, + [88237] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1611), 3, + 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_LBRACK, - ACTIONS(1616), 13, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_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(1620), 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, - [88288] = 3, + 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(1687), 5, + ACTIONS(2528), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1685), 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_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101506,25 +101123,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88331] = 3, + [88323] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 5, - anon_sym_as, + ACTIONS(2501), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 29, + 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, @@ -101546,58 +101163,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88374] = 3, + [88366] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1554), 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(1549), 29, + ACTIONS(686), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(643), 15, + anon_sym_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, - [88417] = 5, + [88413] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(653), 2, + ACTIONS(645), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(658), 3, - anon_sym_EQ, + ACTIONS(650), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 14, + ACTIONS(686), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -101612,12 +101231,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(651), 15, + ACTIONS(643), 15, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_not, anon_sym_and, @@ -101628,27 +101247,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88464] = 5, - ACTIONS(284), 1, - anon_sym_COLON_EQ, - ACTIONS(707), 1, - anon_sym_EQ, + [88460] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 4, + ACTIONS(2512), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 28, + 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_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101670,17 +101287,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88511] = 3, + [88503] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(2516), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 29, + ACTIONS(2514), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -101710,29 +101327,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88554] = 4, + [88546] = 4, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1613), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1616), 5, - anon_sym_as, + ACTIONS(267), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 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, @@ -101751,17 +101368,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88599] = 3, + [88591] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2499), 5, + ACTIONS(2467), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 29, + ACTIONS(2465), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -101791,17 +101408,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88642] = 3, + [88634] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2503), 5, + ACTIONS(2493), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2501), 29, + ACTIONS(2491), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -101831,25 +101448,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88685] = 3, + [88677] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 5, - anon_sym_as, + ACTIONS(2477), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 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_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101871,28 +101488,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88728] = 3, + [88720] = 4, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2515), 5, + ACTIONS(267), 5, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2513), 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_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -101911,70 +101529,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88771] = 5, + [88765] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(653), 2, + ACTIONS(2483), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(658), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 14, + ACTIONS(2481), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(651), 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, - [88818] = 3, + [88808] = 4, + ACTIONS(1572), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 5, - anon_sym_as, + ACTIONS(1570), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2505), 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_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, @@ -101993,17 +101610,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88861] = 3, + [88853] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 5, + ACTIONS(267), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2505), 29, + ACTIONS(265), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102033,25 +101650,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88904] = 3, + [88896] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2523), 5, + ACTIONS(267), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2521), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102073,28 +101690,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88947] = 3, + [88939] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 4, + 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(2465), 30, - sym_string_start, + 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_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, @@ -102113,26 +101731,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88990] = 4, + [88984] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1630), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1637), 5, - anon_sym_as, + ACTIONS(2528), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1634), 27, + 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_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102154,25 +101771,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89035] = 3, + [89027] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 5, - anon_sym_as, + ACTIONS(2508), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1659), 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, @@ -102194,25 +101811,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89078] = 3, + [89070] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 5, + ACTIONS(2532), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1626), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102234,17 +101851,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89121] = 3, + [89113] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 5, + ACTIONS(2536), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2505), 29, + ACTIONS(2534), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102274,25 +101891,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89164] = 3, + [89156] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(2540), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 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_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102314,25 +101931,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89207] = 3, + [89199] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(2544), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 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, @@ -102354,16 +101971,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89250] = 3, + [89242] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 4, + ACTIONS(2548), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1626), 29, + ACTIONS(2546), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102371,10 +101989,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -102393,25 +102011,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89292] = 4, - ACTIONS(284), 1, - anon_sym_COLON_EQ, + [89285] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(653), 4, + ACTIONS(2552), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 28, + 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_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102433,58 +102051,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89336] = 4, - ACTIONS(1556), 1, - anon_sym_COLON_EQ, + [89328] = 7, + ACTIONS(1619), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1637), 4, + ACTIONS(1614), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1617), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1634), 28, + ACTIONS(1609), 5, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_COLON, + 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_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, - [89380] = 3, + [89379] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 4, + ACTIONS(2477), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 29, + ACTIONS(2475), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -102493,7 +102117,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, @@ -102516,12 +102139,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2499), 4, + ACTIONS(2477), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 29, + ACTIONS(2475), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102555,12 +102178,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2503), 4, + ACTIONS(2493), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2501), 29, + ACTIONS(2491), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102590,30 +102213,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89506] = 3, + [89506] = 4, + ACTIONS(1572), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 4, + ACTIONS(1614), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2473), 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, @@ -102629,16 +102253,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89548] = 3, + [89550] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2479), 4, + ACTIONS(2497), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2477), 29, + ACTIONS(2495), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102668,55 +102292,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89590] = 3, + [89592] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 4, + ACTIONS(645), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(650), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 29, + ACTIONS(686), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + 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, - [89632] = 3, + [89638] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2515), 4, + ACTIONS(1660), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2513), 29, + ACTIONS(1655), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102746,16 +102372,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89674] = 3, + [89680] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 4, + ACTIONS(2501), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 29, + ACTIONS(2499), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102785,16 +102411,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89716] = 3, + [89722] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 4, + ACTIONS(2520), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1659), 29, + ACTIONS(2518), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102824,16 +102450,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89758] = 3, + [89764] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1694), 4, + ACTIONS(2524), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1689), 29, + ACTIONS(2522), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102863,16 +102489,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89800] = 3, + [89806] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1554), 4, + ACTIONS(1649), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1549), 29, + ACTIONS(1644), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102902,112 +102528,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89842] = 6, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1637), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1640), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - ACTIONS(1630), 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(1634), 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, - [89890] = 7, - ACTIONS(1642), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1637), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1640), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 4, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(1630), 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(1634), 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, - [89940] = 3, + [89848] = 4, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1616), 4, + ACTIONS(645), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 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, @@ -103026,16 +102568,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89982] = 3, + [89892] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1687), 4, + ACTIONS(2512), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1685), 29, + ACTIONS(2510), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103065,23 +102607,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90024] = 3, + [89934] = 4, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2511), 4, + ACTIONS(645), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2509), 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, @@ -103104,65 +102647,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90066] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(653), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(658), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(694), 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(651), 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, - [90112] = 4, - ACTIONS(1556), 1, - anon_sym_COLON_EQ, + [89978] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1637), 4, + ACTIONS(2516), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1634), 28, + ACTIONS(2514), 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, @@ -103185,23 +102686,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90156] = 3, + [90020] = 4, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 4, + ACTIONS(645), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 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, @@ -103224,16 +102726,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90198] = 3, + [90064] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 4, + ACTIONS(267), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 29, + ACTIONS(265), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103263,64 +102765,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90240] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1637), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1640), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1634), 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(1630), 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, - [90286] = 3, + [90106] = 4, + ACTIONS(1572), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2523), 4, + ACTIONS(1614), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2521), 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, @@ -103343,16 +102805,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90328] = 3, + [90150] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2531), 4, + ACTIONS(2467), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2529), 29, + ACTIONS(2465), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103382,16 +102844,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90370] = 3, + [90192] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 4, + ACTIONS(2471), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 29, + ACTIONS(2469), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103421,85 +102883,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90412] = 3, + [90234] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2541), 4, + ACTIONS(645), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(650), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2539), 29, + ACTIONS(686), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [90454] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2545), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2543), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(643), 15, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90496] = 3, + [90280] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -103538,16 +102963,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90538] = 3, + [90322] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2507), 4, + ACTIONS(1716), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2505), 29, + ACTIONS(1714), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103577,16 +103002,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90580] = 3, + [90364] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 4, + ACTIONS(1708), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 29, + ACTIONS(1706), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103616,16 +103041,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90622] = 3, + [90406] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 4, + ACTIONS(1720), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(269), 29, + ACTIONS(1718), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103655,71 +103080,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90664] = 4, - ACTIONS(284), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(653), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(694), 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, - [90708] = 4, - ACTIONS(284), 1, - anon_sym_COLON_EQ, + [90448] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(653), 4, + ACTIONS(1720), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 28, + ACTIONS(1718), 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, @@ -103735,31 +103119,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90752] = 4, - ACTIONS(1556), 1, - anon_sym_COLON_EQ, + [90490] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1637), 4, + ACTIONS(1672), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1634), 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, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -103775,7 +103158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90796] = 3, + [90532] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -103814,16 +103197,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90838] = 3, + [90574] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 4, + ACTIONS(267), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 29, + ACTIONS(265), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103853,16 +103236,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90880] = 3, + [90616] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 4, + ACTIONS(2483), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(2481), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103892,16 +103275,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90922] = 3, + [90658] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 4, + ACTIONS(2528), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 29, + ACTIONS(2526), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103931,28 +103314,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90964] = 4, - ACTIONS(284), 1, - anon_sym_COLON_EQ, + [90700] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(653), 4, + ACTIONS(1570), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 28, + 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -103971,20 +103353,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91008] = 4, - ACTIONS(284), 1, + [90742] = 4, + ACTIONS(280), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(653), 4, + ACTIONS(645), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 28, + ACTIONS(686), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -103992,7 +103375,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, @@ -104011,20 +103393,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91052] = 4, - ACTIONS(284), 1, + [90786] = 4, + ACTIONS(1572), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(653), 4, + ACTIONS(1614), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 28, + ACTIONS(1611), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -104032,7 +103415,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, @@ -104051,16 +103433,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91096] = 3, + [90830] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2527), 4, + ACTIONS(1642), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2525), 29, + ACTIONS(1637), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104090,16 +103472,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91138] = 3, + [90872] = 6, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2519), 4, + ACTIONS(1614), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1617), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2517), 29, + ACTIONS(1609), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + 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, + [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, + ACTIONS(1611), 12, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [90970] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2508), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2506), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104129,16 +103596,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91180] = 3, + [91012] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2535), 4, + ACTIONS(2532), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2533), 29, + ACTIONS(2530), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104168,17 +103635,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91222] = 5, + [91054] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(653), 2, + ACTIONS(1614), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(658), 2, + ACTIONS(1617), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 14, + ACTIONS(1611), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -104193,108 +103660,379 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(651), 15, + ACTIONS(1607), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [91100] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2536), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2534), 29, + 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, - [91268] = 4, + [91142] = 4, + ACTIONS(280), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1689), 3, + ACTIONS(645), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(686), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(1694), 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, + [91186] = 4, + ACTIONS(280), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(645), 4, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(686), 28, + 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, + [91230] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2552), 4, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2550), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_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(1696), 16, + 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_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, - [91311] = 3, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [91314] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 13, + ACTIONS(2544), 4, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2542), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [91356] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2548), 4, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2546), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_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(1666), 19, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [91398] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1635), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1633), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, + anon_sym_in, + anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [91352] = 4, + 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, + [91440] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1659), 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(1664), 13, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [91481] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1720), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104308,10 +104046,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1565), 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, @@ -104325,15 +104066,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91395] = 4, + [91522] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1611), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1616), 13, + ACTIONS(1672), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104347,10 +104084,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1620), 16, + ACTIONS(1670), 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, @@ -104364,7 +104104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91438] = 3, + [91563] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -104402,15 +104142,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91479] = 4, + [91604] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1549), 3, + ACTIONS(686), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1554), 13, + ACTIONS(645), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104424,7 +104164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1565), 16, + ACTIONS(643), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -104441,11 +104181,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91522] = 3, + [91647] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 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, @@ -104459,13 +104203,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1670), 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, @@ -104479,15 +104220,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91563] = 4, + [91690] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(694), 3, + ACTIONS(1644), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(653), 13, + ACTIONS(1649), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104501,7 +104242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(651), 16, + ACTIONS(1653), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -104518,15 +104259,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91606] = 4, + [91733] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(269), 3, + ACTIONS(686), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(271), 13, + ACTIONS(645), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104540,7 +104281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(312), 16, + ACTIONS(643), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -104557,15 +104298,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91649] = 4, + [91776] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(269), 3, + ACTIONS(1655), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(271), 13, + ACTIONS(1660), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104579,7 +104320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(312), 16, + ACTIONS(1664), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -104596,15 +104337,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91692] = 4, + [91819] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1634), 3, + ACTIONS(265), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1637), 13, + ACTIONS(267), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104618,7 +104359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1630), 16, + ACTIONS(308), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -104635,53 +104376,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91735] = 3, + [91862] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1637), 4, + ACTIONS(1635), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1634), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [91776] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(694), 3, + ACTIONS(1633), 19, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LBRACK, - ACTIONS(653), 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, + [91903] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1716), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104695,10 +104432,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(651), 16, + ACTIONS(1714), 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, @@ -104712,11 +104452,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91819] = 3, + [91944] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 13, + ACTIONS(1708), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104730,7 +104470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1677), 19, + ACTIONS(1706), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104750,11 +104490,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91860] = 3, + [91985] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 13, + ACTIONS(1611), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1614), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104768,13 +104512,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1677), 19, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1607), 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, @@ -104788,16 +104529,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91901] = 3, + [92028] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1637), 4, + ACTIONS(1614), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1634), 28, + ACTIONS(1611), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104826,16 +104567,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91942] = 3, + [92069] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1637), 4, + ACTIONS(1614), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1634), 28, + ACTIONS(1611), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104845,10 +104586,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, @@ -104864,11 +104605,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91983] = 3, + [92110] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1687), 13, + ACTIONS(1720), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104882,7 +104623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1685), 19, + ACTIONS(1718), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104902,11 +104643,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92024] = 3, + [92151] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 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, @@ -104920,13 +104665,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1626), 19, + ACTIONS(1581), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [92194] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1565), 3, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1570), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1581), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104940,51 +104721,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92065] = 20, - ACTIONS(320), 1, + [92237] = 20, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2558), 1, + ACTIONS(2554), 1, sym_identifier, - ACTIONS(2560), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2562), 1, + ACTIONS(2558), 1, anon_sym_STAR, - ACTIONS(2564), 1, + ACTIONS(2560), 1, anon_sym_if, - ACTIONS(2566), 1, + ACTIONS(2562), 1, anon_sym_COLON, - ACTIONS(2568), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2570), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2572), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2576), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2578), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2580), 1, + ACTIONS(2576), 1, sym_float, - STATE(1782), 1, + STATE(1791), 1, sym_string, - STATE(1885), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2163), 1, + STATE(2230), 1, sym_case_pattern, - STATE(2739), 1, + STATE(2722), 1, sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2189), 2, + STATE(2150), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2574), 4, + ACTIONS(2570), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1896), 9, + STATE(1944), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -104994,51 +104775,51 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92139] = 20, - ACTIONS(320), 1, + [92311] = 20, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2558), 1, + ACTIONS(2554), 1, sym_identifier, - ACTIONS(2560), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2562), 1, + ACTIONS(2558), 1, anon_sym_STAR, - ACTIONS(2564), 1, + ACTIONS(2560), 1, anon_sym_if, - ACTIONS(2568), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2570), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2572), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2576), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2578), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2580), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2582), 1, + ACTIONS(2578), 1, anon_sym_COLON, - STATE(1782), 1, + STATE(1791), 1, sym_string, - STATE(1885), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2163), 1, + STATE(2230), 1, sym_case_pattern, - STATE(2763), 1, + STATE(2762), 1, sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2189), 2, + STATE(2150), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2574), 4, + ACTIONS(2570), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1896), 9, + STATE(1944), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105048,47 +104829,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92213] = 18, - ACTIONS(763), 1, + [92385] = 18, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2584), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2586), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, + ACTIONS(2590), 1, anon_sym_RBRACK, - ACTIONS(2596), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2600), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2602), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2604), 1, + ACTIONS(2600), 1, sym_float, STATE(1837), 1, sym_string, - STATE(2034), 1, + STATE(2090), 1, sym_dotted_name, - STATE(2158), 1, + STATE(2394), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2286), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2598), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2035), 9, + STATE(2063), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105098,47 +104879,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92281] = 18, - ACTIONS(785), 1, + [92453] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2610), 1, + ACTIONS(2606), 1, anon_sym_RPAREN, - ACTIONS(2612), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2622), 1, sym_float, - STATE(1845), 1, + STATE(1853), 1, sym_string, - STATE(2065), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2385), 1, + STATE(2311), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2411), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2067), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105148,47 +104929,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92349] = 18, - ACTIONS(785), 1, + [92521] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2628), 1, + ACTIONS(2624), 1, anon_sym_RPAREN, - STATE(1845), 1, + STATE(1853), 1, sym_string, - STATE(2065), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2200), 1, + STATE(2311), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2411), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2067), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105198,47 +104979,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92417] = 18, - ACTIONS(785), 1, + [92589] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2630), 1, + ACTIONS(2626), 1, anon_sym_RPAREN, - STATE(1845), 1, + STATE(1853), 1, sym_string, - STATE(2065), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2385), 1, + STATE(2311), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2411), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2067), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105248,47 +105029,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92485] = 18, - ACTIONS(785), 1, + [92657] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2632), 1, + ACTIONS(2628), 1, anon_sym_RPAREN, - STATE(1845), 1, + STATE(1853), 1, sym_string, - STATE(2065), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2385), 1, + STATE(2148), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2411), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2067), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105298,47 +105079,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92553] = 18, - ACTIONS(763), 1, + [92725] = 18, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2584), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2586), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2600), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2602), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2604), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2634), 1, + ACTIONS(2630), 1, anon_sym_RBRACK, STATE(1837), 1, sym_string, - STATE(2034), 1, + STATE(2090), 1, sym_dotted_name, - STATE(2331), 1, + STATE(2149), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2286), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2598), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2035), 9, + STATE(2063), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105348,47 +105129,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92621] = 18, - ACTIONS(763), 1, + [92793] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2584), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2586), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2600), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2602), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2604), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2636), 1, - anon_sym_RBRACK, - STATE(1837), 1, + ACTIONS(2632), 1, + anon_sym_RPAREN, + STATE(1853), 1, sym_string, - STATE(2034), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2201), 1, + STATE(2153), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2286), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2598), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2035), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105398,47 +105179,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92689] = 18, - ACTIONS(785), 1, + [92861] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2638), 1, + ACTIONS(2634), 1, anon_sym_RPAREN, - STATE(1845), 1, + STATE(1853), 1, sym_string, - STATE(2065), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2385), 1, + STATE(2311), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2411), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2067), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105448,47 +105229,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92757] = 18, - ACTIONS(785), 1, + [92929] = 18, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2640), 1, - anon_sym_RPAREN, - STATE(1845), 1, + ACTIONS(2636), 1, + anon_sym_RBRACK, + STATE(1837), 1, sym_string, - STATE(2065), 1, + STATE(2090), 1, sym_dotted_name, - STATE(2120), 1, + STATE(2394), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2411), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2067), 9, + STATE(2063), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105498,47 +105279,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92825] = 18, - ACTIONS(763), 1, + [92997] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2584), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2586), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2600), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2602), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2604), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2642), 1, - anon_sym_RBRACK, - STATE(1837), 1, + ACTIONS(2638), 1, + anon_sym_RPAREN, + STATE(1853), 1, sym_string, - STATE(2034), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2121), 1, + STATE(2229), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2286), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2598), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2035), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105548,47 +105329,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92893] = 18, - ACTIONS(785), 1, + [93065] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2644), 1, + ACTIONS(2640), 1, anon_sym_RPAREN, - STATE(1845), 1, + STATE(1853), 1, sym_string, - STATE(2065), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2385), 1, + STATE(2311), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2411), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2067), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105598,47 +105379,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92961] = 18, - ACTIONS(785), 1, + [93133] = 18, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2646), 1, - anon_sym_RPAREN, - STATE(1845), 1, + ACTIONS(2642), 1, + anon_sym_RBRACK, + STATE(1837), 1, sym_string, - STATE(2065), 1, + STATE(2090), 1, sym_dotted_name, - STATE(2128), 1, + STATE(2394), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2411), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2067), 9, + STATE(2063), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105648,47 +105429,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93029] = 18, - ACTIONS(785), 1, + [93201] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2648), 1, + ACTIONS(2644), 1, anon_sym_RPAREN, - STATE(1845), 1, + STATE(1853), 1, sym_string, - STATE(2065), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2385), 1, + STATE(2311), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2411), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2067), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105698,47 +105479,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93097] = 18, - ACTIONS(763), 1, + [93269] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2584), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2586), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2600), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2602), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2604), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2650), 1, - anon_sym_RBRACK, - STATE(1837), 1, + ACTIONS(2646), 1, + anon_sym_RPAREN, + STATE(1853), 1, sym_string, - STATE(2034), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2331), 1, + STATE(2311), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2286), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2598), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2035), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105748,47 +105529,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93165] = 18, - ACTIONS(785), 1, + [93337] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2652), 1, + ACTIONS(2648), 1, anon_sym_RPAREN, - STATE(1845), 1, + STATE(1853), 1, sym_string, - STATE(2065), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2385), 1, + STATE(2163), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2411), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2067), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105798,47 +105579,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93233] = 18, - ACTIONS(763), 1, + [93405] = 18, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2584), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2586), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2600), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2602), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2604), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2654), 1, + ACTIONS(2650), 1, anon_sym_RBRACK, STATE(1837), 1, sym_string, - STATE(2034), 1, + STATE(2090), 1, sym_dotted_name, - STATE(2331), 1, + STATE(2164), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2286), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2598), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2035), 9, + STATE(2063), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105848,47 +105629,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93301] = 18, - ACTIONS(785), 1, + [93473] = 18, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2656), 1, - anon_sym_RPAREN, - STATE(1845), 1, + ACTIONS(2652), 1, + anon_sym_RBRACK, + STATE(1837), 1, sym_string, - STATE(2065), 1, + STATE(2090), 1, sym_dotted_name, - STATE(2385), 1, + STATE(2394), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2411), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2067), 9, + STATE(2063), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105898,47 +105679,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93369] = 18, - ACTIONS(763), 1, + [93541] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2584), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2586), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2600), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2602), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2604), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2658), 1, - anon_sym_RBRACK, - STATE(1837), 1, + ACTIONS(2654), 1, + anon_sym_RPAREN, + STATE(1853), 1, sym_string, - STATE(2034), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2331), 1, + STATE(2311), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2286), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2598), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2035), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105948,47 +105729,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93437] = 18, - ACTIONS(785), 1, + [93609] = 18, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2660), 1, - anon_sym_RPAREN, - STATE(1845), 1, + ACTIONS(2656), 1, + anon_sym_RBRACK, + STATE(1837), 1, sym_string, - STATE(2065), 1, + STATE(2090), 1, sym_dotted_name, - STATE(2385), 1, + STATE(2394), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2411), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2067), 9, + STATE(2063), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105998,47 +105779,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93505] = 18, - ACTIONS(785), 1, + [93677] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2662), 1, + ACTIONS(2658), 1, anon_sym_RPAREN, - STATE(1845), 1, + STATE(1853), 1, sym_string, - STATE(2065), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2385), 1, + STATE(2311), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2411), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2067), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106048,47 +105829,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93573] = 18, - ACTIONS(785), 1, + [93745] = 18, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2664), 1, - anon_sym_RPAREN, - STATE(1845), 1, + ACTIONS(2660), 1, + anon_sym_RBRACK, + STATE(1837), 1, sym_string, - STATE(2065), 1, + STATE(2090), 1, sym_dotted_name, - STATE(2216), 1, + STATE(2394), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2411), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2067), 9, + STATE(2063), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106098,47 +105879,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93641] = 18, - ACTIONS(785), 1, + [93813] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2666), 1, + ACTIONS(2662), 1, anon_sym_RPAREN, - STATE(1845), 1, + STATE(1853), 1, sym_string, - STATE(2065), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2172), 1, + STATE(2311), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2411), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2067), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106148,47 +105929,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93709] = 18, - ACTIONS(785), 1, + [93881] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2668), 1, + ACTIONS(2664), 1, anon_sym_RPAREN, - STATE(1845), 1, + STATE(1853), 1, sym_string, - STATE(2065), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2385), 1, + STATE(2311), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2411), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2067), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106198,47 +105979,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93777] = 18, - ACTIONS(785), 1, + [93949] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2670), 1, + ACTIONS(2666), 1, anon_sym_RPAREN, - STATE(1845), 1, + STATE(1853), 1, sym_string, - STATE(2065), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2385), 1, + STATE(2311), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2411), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2067), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106248,47 +106029,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93845] = 18, - ACTIONS(763), 1, + [94017] = 18, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2584), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2586), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2600), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2602), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2604), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2672), 1, + ACTIONS(2668), 1, anon_sym_RBRACK, STATE(1837), 1, sym_string, - STATE(2034), 1, + STATE(2090), 1, sym_dotted_name, - STATE(2331), 1, + STATE(2394), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2286), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2598), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2035), 9, + STATE(2063), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106298,47 +106079,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93913] = 18, - ACTIONS(763), 1, + [94085] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2584), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2586), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2600), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2602), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2604), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2674), 1, - anon_sym_RBRACK, - STATE(1837), 1, + ACTIONS(2670), 1, + anon_sym_RPAREN, + STATE(1853), 1, sym_string, - STATE(2034), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2331), 1, + STATE(2311), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2286), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2598), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2035), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106348,47 +106129,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93981] = 18, - ACTIONS(785), 1, + [94153] = 18, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2676), 1, - anon_sym_RPAREN, - STATE(1845), 1, + ACTIONS(2672), 1, + anon_sym_RBRACK, + STATE(1837), 1, sym_string, - STATE(2065), 1, + STATE(2090), 1, sym_dotted_name, - STATE(2131), 1, + STATE(2394), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2411), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2067), 9, + STATE(2063), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106398,47 +106179,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94049] = 18, - ACTIONS(785), 1, + [94221] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2678), 1, + ACTIONS(2674), 1, anon_sym_RPAREN, - STATE(1845), 1, + STATE(1853), 1, sym_string, - STATE(2065), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2157), 1, + STATE(2311), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2411), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2067), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106448,47 +106229,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94117] = 18, - ACTIONS(785), 1, + [94289] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2680), 1, + ACTIONS(2676), 1, anon_sym_RPAREN, - STATE(1845), 1, + STATE(1853), 1, sym_string, - STATE(2065), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2385), 1, + STATE(2188), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2411), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2067), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106498,47 +106279,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94185] = 18, - ACTIONS(763), 1, + [94357] = 18, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2584), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2586), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2600), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2602), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2604), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2682), 1, + ACTIONS(2678), 1, anon_sym_RBRACK, STATE(1837), 1, sym_string, - STATE(2034), 1, + STATE(2090), 1, sym_dotted_name, - STATE(2152), 1, + STATE(2190), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2286), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2598), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2035), 9, + STATE(2063), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106548,47 +106329,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94253] = 18, - ACTIONS(785), 1, + [94425] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2684), 1, + ACTIONS(2680), 1, anon_sym_RPAREN, - STATE(1845), 1, + STATE(1853), 1, sym_string, - STATE(2065), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2160), 1, + STATE(2118), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2411), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2067), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106598,47 +106379,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94321] = 18, - ACTIONS(785), 1, + [94493] = 18, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2686), 1, - anon_sym_RPAREN, - STATE(1845), 1, + ACTIONS(2682), 1, + anon_sym_RBRACK, + STATE(1837), 1, sym_string, - STATE(2065), 1, + STATE(2090), 1, sym_dotted_name, - STATE(2385), 1, + STATE(2119), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2411), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2067), 9, + STATE(2063), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106648,47 +106429,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94389] = 18, - ACTIONS(785), 1, + [94561] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2688), 1, + ACTIONS(2684), 1, anon_sym_RPAREN, - STATE(1845), 1, + STATE(1853), 1, sym_string, - STATE(2065), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2385), 1, + STATE(2311), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2411), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2067), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106698,47 +106479,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94457] = 18, - ACTIONS(763), 1, + [94629] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2584), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2586), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2600), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2602), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2604), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2690), 1, - anon_sym_RBRACK, - STATE(1837), 1, + ACTIONS(2686), 1, + anon_sym_RPAREN, + STATE(1853), 1, sym_string, - STATE(2034), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2331), 1, + STATE(2125), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2286), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2598), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2035), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106748,47 +106529,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94525] = 18, - ACTIONS(785), 1, + [94697] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2692), 1, + ACTIONS(2688), 1, anon_sym_RPAREN, - STATE(1845), 1, + STATE(1853), 1, sym_string, - STATE(2065), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2385), 1, + STATE(2311), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2411), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2067), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106798,47 +106579,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94593] = 18, - ACTIONS(763), 1, + [94765] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2584), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2586), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2600), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2602), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2604), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2694), 1, - anon_sym_RBRACK, - STATE(1837), 1, + ACTIONS(2690), 1, + anon_sym_RPAREN, + STATE(1853), 1, sym_string, - STATE(2034), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2331), 1, + STATE(2170), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2286), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2598), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2035), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106848,45 +106629,45 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94661] = 17, - ACTIONS(692), 1, + [94833] = 17, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2696), 1, + ACTIONS(2554), 1, sym_identifier, - ACTIONS(2698), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2700), 1, + ACTIONS(2558), 1, anon_sym_STAR, - ACTIONS(2702), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2704), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2706), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2710), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2712), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2714), 1, + ACTIONS(2576), 1, sym_float, - STATE(1852), 1, + STATE(1791), 1, sym_string, - STATE(2094), 1, - sym_dotted_name, - STATE(2429), 1, + STATE(1886), 1, sym_case_pattern, + STATE(1978), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2318), 2, + STATE(2150), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2708), 4, + ACTIONS(2570), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2098), 9, + STATE(1944), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106896,45 +106677,45 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94726] = 17, - ACTIONS(763), 1, + [94898] = 17, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2584), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2586), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2600), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2602), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2604), 1, + ACTIONS(2622), 1, sym_float, - STATE(1837), 1, + STATE(1853), 1, sym_string, - STATE(2034), 1, + STATE(2047), 1, sym_dotted_name, - STATE(2331), 1, + STATE(2311), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2286), 2, + STATE(2254), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2598), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2035), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106944,45 +106725,45 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94791] = 17, - ACTIONS(320), 1, + [94963] = 17, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2558), 1, + ACTIONS(2554), 1, sym_identifier, - ACTIONS(2560), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2562), 1, + ACTIONS(2558), 1, anon_sym_STAR, - ACTIONS(2568), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2570), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2572), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2576), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2578), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2580), 1, + ACTIONS(2576), 1, sym_float, - STATE(1782), 1, + STATE(1791), 1, sym_string, - STATE(1885), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2163), 1, + STATE(2230), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2189), 2, + STATE(2150), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2574), 4, + ACTIONS(2570), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1896), 9, + STATE(1944), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106992,45 +106773,45 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94856] = 17, - ACTIONS(320), 1, + [95028] = 17, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2558), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2560), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2562), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2568), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2570), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2572), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2576), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2578), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2580), 1, + ACTIONS(2600), 1, sym_float, - STATE(1782), 1, + STATE(1837), 1, sym_string, - STATE(1885), 1, + STATE(2090), 1, sym_dotted_name, - STATE(1891), 1, + STATE(2394), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2189), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2574), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1896), 9, + STATE(2063), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107040,45 +106821,45 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94921] = 17, - ACTIONS(785), 1, + [95093] = 17, + ACTIONS(684), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2692), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2694), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2700), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2702), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2706), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2708), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2710), 1, sym_float, - STATE(1845), 1, + STATE(1873), 1, sym_string, - STATE(2065), 1, + STATE(2048), 1, sym_dotted_name, - STATE(2385), 1, + STATE(2307), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2411), 2, + STATE(2355), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2620), 4, + ACTIONS(2704), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2067), 9, + STATE(2051), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107088,46 +106869,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94986] = 18, - ACTIONS(320), 1, + [95158] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2560), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2570), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2572), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2576), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2578), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2580), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2700), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2702), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2716), 1, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2720), 1, + ACTIONS(2716), 1, anon_sym_RBRACE, - STATE(1782), 1, + STATE(1791), 1, sym_string, - STATE(1885), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2187), 1, + STATE(2031), 1, sym_splat_pattern, - STATE(2593), 1, + STATE(2303), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2718), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2392), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107136,46 +106917,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95052] = 18, - ACTIONS(320), 1, + [95224] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2560), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2570), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2572), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2576), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2578), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2580), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2700), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2702), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2716), 1, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2722), 1, + ACTIONS(2718), 1, anon_sym_RBRACE, - STATE(1782), 1, + STATE(1791), 1, sym_string, - STATE(1885), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2187), 1, + STATE(2116), 1, sym_splat_pattern, - STATE(2593), 1, + STATE(2526), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2718), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2392), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107184,46 +106965,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95118] = 18, - ACTIONS(320), 1, + [95290] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2560), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2570), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2572), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2576), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2578), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2580), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2700), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2702), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2716), 1, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2724), 1, + ACTIONS(2720), 1, anon_sym_RBRACE, - STATE(1782), 1, + STATE(1791), 1, sym_string, - STATE(1885), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2187), 1, + STATE(2116), 1, sym_splat_pattern, - STATE(2593), 1, + STATE(2526), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2718), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2392), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107232,46 +107013,142 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95184] = 18, - ACTIONS(320), 1, + [95356] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2560), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2570), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, + ACTIONS(2568), 1, + anon_sym_DASH, ACTIONS(2572), 1, + anon_sym_LBRACE, + ACTIONS(2574), 1, + sym_integer, + ACTIONS(2576), 1, + sym_float, + ACTIONS(2696), 1, + anon_sym_STAR, + ACTIONS(2698), 1, + anon_sym_STAR_STAR, + ACTIONS(2712), 1, + sym_identifier, + ACTIONS(2722), 1, + anon_sym_RBRACE, + STATE(1791), 1, + sym_string, + STATE(1978), 1, + sym_dotted_name, + STATE(2116), 1, + sym_splat_pattern, + STATE(2526), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2714), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2358), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [95422] = 18, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(2556), 1, + anon_sym_LPAREN, + ACTIONS(2566), 1, + anon_sym_LBRACK, + ACTIONS(2568), 1, anon_sym_DASH, + ACTIONS(2572), 1, + anon_sym_LBRACE, + ACTIONS(2574), 1, + sym_integer, ACTIONS(2576), 1, + sym_float, + ACTIONS(2696), 1, + anon_sym_STAR, + ACTIONS(2698), 1, + anon_sym_STAR_STAR, + ACTIONS(2712), 1, + sym_identifier, + ACTIONS(2724), 1, + anon_sym_RBRACE, + STATE(1791), 1, + sym_string, + STATE(1978), 1, + sym_dotted_name, + STATE(2116), 1, + sym_splat_pattern, + STATE(2526), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2714), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2358), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [95488] = 18, + ACTIONS(316), 1, + sym_string_start, + ACTIONS(2556), 1, + anon_sym_LPAREN, + ACTIONS(2566), 1, + anon_sym_LBRACK, + ACTIONS(2568), 1, + anon_sym_DASH, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2578), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2580), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2700), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2702), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2716), 1, + ACTIONS(2712), 1, sym_identifier, ACTIONS(2726), 1, anon_sym_RBRACE, - STATE(1782), 1, + STATE(1791), 1, sym_string, - STATE(1885), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2187), 1, + STATE(2116), 1, sym_splat_pattern, - STATE(2593), 1, + STATE(2526), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2718), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2392), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107280,46 +107157,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95250] = 18, - ACTIONS(320), 1, + [95554] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2560), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2570), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2572), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2576), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2578), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2580), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2700), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2702), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2716), 1, + ACTIONS(2712), 1, sym_identifier, ACTIONS(2728), 1, anon_sym_RBRACE, - STATE(1782), 1, + STATE(1791), 1, sym_string, - STATE(1885), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2187), 1, + STATE(2116), 1, sym_splat_pattern, - STATE(2593), 1, + STATE(2526), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2718), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2392), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107328,46 +107205,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95316] = 18, - ACTIONS(320), 1, + [95620] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2560), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2570), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2572), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2576), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2578), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2580), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2700), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2702), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2716), 1, + ACTIONS(2712), 1, sym_identifier, ACTIONS(2730), 1, anon_sym_RBRACE, - STATE(1782), 1, + STATE(1791), 1, sym_string, - STATE(1885), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2187), 1, + STATE(2116), 1, sym_splat_pattern, - STATE(2593), 1, + STATE(2526), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2718), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2392), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107376,46 +107253,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95382] = 18, - ACTIONS(320), 1, + [95686] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2560), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2570), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2572), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2576), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2578), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2580), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2700), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2702), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2716), 1, + ACTIONS(2712), 1, sym_identifier, ACTIONS(2732), 1, anon_sym_RBRACE, - STATE(1782), 1, + STATE(1791), 1, sym_string, - STATE(1885), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2046), 1, + STATE(2116), 1, sym_splat_pattern, - STATE(2323), 1, + STATE(2526), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2718), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2392), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107424,46 +107301,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95448] = 18, - ACTIONS(320), 1, + [95752] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2560), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2570), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2572), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2576), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2578), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2580), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2700), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2702), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2716), 1, + ACTIONS(2712), 1, sym_identifier, ACTIONS(2734), 1, anon_sym_RBRACE, - STATE(1782), 1, + STATE(1791), 1, sym_string, - STATE(1885), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2187), 1, + STATE(2116), 1, sym_splat_pattern, - STATE(2593), 1, + STATE(2526), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2718), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2392), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107472,46 +107349,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95514] = 18, - ACTIONS(320), 1, + [95818] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2560), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2570), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2572), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2576), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2578), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2580), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2700), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2702), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2716), 1, + ACTIONS(2712), 1, sym_identifier, ACTIONS(2736), 1, anon_sym_RBRACE, - STATE(1782), 1, + STATE(1791), 1, sym_string, - STATE(1885), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2187), 1, + STATE(2061), 1, sym_splat_pattern, - STATE(2593), 1, + STATE(2258), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2718), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2392), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107520,46 +107397,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95580] = 18, - ACTIONS(320), 1, + [95884] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2560), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2570), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2572), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2576), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2578), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2580), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2700), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2702), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2716), 1, + ACTIONS(2712), 1, sym_identifier, ACTIONS(2738), 1, anon_sym_RBRACE, - STATE(1782), 1, + STATE(1791), 1, sym_string, - STATE(1885), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2187), 1, + STATE(2116), 1, sym_splat_pattern, - STATE(2593), 1, + STATE(2526), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2718), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2392), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107568,46 +107445,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95646] = 18, - ACTIONS(320), 1, + [95950] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2560), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2570), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2572), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2576), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2578), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2580), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2700), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2702), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2716), 1, + ACTIONS(2712), 1, sym_identifier, ACTIONS(2740), 1, anon_sym_RBRACE, - STATE(1782), 1, + STATE(1791), 1, sym_string, - STATE(1885), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2013), 1, + STATE(2116), 1, sym_splat_pattern, - STATE(2394), 1, + STATE(2526), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2718), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2392), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107616,46 +107493,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95712] = 18, - ACTIONS(320), 1, + [96016] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2560), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2570), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2572), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2576), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2578), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2580), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2700), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2702), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2716), 1, + ACTIONS(2712), 1, sym_identifier, ACTIONS(2742), 1, anon_sym_RBRACE, - STATE(1782), 1, + STATE(1791), 1, sym_string, - STATE(1885), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2187), 1, + STATE(2116), 1, sym_splat_pattern, - STATE(2593), 1, + STATE(2526), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2718), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2392), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107664,46 +107541,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95778] = 18, - ACTIONS(320), 1, + [96082] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2560), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2570), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2572), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2576), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2578), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2580), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2700), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2702), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2716), 1, + ACTIONS(2712), 1, sym_identifier, ACTIONS(2744), 1, anon_sym_RBRACE, - STATE(1782), 1, + STATE(1791), 1, sym_string, - STATE(1885), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2187), 1, + STATE(2116), 1, sym_splat_pattern, - STATE(2593), 1, + STATE(2526), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2718), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2392), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107712,46 +107589,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95844] = 18, - ACTIONS(320), 1, + [96148] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2560), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2570), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2572), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2576), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2578), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2580), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2700), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2702), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2716), 1, + ACTIONS(2712), 1, sym_identifier, ACTIONS(2746), 1, anon_sym_RBRACE, - STATE(1782), 1, + STATE(1791), 1, sym_string, - STATE(1885), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2028), 1, + STATE(2116), 1, sym_splat_pattern, - STATE(2268), 1, + STATE(2526), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2718), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2392), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107760,46 +107637,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95910] = 18, - ACTIONS(320), 1, + [96214] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2560), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2570), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2572), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2576), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2578), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2580), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2700), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2702), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2716), 1, + ACTIONS(2712), 1, sym_identifier, ACTIONS(2748), 1, anon_sym_RBRACE, - STATE(1782), 1, + STATE(1791), 1, sym_string, - STATE(1885), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2187), 1, + STATE(2058), 1, sym_splat_pattern, - STATE(2593), 1, + STATE(2360), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2718), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2392), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107808,46 +107685,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95976] = 18, - ACTIONS(320), 1, + [96280] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2560), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2570), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2572), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2576), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2578), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2580), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2700), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2702), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2716), 1, + ACTIONS(2712), 1, sym_identifier, ACTIONS(2750), 1, anon_sym_RBRACE, - STATE(1782), 1, + STATE(1791), 1, sym_string, - STATE(1885), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2187), 1, + STATE(2042), 1, sym_splat_pattern, - STATE(2593), 1, + STATE(2331), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2718), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2392), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107856,46 +107733,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96042] = 18, - ACTIONS(320), 1, + [96346] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2560), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2570), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2572), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2576), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2578), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2580), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2700), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2702), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2716), 1, + ACTIONS(2712), 1, sym_identifier, ACTIONS(2752), 1, anon_sym_RBRACE, - STATE(1782), 1, + STATE(1791), 1, sym_string, - STATE(1885), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2187), 1, + STATE(2116), 1, sym_splat_pattern, - STATE(2593), 1, + STATE(2526), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2718), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2392), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107904,46 +107781,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96108] = 18, - ACTIONS(320), 1, + [96412] = 18, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2560), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2570), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2572), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2576), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2578), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2580), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2700), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2702), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2716), 1, + ACTIONS(2712), 1, sym_identifier, ACTIONS(2754), 1, anon_sym_RBRACE, - STATE(1782), 1, + STATE(1791), 1, sym_string, - STATE(1885), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2187), 1, + STATE(2116), 1, sym_splat_pattern, - STATE(2593), 1, + STATE(2526), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2718), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2392), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107952,46 +107829,44 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96174] = 18, - ACTIONS(320), 1, + [96478] = 17, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2560), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2570), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2572), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2576), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2578), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2580), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2700), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2702), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2716), 1, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2756), 1, - anon_sym_RBRACE, - STATE(1782), 1, + STATE(1791), 1, sym_string, - STATE(1885), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2014), 1, + STATE(2116), 1, sym_splat_pattern, - STATE(2416), 1, + STATE(2526), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2718), 4, + ACTIONS(2714), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2392), 8, + STATE(2358), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108000,134 +107875,126 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96240] = 18, - ACTIONS(320), 1, + [96541] = 15, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2560), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2570), 1, + ACTIONS(2558), 1, + anon_sym_STAR, + ACTIONS(2564), 1, + anon_sym_STAR_STAR, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2572), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2576), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2578), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2580), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2700), 1, - anon_sym_STAR, - ACTIONS(2702), 1, - anon_sym_STAR_STAR, - ACTIONS(2716), 1, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2758), 1, - anon_sym_RBRACE, - STATE(1782), 1, + STATE(1791), 1, sym_string, - STATE(1885), 1, + STATE(1978), 1, sym_dotted_name, - STATE(2187), 1, - sym_splat_pattern, - STATE(2593), 1, - sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2718), 4, + ACTIONS(2756), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2392), 8, + STATE(1918), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, sym__tuple_pattern, sym_dict_pattern, + sym_splat_pattern, sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96306] = 17, - ACTIONS(320), 1, + [96599] = 15, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2560), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2570), 1, + ACTIONS(2584), 1, + anon_sym_STAR, + ACTIONS(2586), 1, + anon_sym_STAR_STAR, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2572), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2576), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2578), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2580), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2700), 1, - anon_sym_STAR, - ACTIONS(2702), 1, - anon_sym_STAR_STAR, - ACTIONS(2716), 1, + ACTIONS(2758), 1, sym_identifier, - STATE(1782), 1, + STATE(1837), 1, sym_string, - STATE(1885), 1, + STATE(2090), 1, sym_dotted_name, - STATE(2187), 1, - sym_splat_pattern, - STATE(2593), 1, - sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2718), 4, + ACTIONS(2760), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2392), 8, + STATE(2078), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, sym__tuple_pattern, sym_dict_pattern, + sym_splat_pattern, sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96369] = 15, - ACTIONS(692), 1, + [96657] = 15, + ACTIONS(684), 1, sym_string_start, - ACTIONS(2698), 1, + ACTIONS(2694), 1, anon_sym_LPAREN, - ACTIONS(2700), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2702), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2704), 1, + ACTIONS(2700), 1, anon_sym_LBRACK, - ACTIONS(2706), 1, + ACTIONS(2702), 1, anon_sym_DASH, - ACTIONS(2710), 1, + ACTIONS(2706), 1, anon_sym_LBRACE, - ACTIONS(2712), 1, + ACTIONS(2708), 1, sym_integer, - ACTIONS(2714), 1, + ACTIONS(2710), 1, sym_float, - ACTIONS(2760), 1, + ACTIONS(2762), 1, sym_identifier, - STATE(1852), 1, + STATE(1873), 1, sym_string, - STATE(2094), 1, + STATE(2048), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2762), 4, + ACTIONS(2764), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1999), 9, + STATE(2054), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108137,40 +108004,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96427] = 15, - ACTIONS(692), 1, + [96715] = 15, + ACTIONS(684), 1, sym_string_start, - ACTIONS(2698), 1, + ACTIONS(2694), 1, anon_sym_LPAREN, - ACTIONS(2700), 1, + ACTIONS(2696), 1, anon_sym_STAR, - ACTIONS(2702), 1, + ACTIONS(2698), 1, anon_sym_STAR_STAR, - ACTIONS(2704), 1, + ACTIONS(2700), 1, anon_sym_LBRACK, - ACTIONS(2706), 1, + ACTIONS(2702), 1, anon_sym_DASH, - ACTIONS(2710), 1, + ACTIONS(2706), 1, anon_sym_LBRACE, - ACTIONS(2712), 1, + ACTIONS(2708), 1, sym_integer, - ACTIONS(2714), 1, + ACTIONS(2710), 1, sym_float, - ACTIONS(2760), 1, + ACTIONS(2762), 1, sym_identifier, - STATE(1852), 1, + STATE(1873), 1, sym_string, - STATE(2094), 1, + STATE(2048), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2764), 4, + ACTIONS(2766), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2000), 9, + STATE(2050), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108180,32 +108047,32 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96485] = 9, - ACTIONS(2104), 1, + [96773] = 9, + ACTIONS(2098), 1, anon_sym_not, - ACTIONS(2110), 1, + ACTIONS(2104), 1, anon_sym_is, - ACTIONS(2768), 1, + ACTIONS(2770), 1, anon_sym_EQ, STATE(1550), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2112), 2, + ACTIONS(2106), 2, anon_sym_LT, anon_sym_GT, - STATE(909), 2, + STATE(873), 2, sym__not_in, sym__is_not, - ACTIONS(2090), 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(2766), 11, + ACTIONS(2768), 11, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -108217,40 +108084,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [96531] = 15, - ACTIONS(320), 1, + [96819] = 15, + ACTIONS(316), 1, sym_string_start, - ACTIONS(2560), 1, + ACTIONS(2556), 1, anon_sym_LPAREN, - ACTIONS(2562), 1, + ACTIONS(2558), 1, anon_sym_STAR, - ACTIONS(2568), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2570), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2572), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2576), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2578), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2580), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2712), 1, sym_identifier, - STATE(1782), 1, + STATE(1791), 1, sym_string, - STATE(1885), 1, + STATE(1978), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2770), 4, + ACTIONS(2772), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1892), 9, + STATE(1934), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108260,30 +108127,30 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96589] = 15, - ACTIONS(785), 1, + [96877] = 15, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2608), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2612), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2616), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2618), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2622), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2624), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2626), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2772), 1, + ACTIONS(2758), 1, sym_identifier, - STATE(1845), 1, + STATE(1837), 1, sym_string, - STATE(2065), 1, + STATE(2090), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, @@ -108293,50 +108160,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1990), 9, - sym__simple_pattern, - sym_union_pattern, - sym__list_pattern, - sym__tuple_pattern, - sym_dict_pattern, - sym_splat_pattern, - sym_class_pattern, - sym_complex_pattern, - sym_concatenated_string, - [96647] = 15, - ACTIONS(785), 1, - sym_string_start, - ACTIONS(2608), 1, - anon_sym_LPAREN, - ACTIONS(2612), 1, - anon_sym_STAR, - ACTIONS(2614), 1, - anon_sym_STAR_STAR, - ACTIONS(2616), 1, - anon_sym_LBRACK, - ACTIONS(2618), 1, - anon_sym_DASH, - ACTIONS(2622), 1, - anon_sym_LBRACE, - ACTIONS(2624), 1, - sym_integer, - ACTIONS(2626), 1, - sym_float, - ACTIONS(2772), 1, - sym_identifier, - STATE(1845), 1, - sym_string, - STATE(2065), 1, - sym_dotted_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2776), 4, - anon_sym__, - sym_true, - sym_false, - sym_none, - STATE(1991), 9, + STATE(2000), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108346,30 +108170,30 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96705] = 15, - ACTIONS(320), 1, + [96935] = 15, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2560), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2562), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2568), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2570), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2572), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2576), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2578), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2580), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2776), 1, sym_identifier, - STATE(1782), 1, + STATE(1853), 1, sym_string, - STATE(1885), 1, + STATE(2047), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, @@ -108379,7 +108203,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1900), 9, + STATE(2087), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108389,40 +108213,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96763] = 15, - ACTIONS(763), 1, + [96993] = 15, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2586), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2590), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2592), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2596), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2600), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2602), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2604), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2780), 1, + ACTIONS(2776), 1, sym_identifier, - STATE(1837), 1, + STATE(1853), 1, sym_string, - STATE(2034), 1, + STATE(2047), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2782), 4, + ACTIONS(2780), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2047), 9, + STATE(2101), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108432,32 +108256,32 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96821] = 9, - ACTIONS(2789), 1, + [97051] = 9, + ACTIONS(2787), 1, anon_sym_EQ, - ACTIONS(2791), 1, + ACTIONS(2789), 1, anon_sym_not, - ACTIONS(2794), 1, + ACTIONS(2792), 1, anon_sym_is, STATE(1550), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2797), 2, + ACTIONS(2795), 2, anon_sym_LT, anon_sym_GT, - STATE(909), 2, + STATE(873), 2, sym__not_in, sym__is_not, - ACTIONS(2786), 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(2784), 11, + ACTIONS(2782), 11, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -108469,75 +108293,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [96867] = 15, - ACTIONS(763), 1, - sym_string_start, - ACTIONS(2586), 1, - anon_sym_LPAREN, - ACTIONS(2588), 1, - anon_sym_STAR, - ACTIONS(2590), 1, - anon_sym_STAR_STAR, - ACTIONS(2592), 1, - anon_sym_LBRACK, - ACTIONS(2596), 1, - anon_sym_DASH, - ACTIONS(2600), 1, - anon_sym_LBRACE, - ACTIONS(2602), 1, - sym_integer, - ACTIONS(2604), 1, - sym_float, - ACTIONS(2780), 1, - sym_identifier, - STATE(1837), 1, - sym_string, - STATE(2034), 1, - sym_dotted_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2800), 4, - anon_sym__, - sym_true, - sym_false, - sym_none, - STATE(2048), 9, - sym__simple_pattern, - sym_union_pattern, - sym__list_pattern, - sym__tuple_pattern, - sym_dict_pattern, - sym_splat_pattern, - sym_class_pattern, - sym_complex_pattern, - sym_concatenated_string, - [96925] = 9, - ACTIONS(2789), 1, + [97097] = 9, + ACTIONS(2787), 1, anon_sym_as, - ACTIONS(2791), 1, + ACTIONS(2789), 1, anon_sym_not, - ACTIONS(2805), 1, + ACTIONS(2801), 1, anon_sym_is, - STATE(1552), 1, + STATE(1551), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2808), 2, + ACTIONS(2804), 2, anon_sym_LT, anon_sym_GT, - STATE(933), 2, + STATE(914), 2, sym__not_in, sym__is_not, - ACTIONS(2802), 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(2784), 10, + ACTIONS(2782), 10, anon_sym_DOT, anon_sym_COMMA, anon_sym_if, @@ -108548,32 +108329,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [96970] = 9, - ACTIONS(2104), 1, + [97142] = 9, + ACTIONS(2098), 1, anon_sym_not, - ACTIONS(2278), 1, + ACTIONS(2134), 1, anon_sym_is, - ACTIONS(2768), 1, + ACTIONS(2770), 1, anon_sym_as, - STATE(1552), 1, + STATE(1551), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2280), 2, + ACTIONS(2136), 2, anon_sym_LT, anon_sym_GT, - STATE(933), 2, + STATE(914), 2, sym__not_in, sym__is_not, - ACTIONS(2262), 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(2766), 10, + ACTIONS(2768), 10, anon_sym_DOT, anon_sym_COMMA, anon_sym_if, @@ -108584,32 +108365,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97015] = 9, - ACTIONS(2789), 1, + [97187] = 9, + ACTIONS(2787), 1, anon_sym_EQ, - ACTIONS(2791), 1, + ACTIONS(2789), 1, anon_sym_not, - ACTIONS(2814), 1, + ACTIONS(2810), 1, anon_sym_is, - STATE(1554), 1, + STATE(1553), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2817), 2, + ACTIONS(2813), 2, anon_sym_LT, anon_sym_GT, - STATE(893), 2, + STATE(892), 2, sym__not_in, sym__is_not, - ACTIONS(2811), 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(2784), 9, + ACTIONS(2782), 9, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, @@ -108619,102 +108400,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97059] = 9, - ACTIONS(2104), 1, + [97231] = 9, + ACTIONS(2098), 1, anon_sym_not, - ACTIONS(2330), 1, + ACTIONS(2357), 1, anon_sym_is, - ACTIONS(2768), 1, + ACTIONS(2770), 1, anon_sym_EQ, - STATE(1554), 1, + STATE(1556), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2332), 2, + ACTIONS(2359), 2, anon_sym_LT, anon_sym_GT, - STATE(893), 2, + STATE(927), 2, sym__not_in, sym__is_not, - ACTIONS(2314), 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(2766), 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, - [97103] = 9, - ACTIONS(2104), 1, + [97275] = 9, + ACTIONS(2098), 1, anon_sym_not, - ACTIONS(2365), 1, + ACTIONS(2385), 1, anon_sym_is, - ACTIONS(2768), 1, + ACTIONS(2770), 1, anon_sym_EQ, - STATE(1557), 1, + STATE(1553), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2367), 2, + ACTIONS(2387), 2, anon_sym_LT, anon_sym_GT, - STATE(859), 2, + STATE(892), 2, sym__not_in, sym__is_not, - ACTIONS(2349), 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(2766), 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, - [97147] = 9, - ACTIONS(2789), 1, + [97319] = 9, + ACTIONS(2787), 1, anon_sym_EQ, - ACTIONS(2791), 1, + ACTIONS(2789), 1, anon_sym_not, - ACTIONS(2823), 1, + ACTIONS(2819), 1, anon_sym_is, - STATE(1557), 1, + STATE(1556), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2826), 2, + ACTIONS(2822), 2, anon_sym_LT, anon_sym_GT, - STATE(859), 2, + STATE(927), 2, sym__not_in, sym__is_not, - ACTIONS(2820), 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(2784), 9, + ACTIONS(2782), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -108724,66 +108505,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97191] = 9, - ACTIONS(2104), 1, + [97363] = 9, + ACTIONS(2787), 1, + anon_sym_as, + ACTIONS(2789), 1, anon_sym_not, - ACTIONS(2222), 1, + ACTIONS(2828), 1, anon_sym_is, - ACTIONS(2768), 1, - anon_sym_EQ, - STATE(1559), 1, + STATE(1557), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2224), 2, + ACTIONS(2831), 2, anon_sym_LT, anon_sym_GT, - STATE(858), 2, + STATE(861), 2, sym__not_in, sym__is_not, - ACTIONS(2206), 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(2766), 8, + ACTIONS(2782), 8, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - sym_type_conversion, - [97234] = 9, - ACTIONS(2789), 1, - anon_sym_EQ, - ACTIONS(2791), 1, + [97406] = 9, + ACTIONS(2098), 1, anon_sym_not, - ACTIONS(2832), 1, + ACTIONS(2242), 1, anon_sym_is, - STATE(1559), 1, + ACTIONS(2770), 1, + anon_sym_EQ, + STATE(1561), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2835), 2, + ACTIONS(2244), 2, anon_sym_LT, anon_sym_GT, - STATE(858), 2, + STATE(856), 2, sym__not_in, sym__is_not, - ACTIONS(2829), 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(2784), 8, + ACTIONS(2768), 8, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -108792,30 +108573,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [97277] = 8, - ACTIONS(2791), 1, + [97449] = 8, + ACTIONS(2098), 1, anon_sym_not, - ACTIONS(2841), 1, + ACTIONS(2431), 1, anon_sym_is, - STATE(1560), 1, + STATE(1562), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 2, + ACTIONS(2433), 2, anon_sym_LT, anon_sym_GT, - STATE(927), 2, + STATE(947), 2, sym__not_in, sym__is_not, - ACTIONS(2838), 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(2784), 9, + ACTIONS(2768), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -108825,32 +108606,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97318] = 9, - ACTIONS(2104), 1, + [97490] = 9, + ACTIONS(2098), 1, anon_sym_not, - ACTIONS(2184), 1, + ACTIONS(2212), 1, anon_sym_is, - ACTIONS(2768), 1, + ACTIONS(2770), 1, anon_sym_as, - STATE(1563), 1, + STATE(1557), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2186), 2, + ACTIONS(2214), 2, anon_sym_LT, anon_sym_GT, - STATE(908), 2, + STATE(861), 2, sym__not_in, sym__is_not, - ACTIONS(2168), 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(2766), 8, + ACTIONS(2768), 8, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, @@ -108859,120 +108640,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [97361] = 8, - ACTIONS(2104), 1, - anon_sym_not, - ACTIONS(2440), 1, - anon_sym_is, - STATE(1560), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2442), 2, - anon_sym_LT, - anon_sym_GT, - STATE(927), 2, - sym__not_in, - sym__is_not, - ACTIONS(2424), 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(2766), 9, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [97402] = 9, + [97533] = 9, + ACTIONS(2787), 1, + anon_sym_EQ, ACTIONS(2789), 1, - anon_sym_as, - ACTIONS(2791), 1, anon_sym_not, - ACTIONS(2850), 1, + ACTIONS(2837), 1, anon_sym_is, - STATE(1563), 1, + STATE(1561), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2853), 2, + ACTIONS(2840), 2, anon_sym_LT, anon_sym_GT, - STATE(908), 2, + STATE(856), 2, sym__not_in, sym__is_not, - ACTIONS(2847), 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(2784), 8, + ACTIONS(2782), 8, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [97445] = 9, + sym_type_conversion, + [97576] = 8, ACTIONS(2789), 1, - anon_sym_as, - ACTIONS(2791), 1, anon_sym_not, - ACTIONS(2859), 1, + ACTIONS(2846), 1, anon_sym_is, - STATE(1564), 1, + STATE(1562), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2862), 2, + ACTIONS(2849), 2, anon_sym_LT, anon_sym_GT, - STATE(914), 2, + STATE(947), 2, sym__not_in, sym__is_not, - ACTIONS(2856), 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(2784), 7, - anon_sym_RPAREN, + ACTIONS(2782), 9, + anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97487] = 4, + [97617] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 2, + ACTIONS(267), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(312), 5, + ACTIONS(308), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(269), 14, + ACTIONS(265), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -108987,48 +108735,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97519] = 4, + [97649] = 9, + ACTIONS(2787), 1, + anon_sym_as, + ACTIONS(2789), 1, + anon_sym_not, + ACTIONS(2855), 1, + anon_sym_is, + STATE(1564), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(312), 5, + ACTIONS(2858), 2, + anon_sym_LT, + anon_sym_GT, + STATE(854), 2, + sym__not_in, + sym__is_not, + ACTIONS(2852), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2782), 7, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(269), 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, - [97551] = 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [97691] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, + ACTIONS(1660), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1565), 5, + ACTIONS(1664), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(1659), 14, + ACTIONS(1655), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109043,48 +108796,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97583] = 4, + [97723] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1554), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1565), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(1549), 14, - anon_sym_DOT, + ACTIONS(2863), 10, + sym_string_start, anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [97615] = 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, - ACTIONS(1694), 2, + ACTIONS(1570), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1696), 5, + ACTIONS(1581), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(1689), 14, + ACTIONS(1565), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109099,20 +108851,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97647] = 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(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_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [97827] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1616), 2, + ACTIONS(1642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1620), 5, + ACTIONS(1581), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(1611), 14, + ACTIONS(1637), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109127,7 +108912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97679] = 3, + [97859] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -109154,78 +108939,74 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [97709] = 9, - ACTIONS(2104), 1, - anon_sym_not, - ACTIONS(2393), 1, - anon_sym_is, - ACTIONS(2768), 1, - anon_sym_as, - STATE(1564), 1, - aux_sym_comparison_operator_repeat1, + [97889] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2395), 2, - anon_sym_LT, - anon_sym_GT, - STATE(914), 2, - sym__not_in, - sym__is_not, - ACTIONS(2377), 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(2766), 7, - anon_sym_RPAREN, + ACTIONS(1649), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1653), 5, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [97751] = 3, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + 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, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [97921] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2871), 10, - sym_string_start, - anon_sym_LPAREN, + 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_LBRACE, + anon_sym_PIPE, anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(2869), 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, - [97781] = 4, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [97953] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 2, + ACTIONS(267), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(651), 3, + ACTIONS(1371), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(269), 14, + ACTIONS(265), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109240,15 +109021,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97811] = 4, - ACTIONS(2875), 1, + [97983] = 4, + ACTIONS(2869), 1, anon_sym_COMMA, - STATE(1575), 1, + STATE(1576), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2873), 17, + ACTIONS(971), 17, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -109266,15 +109047,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [97841] = 4, - ACTIONS(2878), 1, + [98013] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(267), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(643), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + 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, + [98043] = 4, + ACTIONS(2873), 1, anon_sym_COMMA, - STATE(1575), 1, + STATE(1576), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(979), 17, + ACTIONS(2871), 17, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -109292,18 +109099,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [97871] = 4, + [98073] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1554), 2, + ACTIONS(267), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1630), 3, + ACTIONS(643), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1549), 14, + ACTIONS(265), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109318,18 +109125,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97901] = 4, + [98103] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 2, + ACTIONS(267), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(651), 3, + ACTIONS(1371), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(269), 14, + ACTIONS(265), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109344,18 +109151,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97931] = 4, + [98133] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 2, + ACTIONS(1570), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1423), 3, + ACTIONS(1607), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(269), 14, + ACTIONS(1565), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109370,18 +109177,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97961] = 4, + [98163] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 2, + ACTIONS(1570), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1423), 3, + ACTIONS(2876), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(269), 14, + ACTIONS(1565), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109396,18 +109203,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97991] = 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(2337), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2339), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2349), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1386), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2347), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [98240] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1554), 2, + ACTIONS(1660), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2880), 3, - anon_sym_RPAREN, + ACTIONS(1664), 2, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1549), 14, + anon_sym_RBRACK, + ACTIONS(1655), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109422,17 +109262,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98021] = 4, + [98269] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 2, + ACTIONS(267), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1423), 2, + ACTIONS(308), 2, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(269), 14, + anon_sym_RBRACK, + ACTIONS(265), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109447,17 +109287,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98050] = 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(1554), 2, + ACTIONS(267), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1565), 2, - anon_sym_RPAREN, + ACTIONS(308), 2, anon_sym_COMMA, - ACTIONS(1549), 14, + anon_sym_RBRACK, + ACTIONS(265), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109472,17 +109335,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98079] = 4, + [98352] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1694), 2, + ACTIONS(1581), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1696), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1689), 14, + ACTIONS(1637), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109497,17 +109360,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98108] = 4, + [98381] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1616), 2, + ACTIONS(1570), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1620), 2, - anon_sym_RPAREN, + ACTIONS(1581), 2, anon_sym_COMMA, - ACTIONS(1611), 14, + anon_sym_RBRACK, + ACTIONS(1565), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109522,86 +109385,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98137] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2882), 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, - [98162] = 2, + [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(2884), 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, - [98187] = 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, + [98457] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2873), 18, - sym__newline, - anon_sym_SEMI, + ACTIONS(1581), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [98212] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(271), 2, + ACTIONS(1642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(312), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(269), 14, + ACTIONS(1637), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109616,17 +109444,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98241] = 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(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, + [98533] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 2, + ACTIONS(267), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(312), 2, + ACTIONS(308), 2, anon_sym_COMMA, anon_sym_in, - ACTIONS(269), 14, + ACTIONS(265), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109641,17 +109503,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98270] = 4, + [98562] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 2, + ACTIONS(1660), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(312), 2, + ACTIONS(1664), 2, anon_sym_COMMA, anon_sym_in, - ACTIONS(269), 14, + ACTIONS(1655), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109666,11 +109528,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98299] = 2, + [98591] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1565), 18, + ACTIONS(2871), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -109689,17 +109551,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [98324] = 4, + [98616] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 2, + ACTIONS(1660), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1423), 2, + ACTIONS(1664), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(269), 14, + ACTIONS(1655), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109714,17 +109576,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98353] = 4, + [98645] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1565), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1664), 2, + ACTIONS(1570), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1659), 14, + ACTIONS(1581), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1565), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109739,17 +109601,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98382] = 4, + [98674] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1554), 2, + ACTIONS(267), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1565), 2, + ACTIONS(308), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_in, - ACTIONS(1549), 14, + ACTIONS(265), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109764,42 +109626,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98411] = 4, + [98703] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1554), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2880), 2, + ACTIONS(1581), 18, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1549), 14, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [98728] = 13, + ACTIONS(2294), 1, anon_sym_DOT, + ACTIONS(2296), 1, + anon_sym_LBRACK, + 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2337), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2339), 2, + anon_sym_GT_GT, anon_sym_LT_LT, - [98440] = 4, + 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(1694), 2, + ACTIONS(1570), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1696), 2, + ACTIONS(1607), 2, anon_sym_COMMA, - anon_sym_in, - ACTIONS(1689), 14, + anon_sym_COLON, + ACTIONS(1565), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109814,51 +109708,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98469] = 13, - ACTIONS(2302), 1, + [98804] = 13, + ACTIONS(2218), 1, anon_sym_DOT, - ACTIONS(2304), 1, + ACTIONS(2230), 1, anon_sym_LBRACK, - ACTIONS(2343), 1, + ACTIONS(2335), 1, anon_sym_LPAREN, - ACTIONS(2351), 1, + ACTIONS(2343), 1, anon_sym_STAR_STAR, - ACTIONS(2359), 1, + ACTIONS(2351), 1, anon_sym_PIPE, - ACTIONS(2361), 1, + ACTIONS(2353), 1, anon_sym_AMP, - ACTIONS(2363), 1, + ACTIONS(2355), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2345), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2347), 2, + ACTIONS(2339), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2357), 2, + ACTIONS(2349), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1286), 2, + STATE(1386), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2355), 3, + ACTIONS(2347), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [98516] = 4, + [98851] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1554), 2, + ACTIONS(1649), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1630), 2, + ACTIONS(1653), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1549), 14, + ACTIONS(1644), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109873,67 +109767,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98545] = 4, + [98880] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(312), 2, - anon_sym_RPAREN, + ACTIONS(2880), 18, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(269), 14, - anon_sym_DOT, + 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, + [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, - [98574] = 4, + ACTIONS(2361), 1, + anon_sym_DOT, + ACTIONS(2373), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1565), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1664), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1659), 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, - [98603] = 4, + [98952] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1565), 2, + ACTIONS(1581), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1664), 2, + anon_sym_in, + ACTIONS(1642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1659), 14, + ACTIONS(1637), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109948,17 +109849,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98632] = 4, + [98981] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1554), 2, + ACTIONS(267), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1565), 2, + ACTIONS(1371), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1549), 14, + anon_sym_COLON, + ACTIONS(265), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109973,92 +109874,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98661] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(271), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(651), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(269), 14, - anon_sym_DOT, + [99010] = 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, - [98690] = 4, + ACTIONS(2407), 1, + anon_sym_DOT, + ACTIONS(2419), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(651), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(269), 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, + [99057] = 13, + ACTIONS(2110), 1, + anon_sym_DOT, + ACTIONS(2122), 1, + anon_sym_LBRACK, + ACTIONS(2335), 1, + anon_sym_LPAREN, + ACTIONS(2343), 1, + anon_sym_STAR_STAR, + ACTIONS(2351), 1, + anon_sym_PIPE, + ACTIONS(2353), 1, anon_sym_AMP, + ACTIONS(2355), 1, anon_sym_CARET, - anon_sym_LT_LT, - [98719] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(312), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(269), 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, + [99104] = 13, + ACTIONS(2188), 1, + anon_sym_DOT, + ACTIONS(2200), 1, + anon_sym_LBRACK, + ACTIONS(2335), 1, + anon_sym_LPAREN, + ACTIONS(2343), 1, + anon_sym_STAR_STAR, + ACTIONS(2351), 1, + anon_sym_PIPE, + ACTIONS(2353), 1, anon_sym_AMP, + ACTIONS(2355), 1, anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2337), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2339), 2, + anon_sym_GT_GT, anon_sym_LT_LT, - [98748] = 4, + 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, + [99151] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(271), 2, + ACTIONS(267), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(312), 2, + ACTIONS(308), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(269), 14, + anon_sym_in, + ACTIONS(265), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110073,17 +110001,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98777] = 4, + [99180] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1694), 2, + ACTIONS(1570), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1696), 2, + ACTIONS(2876), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1689), 14, + anon_sym_COLON, + ACTIONS(1565), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110098,323 +110026,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98806] = 13, - ACTIONS(2341), 1, - anon_sym_DOT, - ACTIONS(2343), 1, - anon_sym_LPAREN, - ACTIONS(2351), 1, - anon_sym_STAR_STAR, - ACTIONS(2353), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - anon_sym_PIPE, - ACTIONS(2361), 1, - anon_sym_AMP, - ACTIONS(2363), 1, - anon_sym_CARET, + [99209] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2345), 2, + ACTIONS(1570), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2347), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2357), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1286), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2355), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [98853] = 13, - ACTIONS(2082), 1, + ACTIONS(1581), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1565), 14, anon_sym_DOT, - ACTIONS(2096), 1, - anon_sym_LBRACK, - ACTIONS(2343), 1, anon_sym_LPAREN, - ACTIONS(2351), 1, - anon_sym_STAR_STAR, - ACTIONS(2359), 1, - anon_sym_PIPE, - ACTIONS(2361), 1, - anon_sym_AMP, - ACTIONS(2363), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2345), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2347), 2, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2357), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1286), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2355), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [98900] = 13, - ACTIONS(2343), 1, - anon_sym_LPAREN, - ACTIONS(2351), 1, anon_sym_STAR_STAR, - ACTIONS(2359), 1, - anon_sym_PIPE, - ACTIONS(2361), 1, - anon_sym_AMP, - ACTIONS(2363), 1, - anon_sym_CARET, - ACTIONS(2369), 1, - anon_sym_DOT, - ACTIONS(2381), 1, anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2345), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2347), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2357), 2, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1286), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2355), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [98947] = 13, - ACTIONS(2343), 1, - anon_sym_LPAREN, - ACTIONS(2351), 1, - anon_sym_STAR_STAR, - ACTIONS(2359), 1, - anon_sym_PIPE, - ACTIONS(2361), 1, anon_sym_AMP, - ACTIONS(2363), 1, anon_sym_CARET, - ACTIONS(2886), 1, - anon_sym_DOT, - ACTIONS(2888), 1, - anon_sym_LBRACK, + anon_sym_LT_LT, + [99238] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2345), 2, + ACTIONS(1649), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2347), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2357), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1286), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2355), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [98994] = 13, - ACTIONS(2198), 1, + ACTIONS(1653), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1644), 14, anon_sym_DOT, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2343), 1, anon_sym_LPAREN, - ACTIONS(2351), 1, - anon_sym_STAR_STAR, - ACTIONS(2359), 1, - anon_sym_PIPE, - ACTIONS(2361), 1, - anon_sym_AMP, - ACTIONS(2363), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2345), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2347), 2, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2357), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1286), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2355), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99041] = 13, - ACTIONS(2306), 1, - anon_sym_DOT, - ACTIONS(2318), 1, - anon_sym_LBRACK, - ACTIONS(2343), 1, - anon_sym_LPAREN, - ACTIONS(2351), 1, - anon_sym_STAR_STAR, - ACTIONS(2359), 1, - anon_sym_PIPE, - ACTIONS(2361), 1, anon_sym_AMP, - ACTIONS(2363), 1, anon_sym_CARET, + anon_sym_LT_LT, + [99267] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2345), 2, + ACTIONS(267), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2347), 2, + ACTIONS(643), 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(2357), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1286), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2355), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99088] = 13, - ACTIONS(2343), 1, - anon_sym_LPAREN, - ACTIONS(2351), 1, - anon_sym_STAR_STAR, - ACTIONS(2359), 1, - anon_sym_PIPE, - ACTIONS(2361), 1, anon_sym_AMP, - ACTIONS(2363), 1, anon_sym_CARET, - ACTIONS(2416), 1, - anon_sym_DOT, - ACTIONS(2428), 1, - anon_sym_LBRACK, + anon_sym_LT_LT, + [99296] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2345), 2, + ACTIONS(1649), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2347), 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(2357), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1286), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2355), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99135] = 13, - ACTIONS(2254), 1, - anon_sym_DOT, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2343), 1, - anon_sym_LPAREN, - ACTIONS(2351), 1, - anon_sym_STAR_STAR, - ACTIONS(2359), 1, - anon_sym_PIPE, - ACTIONS(2361), 1, anon_sym_AMP, - ACTIONS(2363), 1, anon_sym_CARET, + anon_sym_LT_LT, + [99325] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2345), 2, + ACTIONS(267), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2347), 2, + ACTIONS(643), 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(2357), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1286), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2355), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99182] = 13, - ACTIONS(2160), 1, - anon_sym_DOT, - ACTIONS(2172), 1, - anon_sym_LBRACK, - ACTIONS(2343), 1, - anon_sym_LPAREN, - ACTIONS(2351), 1, - anon_sym_STAR_STAR, - ACTIONS(2359), 1, - anon_sym_PIPE, - ACTIONS(2361), 1, anon_sym_AMP, - ACTIONS(2363), 1, anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2345), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2347), 2, - anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2357), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1286), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2355), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [99229] = 4, + [99354] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1616), 2, + ACTIONS(267), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1620), 2, + ACTIONS(1371), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1611), 14, + anon_sym_COLON, + ACTIONS(265), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110429,17 +110176,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99258] = 4, + [99383] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1616), 2, + ACTIONS(267), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1620), 2, + ACTIONS(308), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_in, - ACTIONS(1611), 14, + ACTIONS(265), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110454,41 +110201,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99287] = 6, + [99412] = 13, + ACTIONS(2335), 1, + anon_sym_LPAREN, + ACTIONS(2343), 1, + anon_sym_STAR_STAR, + ACTIONS(2351), 1, + anon_sym_PIPE, + ACTIONS(2353), 1, + anon_sym_AMP, + ACTIONS(2355), 1, + anon_sym_CARET, + ACTIONS(2882), 1, + anon_sym_DOT, + ACTIONS(2884), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2337), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2339), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2349), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1386), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2347), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [99459] = 13, + ACTIONS(2886), 1, + sym_identifier, + ACTIONS(2888), 1, + anon_sym_LPAREN, ACTIONS(2890), 1, - anon_sym_COMMA, + anon_sym_STAR, ACTIONS(2892), 1, anon_sym_COLON, ACTIONS(2894), 1, - anon_sym_EQ, - STATE(1637), 1, - aux_sym__patterns_repeat1, + anon_sym_STAR_STAR, + ACTIONS(2896), 1, + anon_sym_SLASH, + 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(2896), 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, - [99319] = 4, + 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, - STATE(1621), 1, + STATE(1620), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2873), 15, + ACTIONS(2871), 15, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, @@ -110504,52 +110292,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99347] = 13, - ACTIONS(2901), 1, + [99533] = 13, + ACTIONS(2886), 1, sym_identifier, - ACTIONS(2903), 1, + ACTIONS(2888), 1, anon_sym_LPAREN, - ACTIONS(2905), 1, + ACTIONS(2890), 1, anon_sym_STAR, - ACTIONS(2907), 1, + ACTIONS(2894), 1, + anon_sym_STAR_STAR, + ACTIONS(2896), 1, + anon_sym_SLASH, + ACTIONS(2901), 1, anon_sym_COLON, - ACTIONS(2909), 1, + STATE(2347), 1, + sym_parameter, + STATE(2350), 1, + sym_tuple_pattern, + STATE(2760), 1, + sym_lambda_parameters, + STATE(2767), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2518), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2503), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [99579] = 13, + ACTIONS(2886), 1, + sym_identifier, + ACTIONS(2888), 1, + anon_sym_LPAREN, + ACTIONS(2890), 1, + anon_sym_STAR, + ACTIONS(2894), 1, anon_sym_STAR_STAR, - ACTIONS(2911), 1, + ACTIONS(2896), 1, anon_sym_SLASH, - STATE(2238), 1, + ACTIONS(2903), 1, + anon_sym_COLON, + STATE(2347), 1, sym_parameter, - STATE(2240), 1, + STATE(2350), 1, sym_tuple_pattern, - STATE(2735), 1, + STATE(2728), 1, sym_lambda_parameters, - STATE(2775), 1, + STATE(2767), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2538), 2, + STATE(2518), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2526), 5, + STATE(2503), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99393] = 6, - ACTIONS(2892), 1, + [99625] = 6, + ACTIONS(2905), 1, + anon_sym_COMMA, + ACTIONS(2907), 1, anon_sym_COLON, - ACTIONS(2894), 1, + 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, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [99657] = 6, + ACTIONS(2907), 1, + anon_sym_COLON, + ACTIONS(2909), 1, anon_sym_EQ, ACTIONS(2913), 1, anon_sym_COMMA, - STATE(1576), 1, + STATE(1638), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2896), 13, + ACTIONS(2911), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110563,143 +110410,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99425] = 13, - ACTIONS(2901), 1, - sym_identifier, - ACTIONS(2903), 1, - anon_sym_LPAREN, - ACTIONS(2905), 1, - anon_sym_STAR, - ACTIONS(2909), 1, - anon_sym_STAR_STAR, - ACTIONS(2911), 1, - anon_sym_SLASH, - ACTIONS(2915), 1, + [99689] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2878), 17, + anon_sym_COMMA, anon_sym_COLON, - STATE(2238), 1, - sym_parameter, - STATE(2240), 1, - sym_tuple_pattern, - STATE(2679), 1, - sym_lambda_parameters, - STATE(2775), 1, - sym__parameters, + 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, + [99713] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2538), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2526), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [99471] = 13, - ACTIONS(2901), 1, + 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, + [99737] = 13, + ACTIONS(2886), 1, sym_identifier, - ACTIONS(2903), 1, + ACTIONS(2888), 1, anon_sym_LPAREN, - ACTIONS(2905), 1, + ACTIONS(2890), 1, anon_sym_STAR, - ACTIONS(2909), 1, + ACTIONS(2894), 1, anon_sym_STAR_STAR, - ACTIONS(2911), 1, + ACTIONS(2896), 1, anon_sym_SLASH, - ACTIONS(2917), 1, + ACTIONS(2915), 1, anon_sym_COLON, - STATE(2238), 1, + STATE(2347), 1, sym_parameter, - STATE(2240), 1, + STATE(2350), 1, sym_tuple_pattern, - STATE(2613), 1, + STATE(2652), 1, sym_lambda_parameters, - STATE(2775), 1, + STATE(2767), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2538), 2, + STATE(2518), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2526), 5, + STATE(2503), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99517] = 13, - ACTIONS(2901), 1, + [99783] = 13, + ACTIONS(2886), 1, sym_identifier, - ACTIONS(2903), 1, + ACTIONS(2888), 1, anon_sym_LPAREN, - ACTIONS(2905), 1, + ACTIONS(2890), 1, anon_sym_STAR, - ACTIONS(2909), 1, + ACTIONS(2894), 1, anon_sym_STAR_STAR, - ACTIONS(2911), 1, + ACTIONS(2896), 1, anon_sym_SLASH, - ACTIONS(2919), 1, + ACTIONS(2917), 1, anon_sym_COLON, - STATE(2238), 1, + STATE(2347), 1, sym_parameter, - STATE(2240), 1, + STATE(2350), 1, sym_tuple_pattern, - STATE(2759), 1, + STATE(2764), 1, sym_lambda_parameters, - STATE(2775), 1, + STATE(2767), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2538), 2, + STATE(2518), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2526), 5, + STATE(2503), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99563] = 13, - ACTIONS(2901), 1, + [99829] = 13, + ACTIONS(2886), 1, sym_identifier, - ACTIONS(2903), 1, + ACTIONS(2888), 1, anon_sym_LPAREN, - ACTIONS(2905), 1, + ACTIONS(2890), 1, anon_sym_STAR, - ACTIONS(2909), 1, + ACTIONS(2894), 1, anon_sym_STAR_STAR, - ACTIONS(2911), 1, + ACTIONS(2896), 1, anon_sym_SLASH, - ACTIONS(2921), 1, + ACTIONS(2919), 1, anon_sym_COLON, - STATE(2238), 1, + STATE(2347), 1, sym_parameter, - STATE(2240), 1, + STATE(2350), 1, sym_tuple_pattern, - STATE(2748), 1, + STATE(2751), 1, sym_lambda_parameters, - STATE(2775), 1, + STATE(2767), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2538), 2, + STATE(2518), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2526), 5, + STATE(2503), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99609] = 2, + [99875] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2873), 17, + ACTIONS(2880), 17, anon_sym_COMMA, anon_sym_COLON, anon_sym_in, @@ -110717,139 +110575,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99633] = 13, - ACTIONS(2901), 1, + [99899] = 13, + ACTIONS(2886), 1, sym_identifier, - ACTIONS(2903), 1, + ACTIONS(2888), 1, anon_sym_LPAREN, - ACTIONS(2905), 1, + ACTIONS(2890), 1, anon_sym_STAR, - ACTIONS(2909), 1, + ACTIONS(2894), 1, anon_sym_STAR_STAR, - ACTIONS(2911), 1, + ACTIONS(2896), 1, anon_sym_SLASH, - ACTIONS(2923), 1, + ACTIONS(2921), 1, anon_sym_COLON, - STATE(2238), 1, + STATE(2347), 1, sym_parameter, - STATE(2240), 1, + STATE(2350), 1, sym_tuple_pattern, - STATE(2607), 1, + STATE(2684), 1, sym_lambda_parameters, - STATE(2775), 1, + STATE(2767), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2538), 2, + STATE(2518), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2526), 5, + STATE(2503), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99679] = 13, - ACTIONS(2901), 1, + [99945] = 13, + ACTIONS(2886), 1, sym_identifier, - ACTIONS(2903), 1, + ACTIONS(2888), 1, anon_sym_LPAREN, - ACTIONS(2905), 1, + ACTIONS(2890), 1, anon_sym_STAR, - ACTIONS(2909), 1, + ACTIONS(2894), 1, anon_sym_STAR_STAR, - ACTIONS(2911), 1, + ACTIONS(2896), 1, anon_sym_SLASH, - ACTIONS(2925), 1, + ACTIONS(2923), 1, anon_sym_COLON, - STATE(2238), 1, + STATE(2347), 1, sym_parameter, - STATE(2240), 1, + STATE(2350), 1, sym_tuple_pattern, - STATE(2686), 1, + STATE(2639), 1, sym_lambda_parameters, - STATE(2775), 1, + STATE(2767), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2538), 2, + STATE(2518), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2526), 5, + STATE(2503), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99725] = 5, - ACTIONS(2892), 1, - anon_sym_COLON, - ACTIONS(2894), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2927), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(2896), 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, - [99755] = 13, - ACTIONS(2901), 1, + [99991] = 13, + ACTIONS(2886), 1, sym_identifier, - ACTIONS(2903), 1, + ACTIONS(2888), 1, anon_sym_LPAREN, - ACTIONS(2905), 1, + ACTIONS(2890), 1, anon_sym_STAR, - ACTIONS(2909), 1, + ACTIONS(2894), 1, anon_sym_STAR_STAR, - ACTIONS(2911), 1, + ACTIONS(2896), 1, anon_sym_SLASH, - ACTIONS(2929), 1, + ACTIONS(2925), 1, anon_sym_COLON, - STATE(2238), 1, + STATE(2347), 1, sym_parameter, - STATE(2240), 1, + STATE(2350), 1, sym_tuple_pattern, - STATE(2701), 1, + STATE(2668), 1, sym_lambda_parameters, - STATE(2775), 1, + STATE(2767), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2538), 2, + STATE(2518), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2526), 5, + STATE(2503), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99801] = 2, + [100037] = 5, + ACTIONS(2907), 1, + anon_sym_COLON, + ACTIONS(2909), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2882), 17, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_EQ, + ACTIONS(2927), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(2911), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110863,44 +110699,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99825] = 13, - ACTIONS(2901), 1, + [100067] = 13, + ACTIONS(2886), 1, sym_identifier, - ACTIONS(2903), 1, + ACTIONS(2888), 1, anon_sym_LPAREN, - ACTIONS(2905), 1, + ACTIONS(2890), 1, anon_sym_STAR, - ACTIONS(2909), 1, + ACTIONS(2894), 1, anon_sym_STAR_STAR, - ACTIONS(2911), 1, + ACTIONS(2896), 1, anon_sym_SLASH, - ACTIONS(2931), 1, + ACTIONS(2929), 1, anon_sym_COLON, - STATE(2238), 1, + STATE(2347), 1, sym_parameter, - STATE(2240), 1, + STATE(2350), 1, sym_tuple_pattern, - STATE(2718), 1, + STATE(2597), 1, sym_lambda_parameters, - STATE(2775), 1, + STATE(2767), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2538), 2, + STATE(2518), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2526), 5, + STATE(2503), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99871] = 2, + [100113] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2884), 17, + ACTIONS(2871), 17, anon_sym_COMMA, anon_sym_COLON, anon_sym_in, @@ -110918,71 +110754,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99895] = 13, - ACTIONS(2901), 1, + [100137] = 13, + ACTIONS(2886), 1, sym_identifier, - ACTIONS(2903), 1, + ACTIONS(2888), 1, anon_sym_LPAREN, - ACTIONS(2905), 1, + ACTIONS(2890), 1, anon_sym_STAR, - ACTIONS(2909), 1, + ACTIONS(2894), 1, anon_sym_STAR_STAR, - ACTIONS(2911), 1, + ACTIONS(2896), 1, anon_sym_SLASH, - ACTIONS(2933), 1, + ACTIONS(2931), 1, anon_sym_COLON, - STATE(2238), 1, + STATE(2347), 1, sym_parameter, - STATE(2240), 1, + STATE(2350), 1, sym_tuple_pattern, - STATE(2749), 1, + STATE(2707), 1, sym_lambda_parameters, - STATE(2775), 1, + STATE(2767), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2538), 2, + STATE(2518), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2526), 5, + STATE(2503), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99941] = 4, - ACTIONS(2935), 1, + [100183] = 4, + ACTIONS(2933), 1, anon_sym_COMMA, - STATE(1621), 1, + STATE(1620), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(979), 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, - [99969] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1565), 17, - anon_sym_COMMA, + ACTIONS(971), 15, anon_sym_COLON, - anon_sym_in, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -110997,195 +110811,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99993] = 13, - ACTIONS(2901), 1, + [100211] = 12, + ACTIONS(2935), 1, sym_identifier, - ACTIONS(2903), 1, - anon_sym_LPAREN, - ACTIONS(2905), 1, - anon_sym_STAR, - ACTIONS(2909), 1, - anon_sym_STAR_STAR, - ACTIONS(2911), 1, - anon_sym_SLASH, ACTIONS(2937), 1, - anon_sym_COLON, - STATE(2238), 1, - sym_parameter, - STATE(2240), 1, - sym_tuple_pattern, - STATE(2732), 1, - sym_lambda_parameters, - STATE(2775), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2538), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2526), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [100039] = 12, - ACTIONS(2939), 1, - sym_identifier, - ACTIONS(2941), 1, anon_sym_LPAREN, - ACTIONS(2943), 1, + ACTIONS(2939), 1, anon_sym_RPAREN, - ACTIONS(2945), 1, + ACTIONS(2941), 1, anon_sym_STAR, - ACTIONS(2947), 1, + ACTIONS(2943), 1, anon_sym_STAR_STAR, - ACTIONS(2949), 1, + ACTIONS(2945), 1, anon_sym_SLASH, - STATE(2256), 1, - sym_tuple_pattern, - STATE(2477), 1, + STATE(2320), 1, sym_parameter, - STATE(2746), 1, + STATE(2321), 1, + sym_tuple_pattern, + STATE(2626), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2263), 2, + STATE(2323), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2534), 5, + STATE(2544), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100082] = 11, - ACTIONS(2901), 1, + [100254] = 11, + ACTIONS(2935), 1, sym_identifier, - ACTIONS(2903), 1, + ACTIONS(2937), 1, anon_sym_LPAREN, - ACTIONS(2905), 1, + ACTIONS(2941), 1, anon_sym_STAR, - ACTIONS(2909), 1, + ACTIONS(2943), 1, anon_sym_STAR_STAR, - ACTIONS(2911), 1, + ACTIONS(2945), 1, anon_sym_SLASH, - ACTIONS(2951), 1, - anon_sym_COLON, - STATE(2240), 1, + ACTIONS(2947), 1, + anon_sym_RPAREN, + STATE(2321), 1, sym_tuple_pattern, - STATE(2582), 1, + STATE(2554), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2538), 2, + STATE(2323), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2526), 5, + STATE(2544), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100122] = 11, - ACTIONS(2939), 1, + [100294] = 11, + ACTIONS(2935), 1, sym_identifier, - ACTIONS(2941), 1, + ACTIONS(2937), 1, anon_sym_LPAREN, - ACTIONS(2945), 1, + ACTIONS(2941), 1, anon_sym_STAR, - ACTIONS(2947), 1, + ACTIONS(2943), 1, anon_sym_STAR_STAR, - ACTIONS(2949), 1, + ACTIONS(2945), 1, anon_sym_SLASH, - ACTIONS(2951), 1, + ACTIONS(2949), 1, anon_sym_RPAREN, - STATE(2256), 1, + STATE(2321), 1, sym_tuple_pattern, - STATE(2539), 1, + STATE(2554), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2263), 2, + STATE(2323), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2534), 5, + STATE(2544), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100162] = 11, - ACTIONS(2939), 1, + [100334] = 11, + ACTIONS(2886), 1, sym_identifier, - ACTIONS(2941), 1, + ACTIONS(2888), 1, anon_sym_LPAREN, - ACTIONS(2945), 1, + ACTIONS(2890), 1, anon_sym_STAR, - ACTIONS(2947), 1, + ACTIONS(2894), 1, anon_sym_STAR_STAR, - ACTIONS(2949), 1, + ACTIONS(2896), 1, anon_sym_SLASH, - ACTIONS(2953), 1, - anon_sym_RPAREN, - STATE(2256), 1, + ACTIONS(2947), 1, + anon_sym_COLON, + STATE(2350), 1, sym_tuple_pattern, - STATE(2539), 1, + STATE(2514), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2263), 2, + STATE(2518), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2534), 5, + STATE(2503), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100202] = 11, - ACTIONS(2901), 1, + [100374] = 11, + ACTIONS(2886), 1, sym_identifier, - ACTIONS(2903), 1, + ACTIONS(2888), 1, anon_sym_LPAREN, - ACTIONS(2905), 1, + ACTIONS(2890), 1, anon_sym_STAR, - ACTIONS(2909), 1, + ACTIONS(2894), 1, anon_sym_STAR_STAR, - ACTIONS(2911), 1, + ACTIONS(2896), 1, anon_sym_SLASH, - ACTIONS(2953), 1, + ACTIONS(2949), 1, anon_sym_COLON, - STATE(2240), 1, + STATE(2350), 1, sym_tuple_pattern, - STATE(2582), 1, + STATE(2514), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2538), 2, + STATE(2518), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2526), 5, + STATE(2503), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100242] = 4, - ACTIONS(2892), 1, + [100414] = 4, + ACTIONS(2907), 1, anon_sym_COLON, - ACTIONS(2894), 1, + ACTIONS(2909), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2896), 13, + ACTIONS(2911), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111199,146 +110980,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100268] = 11, - ACTIONS(2957), 1, + [100440] = 11, + ACTIONS(2953), 1, anon_sym_as, - ACTIONS(2959), 1, + ACTIONS(2955), 1, anon_sym_if, - ACTIONS(2961), 1, + ACTIONS(2957), 1, anon_sym_async, - ACTIONS(2963), 1, + ACTIONS(2959), 1, anon_sym_for, - ACTIONS(2965), 1, + ACTIONS(2961), 1, anon_sym_and, - ACTIONS(2967), 1, + ACTIONS(2963), 1, anon_sym_or, - STATE(1871), 1, + STATE(1858), 1, sym_for_in_clause, - STATE(2458), 1, + STATE(2397), 1, aux_sym__collection_elements_repeat1, - STATE(2767), 1, + STATE(2591), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2955), 5, + ACTIONS(2951), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [100307] = 10, - ACTIONS(2939), 1, + [100479] = 10, + ACTIONS(2886), 1, sym_identifier, - ACTIONS(2941), 1, + ACTIONS(2888), 1, anon_sym_LPAREN, - ACTIONS(2945), 1, + ACTIONS(2890), 1, anon_sym_STAR, - ACTIONS(2947), 1, + ACTIONS(2894), 1, anon_sym_STAR_STAR, - ACTIONS(2949), 1, + ACTIONS(2896), 1, anon_sym_SLASH, - STATE(2256), 1, + STATE(2350), 1, sym_tuple_pattern, - STATE(2539), 1, + STATE(2514), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2263), 2, + STATE(2518), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2534), 5, + STATE(2503), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100344] = 10, - ACTIONS(2901), 1, + [100516] = 10, + ACTIONS(2935), 1, sym_identifier, - ACTIONS(2903), 1, + ACTIONS(2937), 1, anon_sym_LPAREN, - ACTIONS(2905), 1, + ACTIONS(2941), 1, anon_sym_STAR, - ACTIONS(2909), 1, + ACTIONS(2943), 1, anon_sym_STAR_STAR, - ACTIONS(2911), 1, + ACTIONS(2945), 1, anon_sym_SLASH, - STATE(2240), 1, + STATE(2321), 1, sym_tuple_pattern, - STATE(2582), 1, + STATE(2554), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2538), 2, + STATE(2323), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2526), 5, + STATE(2544), 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(2969), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, + [100553] = 6, + ACTIONS(2967), 1, anon_sym_as, + ACTIONS(2969), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [100400] = 13, ACTIONS(2971), 1, - anon_sym_COMMA, - ACTIONS(2973), 1, - anon_sym_as, - ACTIONS(2975), 1, - anon_sym_if, - ACTIONS(2977), 1, - anon_sym_COLON, - ACTIONS(2979), 1, - anon_sym_async, - ACTIONS(2981), 1, - anon_sym_for, - ACTIONS(2983), 1, - anon_sym_RBRACE, - ACTIONS(2985), 1, - anon_sym_and, - ACTIONS(2987), 1, - anon_sym_or, - STATE(1870), 1, - sym_for_in_clause, - STATE(2410), 1, - aux_sym__collection_elements_repeat1, - STATE(2614), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [100441] = 6, - ACTIONS(2991), 1, - anon_sym_as, - ACTIONS(2993), 1, - anon_sym_if, - ACTIONS(2995), 1, anon_sym_and, - ACTIONS(2997), 1, + ACTIONS(2973), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2989), 8, + ACTIONS(2965), 8, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -111347,87 +111083,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [100468] = 6, - ACTIONS(2991), 1, - anon_sym_as, - ACTIONS(2993), 1, - anon_sym_if, - ACTIONS(2995), 1, - anon_sym_and, - ACTIONS(2997), 1, - anon_sym_or, + [100580] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2999), 8, + ACTIONS(2074), 12, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [100495] = 6, - ACTIONS(2991), 1, anon_sym_as, - ACTIONS(2993), 1, anon_sym_if, - ACTIONS(2995), 1, - anon_sym_and, - ACTIONS(2997), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3001), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [100522] = 13, - ACTIONS(2971), 1, + anon_sym_and, + anon_sym_or, + [100599] = 13, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(2973), 1, + ACTIONS(2977), 1, anon_sym_as, - ACTIONS(2975), 1, + ACTIONS(2979), 1, anon_sym_if, - ACTIONS(2977), 1, + ACTIONS(2981), 1, anon_sym_COLON, - ACTIONS(2979), 1, + ACTIONS(2983), 1, anon_sym_async, - ACTIONS(2981), 1, + ACTIONS(2985), 1, anon_sym_for, - ACTIONS(2983), 1, + ACTIONS(2987), 1, anon_sym_RBRACE, - ACTIONS(2985), 1, + ACTIONS(2989), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(2991), 1, anon_sym_or, - STATE(1870), 1, + STATE(1838), 1, sym_for_in_clause, - STATE(2410), 1, + STATE(2434), 1, aux_sym__collection_elements_repeat1, - STATE(2652), 1, + STATE(2582), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100563] = 5, - ACTIONS(2995), 1, + [100640] = 5, + ACTIONS(2971), 1, anon_sym_and, - ACTIONS(2997), 1, + ACTIONS(2973), 1, anon_sym_or, - ACTIONS(3005), 1, + ACTIONS(2995), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3003), 9, + ACTIONS(2993), 9, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -111437,15 +111148,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [100588] = 4, - ACTIONS(2995), 1, + [100665] = 4, + ACTIONS(2971), 1, anon_sym_and, - ACTIONS(2997), 1, + ACTIONS(2973), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3008), 10, + ACTIONS(2998), 10, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -111456,46 +111167,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [100611] = 3, - ACTIONS(2995), 1, - anon_sym_and, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2969), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, + [100688] = 6, + ACTIONS(2967), 1, anon_sym_as, + ACTIONS(2969), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(2971), 1, + anon_sym_and, + ACTIONS(2973), 1, anon_sym_or, - [100632] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3010), 12, + ACTIONS(3000), 8, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, + [100715] = 3, + ACTIONS(2971), 1, anon_sym_and, - anon_sym_or, - [100651] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2080), 12, + ACTIONS(3002), 11, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -111506,423 +111205,448 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - anon_sym_and, anon_sym_or, - [100670] = 13, - ACTIONS(2971), 1, + [100736] = 13, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(2973), 1, + ACTIONS(2977), 1, anon_sym_as, - ACTIONS(2975), 1, + ACTIONS(2979), 1, anon_sym_if, - ACTIONS(2977), 1, + ACTIONS(2981), 1, anon_sym_COLON, - ACTIONS(2979), 1, + ACTIONS(2983), 1, anon_sym_async, - ACTIONS(2981), 1, + ACTIONS(2985), 1, anon_sym_for, - ACTIONS(2983), 1, + ACTIONS(2987), 1, anon_sym_RBRACE, - ACTIONS(2985), 1, + ACTIONS(2989), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(2991), 1, anon_sym_or, - STATE(1870), 1, + STATE(1838), 1, sym_for_in_clause, - STATE(2410), 1, + STATE(2434), 1, aux_sym__collection_elements_repeat1, - STATE(2625), 1, + STATE(2708), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100711] = 13, - ACTIONS(2971), 1, + [100777] = 13, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(2973), 1, + ACTIONS(2977), 1, anon_sym_as, - ACTIONS(2975), 1, + ACTIONS(2979), 1, anon_sym_if, - ACTIONS(2977), 1, + ACTIONS(2981), 1, anon_sym_COLON, - ACTIONS(2979), 1, + ACTIONS(2983), 1, anon_sym_async, - ACTIONS(2981), 1, + ACTIONS(2985), 1, anon_sym_for, - ACTIONS(2983), 1, + ACTIONS(2987), 1, anon_sym_RBRACE, - ACTIONS(2985), 1, + ACTIONS(2989), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(2991), 1, anon_sym_or, - STATE(1870), 1, + STATE(1838), 1, sym_for_in_clause, - STATE(2410), 1, + STATE(2434), 1, aux_sym__collection_elements_repeat1, - STATE(2622), 1, + STATE(2757), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100752] = 13, - ACTIONS(2971), 1, + [100818] = 13, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(2973), 1, + ACTIONS(2977), 1, anon_sym_as, - ACTIONS(2975), 1, + ACTIONS(2979), 1, anon_sym_if, - ACTIONS(2977), 1, + ACTIONS(2981), 1, anon_sym_COLON, - ACTIONS(2979), 1, + ACTIONS(2983), 1, anon_sym_async, - ACTIONS(2981), 1, + ACTIONS(2985), 1, anon_sym_for, - ACTIONS(2983), 1, + ACTIONS(2987), 1, anon_sym_RBRACE, - ACTIONS(2985), 1, + ACTIONS(2989), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(2991), 1, anon_sym_or, - STATE(1870), 1, + STATE(1838), 1, sym_for_in_clause, - STATE(2410), 1, + STATE(2434), 1, aux_sym__collection_elements_repeat1, - STATE(2702), 1, + STATE(2734), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100793] = 13, + [100859] = 6, + ACTIONS(2967), 1, + anon_sym_as, + ACTIONS(2969), 1, + anon_sym_if, ACTIONS(2971), 1, - anon_sym_COMMA, + anon_sym_and, ACTIONS(2973), 1, - anon_sym_as, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3004), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [100886] = 13, ACTIONS(2975), 1, - anon_sym_if, + anon_sym_COMMA, ACTIONS(2977), 1, - anon_sym_COLON, + anon_sym_as, ACTIONS(2979), 1, - anon_sym_async, + anon_sym_if, ACTIONS(2981), 1, - anon_sym_for, + anon_sym_COLON, ACTIONS(2983), 1, - anon_sym_RBRACE, + anon_sym_async, ACTIONS(2985), 1, - anon_sym_and, + anon_sym_for, ACTIONS(2987), 1, + anon_sym_RBRACE, + ACTIONS(2989), 1, + anon_sym_and, + ACTIONS(2991), 1, anon_sym_or, - STATE(1870), 1, + STATE(1838), 1, sym_for_in_clause, - STATE(2410), 1, + STATE(2434), 1, aux_sym__collection_elements_repeat1, - STATE(2707), 1, + STATE(2704), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100834] = 13, - ACTIONS(2971), 1, + [100927] = 13, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(2973), 1, + ACTIONS(2977), 1, anon_sym_as, - ACTIONS(2975), 1, + ACTIONS(2979), 1, anon_sym_if, - ACTIONS(2977), 1, + ACTIONS(2981), 1, anon_sym_COLON, - ACTIONS(2979), 1, + ACTIONS(2983), 1, anon_sym_async, - ACTIONS(2981), 1, + ACTIONS(2985), 1, anon_sym_for, - ACTIONS(2983), 1, + ACTIONS(2987), 1, anon_sym_RBRACE, - ACTIONS(2985), 1, + ACTIONS(2989), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(2991), 1, anon_sym_or, - STATE(1870), 1, + STATE(1838), 1, sym_for_in_clause, - STATE(2410), 1, + STATE(2434), 1, aux_sym__collection_elements_repeat1, - STATE(2719), 1, + STATE(2713), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100875] = 13, - ACTIONS(2971), 1, + [100968] = 13, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(2973), 1, + ACTIONS(2977), 1, anon_sym_as, - ACTIONS(2975), 1, + ACTIONS(2979), 1, anon_sym_if, - ACTIONS(2977), 1, + ACTIONS(2981), 1, anon_sym_COLON, - ACTIONS(2979), 1, + ACTIONS(2983), 1, anon_sym_async, - ACTIONS(2981), 1, + ACTIONS(2985), 1, anon_sym_for, - ACTIONS(2983), 1, + ACTIONS(2987), 1, anon_sym_RBRACE, - ACTIONS(2985), 1, + ACTIONS(2989), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(2991), 1, anon_sym_or, - STATE(1870), 1, + STATE(1838), 1, sym_for_in_clause, - STATE(2410), 1, + STATE(2434), 1, aux_sym__collection_elements_repeat1, - STATE(2711), 1, + STATE(2692), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100916] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3012), 1, - anon_sym_LBRACE, - ACTIONS(3016), 1, - anon_sym_BSLASH, - ACTIONS(3018), 1, - sym_string_end, - STATE(1821), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3014), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1678), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [100946] = 6, - ACTIONS(2957), 1, + [101009] = 13, + ACTIONS(2975), 1, + anon_sym_COMMA, + ACTIONS(2977), 1, anon_sym_as, - ACTIONS(2959), 1, + ACTIONS(2979), 1, anon_sym_if, - ACTIONS(2965), 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(2967), 1, + ACTIONS(2991), 1, anon_sym_or, + STATE(1838), 1, + sym_for_in_clause, + STATE(2434), 1, + aux_sym__collection_elements_repeat1, + STATE(2604), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [101050] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2999), 7, + ACTIONS(3006), 12, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_PIPE, - [100972] = 12, - ACTIONS(3020), 1, - anon_sym_RPAREN, - ACTIONS(3022), 1, - anon_sym_COMMA, - ACTIONS(3025), 1, anon_sym_as, - ACTIONS(3027), 1, anon_sym_if, - ACTIONS(3029), 1, - anon_sym_async, - ACTIONS(3031), 1, - anon_sym_for, - ACTIONS(3033), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_and, - ACTIONS(3035), 1, anon_sym_or, - STATE(1833), 1, - sym_for_in_clause, - STATE(2322), 1, - aux_sym__collection_elements_repeat1, - STATE(2741), 1, - sym__comprehension_clauses, + [101069] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101010] = 12, - ACTIONS(2957), 1, + ACTIONS(3002), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2959), 1, anon_sym_if, - ACTIONS(2961), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [101088] = 12, + ACTIONS(3008), 1, + anon_sym_RPAREN, + ACTIONS(3010), 1, + anon_sym_COMMA, + ACTIONS(3012), 1, + anon_sym_as, + ACTIONS(3014), 1, + anon_sym_if, + ACTIONS(3016), 1, anon_sym_async, - ACTIONS(2963), 1, + ACTIONS(3018), 1, anon_sym_for, - ACTIONS(2965), 1, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(2967), 1, + ACTIONS(3022), 1, anon_sym_or, - ACTIONS(2983), 1, - anon_sym_RBRACK, - ACTIONS(3037), 1, - anon_sym_COMMA, - STATE(1871), 1, + STATE(1859), 1, sym_for_in_clause, - STATE(2458), 1, + STATE(2346), 1, aux_sym__collection_elements_repeat1, - STATE(2731), 1, + STATE(2653), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101048] = 8, + [101126] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3012), 1, + ACTIONS(3024), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3028), 1, anon_sym_BSLASH, - ACTIONS(3039), 1, + ACTIONS(3030), 1, sym_string_end, - STATE(1821), 2, + STATE(1783), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3014), 3, + ACTIONS(3026), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1671), 3, + STATE(1667), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101078] = 8, + [101156] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3012), 1, + ACTIONS(3024), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3028), 1, anon_sym_BSLASH, - ACTIONS(3041), 1, + ACTIONS(3032), 1, sym_string_end, - STATE(1821), 2, + STATE(1783), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3014), 3, + ACTIONS(3026), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1673), 3, + STATE(1697), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101108] = 12, - ACTIONS(3025), 1, + [101186] = 12, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3027), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(3029), 1, + ACTIONS(3016), 1, anon_sym_async, - ACTIONS(3031), 1, + ACTIONS(3018), 1, anon_sym_for, - ACTIONS(3033), 1, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(3035), 1, + ACTIONS(3022), 1, anon_sym_or, - ACTIONS(3043), 1, + ACTIONS(3034), 1, anon_sym_RPAREN, - ACTIONS(3045), 1, + ACTIONS(3036), 1, anon_sym_COMMA, - STATE(1833), 1, + STATE(1859), 1, sym_for_in_clause, - STATE(2322), 1, - aux_sym__collection_elements_repeat1, - STATE(2598), 1, + STATE(2248), 1, + aux_sym_argument_list_repeat1, + STATE(2752), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101146] = 8, + [101224] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3047), 1, + ACTIONS(3024), 1, anon_sym_LBRACE, - ACTIONS(3053), 1, + ACTIONS(3028), 1, anon_sym_BSLASH, - ACTIONS(3056), 1, + ACTIONS(3038), 1, sym_string_end, - STATE(1821), 2, + STATE(1783), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3050), 3, + ACTIONS(3026), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1673), 3, + STATE(1697), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101176] = 12, - ACTIONS(3025), 1, + [101254] = 6, + ACTIONS(2953), 1, anon_sym_as, - ACTIONS(3027), 1, + ACTIONS(2955), 1, anon_sym_if, - ACTIONS(3029), 1, - anon_sym_async, - ACTIONS(3031), 1, - anon_sym_for, - ACTIONS(3033), 1, + ACTIONS(2961), 1, anon_sym_and, - ACTIONS(3035), 1, + ACTIONS(2963), 1, anon_sym_or, - ACTIONS(3058), 1, - anon_sym_RPAREN, - ACTIONS(3060), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2965), 7, + anon_sym_DOT, anon_sym_COMMA, - STATE(1833), 1, - sym_for_in_clause, - STATE(2325), 1, - aux_sym_argument_list_repeat1, - STATE(2598), 1, - sym__comprehension_clauses, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_PIPE, + [101280] = 3, + ACTIONS(3040), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101214] = 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(3012), 1, + ACTIONS(3024), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3028), 1, anon_sym_BSLASH, - ACTIONS(3062), 1, + ACTIONS(3042), 1, sym_string_end, - STATE(1821), 2, + STATE(1783), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3014), 3, + ACTIONS(3026), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1673), 3, + STATE(1675), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101244] = 6, - ACTIONS(2957), 1, + [101330] = 6, + ACTIONS(2953), 1, anon_sym_as, - ACTIONS(2959), 1, + ACTIONS(2955), 1, anon_sym_if, - ACTIONS(2965), 1, + ACTIONS(2961), 1, anon_sym_and, - ACTIONS(2967), 1, + ACTIONS(2963), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2989), 7, + ACTIONS(3000), 7, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, @@ -111930,789 +111654,856 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_PIPE, - [101270] = 12, - ACTIONS(3025), 1, + [101356] = 3, + ACTIONS(3044), 1, anon_sym_as, - ACTIONS(3027), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3002), 10, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_if, - ACTIONS(3029), 1, + anon_sym_COLON, anon_sym_async, - ACTIONS(3031), 1, anon_sym_for, - ACTIONS(3033), 1, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_and, - ACTIONS(3035), 1, anon_sym_or, - ACTIONS(3064), 1, - anon_sym_RPAREN, - ACTIONS(3066), 1, - anon_sym_COMMA, - STATE(1833), 1, - sym_for_in_clause, - STATE(2403), 1, - aux_sym_argument_list_repeat1, - STATE(2721), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [101308] = 8, + [101376] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3012), 1, + ACTIONS(3024), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3028), 1, anon_sym_BSLASH, - ACTIONS(3068), 1, + ACTIONS(3046), 1, sym_string_end, - STATE(1821), 2, + STATE(1783), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3014), 3, + ACTIONS(3026), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1673), 3, + STATE(1697), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101338] = 12, - ACTIONS(3020), 1, - anon_sym_RPAREN, - ACTIONS(3025), 1, + [101406] = 12, + ACTIONS(3010), 1, + anon_sym_COMMA, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3027), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(3029), 1, + ACTIONS(3016), 1, anon_sym_async, - ACTIONS(3031), 1, + ACTIONS(3018), 1, anon_sym_for, - ACTIONS(3033), 1, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(3035), 1, + ACTIONS(3022), 1, anon_sym_or, - ACTIONS(3045), 1, - anon_sym_COMMA, - STATE(1833), 1, + ACTIONS(3048), 1, + anon_sym_RPAREN, + STATE(1859), 1, sym_for_in_clause, - STATE(2322), 1, + STATE(2346), 1, aux_sym__collection_elements_repeat1, - STATE(2741), 1, + STATE(2622), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101376] = 12, - ACTIONS(3025), 1, + [101444] = 12, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3027), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(3029), 1, + ACTIONS(3016), 1, anon_sym_async, - ACTIONS(3031), 1, + ACTIONS(3018), 1, anon_sym_for, - ACTIONS(3033), 1, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(3035), 1, + ACTIONS(3022), 1, anon_sym_or, - ACTIONS(3070), 1, + ACTIONS(3050), 1, anon_sym_RPAREN, - ACTIONS(3072), 1, + ACTIONS(3052), 1, anon_sym_COMMA, - STATE(1833), 1, + STATE(1859), 1, sym_for_in_clause, - STATE(2255), 1, + STATE(2290), 1, aux_sym_argument_list_repeat1, - STATE(2741), 1, + STATE(2622), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101414] = 9, - ACTIONS(2991), 1, + [101482] = 12, + ACTIONS(3010), 1, + anon_sym_COMMA, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(2993), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(2995), 1, + ACTIONS(3016), 1, + anon_sym_async, + ACTIONS(3018), 1, + anon_sym_for, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(2997), 1, + ACTIONS(3022), 1, anon_sym_or, - ACTIONS(3076), 1, - anon_sym_COMMA, - STATE(2155), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3054), 1, + anon_sym_RPAREN, + STATE(1859), 1, + sym_for_in_clause, + STATE(2346), 1, + aux_sym__collection_elements_repeat1, + STATE(2739), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3074), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(2955), 3, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_PIPE, - [101446] = 8, + [101520] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3012), 1, + ACTIONS(3024), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3028), 1, anon_sym_BSLASH, - ACTIONS(3078), 1, + ACTIONS(3056), 1, sym_string_end, - STATE(1821), 2, + STATE(1783), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3014), 3, + ACTIONS(3026), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1683), 3, + STATE(1697), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101476] = 8, - ACTIONS(3), 1, + [101550] = 4, + ACTIONS(2961), 1, + anon_sym_and, + ACTIONS(3044), 1, + anon_sym_as, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3012), 1, - anon_sym_LBRACE, - ACTIONS(3016), 1, - anon_sym_BSLASH, - ACTIONS(3080), 1, - sym_string_end, - STATE(1821), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3014), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1673), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [101506] = 12, - ACTIONS(3025), 1, - anon_sym_as, - ACTIONS(3027), 1, + ACTIONS(3002), 9, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_if, - ACTIONS(3029), 1, + anon_sym_COLON, anon_sym_async, - ACTIONS(3031), 1, anon_sym_for, - ACTIONS(3033), 1, - anon_sym_and, - ACTIONS(3035), 1, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_or, - ACTIONS(3082), 1, - anon_sym_RPAREN, - ACTIONS(3084), 1, - anon_sym_COMMA, - STATE(1833), 1, - sym_for_in_clause, - STATE(2309), 1, - aux_sym_argument_list_repeat1, - STATE(2762), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [101544] = 8, + [101572] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3012), 1, + ACTIONS(3024), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3028), 1, anon_sym_BSLASH, - ACTIONS(3086), 1, + ACTIONS(3058), 1, sym_string_end, - STATE(1821), 2, + STATE(1783), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3014), 3, + ACTIONS(3026), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1686), 3, + STATE(1682), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101574] = 8, + [101602] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3012), 1, + ACTIONS(3024), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3028), 1, anon_sym_BSLASH, - ACTIONS(3088), 1, + ACTIONS(3060), 1, sym_string_end, - STATE(1821), 2, + STATE(1783), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3014), 3, + ACTIONS(3026), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1673), 3, + STATE(1697), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101604] = 12, - ACTIONS(3025), 1, + [101632] = 12, + ACTIONS(3010), 1, + anon_sym_COMMA, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3027), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(3029), 1, + ACTIONS(3016), 1, anon_sym_async, - ACTIONS(3031), 1, + ACTIONS(3018), 1, anon_sym_for, - ACTIONS(3033), 1, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(3035), 1, + ACTIONS(3022), 1, anon_sym_or, - ACTIONS(3045), 1, - anon_sym_COMMA, - ACTIONS(3090), 1, + ACTIONS(3062), 1, anon_sym_RPAREN, - STATE(1833), 1, + STATE(1859), 1, sym_for_in_clause, - STATE(2322), 1, + STATE(2346), 1, aux_sym__collection_elements_repeat1, - STATE(2700), 1, + STATE(2693), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101642] = 12, - ACTIONS(3025), 1, + [101670] = 12, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3027), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(3029), 1, + ACTIONS(3016), 1, anon_sym_async, - ACTIONS(3031), 1, + ACTIONS(3018), 1, anon_sym_for, - ACTIONS(3033), 1, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(3035), 1, + ACTIONS(3022), 1, anon_sym_or, - ACTIONS(3092), 1, + ACTIONS(3064), 1, anon_sym_RPAREN, - ACTIONS(3094), 1, + ACTIONS(3066), 1, anon_sym_COMMA, - STATE(1833), 1, + STATE(1859), 1, sym_for_in_clause, - STATE(2355), 1, + STATE(2337), 1, aux_sym_argument_list_repeat1, - STATE(2700), 1, + STATE(2693), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101680] = 3, - ACTIONS(2094), 1, + [101708] = 9, + ACTIONS(2967), 1, anon_sym_as, + ACTIONS(2969), 1, + anon_sym_if, + ACTIONS(2971), 1, + anon_sym_and, + ACTIONS(2973), 1, + anon_sym_or, + ACTIONS(3070), 1, + anon_sym_COMMA, + STATE(2111), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2080), 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, - [101700] = 8, + [101740] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3012), 1, + ACTIONS(3024), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3028), 1, anon_sym_BSLASH, - ACTIONS(3096), 1, + ACTIONS(3072), 1, sym_string_end, - STATE(1821), 2, + STATE(1783), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3014), 3, + ACTIONS(3026), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1691), 3, + STATE(1689), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101730] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, + [101770] = 12, ACTIONS(3012), 1, - anon_sym_LBRACE, - ACTIONS(3016), 1, - anon_sym_BSLASH, - ACTIONS(3098), 1, - sym_string_end, - STATE(1821), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3014), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1673), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [101760] = 12, - ACTIONS(3025), 1, anon_sym_as, - ACTIONS(3027), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(3029), 1, + ACTIONS(3016), 1, anon_sym_async, - ACTIONS(3031), 1, + ACTIONS(3018), 1, anon_sym_for, - ACTIONS(3033), 1, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(3035), 1, + ACTIONS(3022), 1, anon_sym_or, - ACTIONS(3045), 1, - anon_sym_COMMA, - ACTIONS(3100), 1, + ACTIONS(3074), 1, anon_sym_RPAREN, - STATE(1833), 1, + ACTIONS(3076), 1, + anon_sym_COMMA, + STATE(1859), 1, sym_for_in_clause, - STATE(2322), 1, + STATE(2346), 1, aux_sym__collection_elements_repeat1, - STATE(2636), 1, + STATE(2752), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101798] = 12, - ACTIONS(3025), 1, + [101808] = 12, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3027), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(3029), 1, + ACTIONS(3016), 1, anon_sym_async, - ACTIONS(3031), 1, + ACTIONS(3018), 1, anon_sym_for, - ACTIONS(3033), 1, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(3035), 1, + ACTIONS(3022), 1, anon_sym_or, - ACTIONS(3102), 1, + ACTIONS(3079), 1, anon_sym_RPAREN, - ACTIONS(3104), 1, + ACTIONS(3081), 1, anon_sym_COMMA, - STATE(1833), 1, + STATE(1859), 1, sym_for_in_clause, - STATE(2378), 1, + STATE(2376), 1, aux_sym_argument_list_repeat1, - STATE(2636), 1, + STATE(2739), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101836] = 8, + [101846] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3012), 1, + ACTIONS(3024), 1, anon_sym_LBRACE, + ACTIONS(3028), 1, + anon_sym_BSLASH, + ACTIONS(3083), 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, + [101876] = 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(3085), 1, + anon_sym_RPAREN, + ACTIONS(3087), 1, + anon_sym_COMMA, + STATE(1859), 1, + sym_for_in_clause, + STATE(2364), 1, + aux_sym_argument_list_repeat1, + STATE(2653), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [101914] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3024), 1, + anon_sym_LBRACE, + ACTIONS(3028), 1, anon_sym_BSLASH, - ACTIONS(3106), 1, + ACTIONS(3089), 1, sym_string_end, - STATE(1821), 2, + STATE(1783), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3014), 3, + ACTIONS(3026), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1695), 3, + STATE(1692), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101866] = 8, + [101944] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3012), 1, + ACTIONS(3024), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3028), 1, anon_sym_BSLASH, - ACTIONS(3108), 1, + ACTIONS(3091), 1, sym_string_end, - STATE(1821), 2, + STATE(1783), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3014), 3, + ACTIONS(3026), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1673), 3, + STATE(1697), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101896] = 12, - ACTIONS(3025), 1, + [101974] = 12, + ACTIONS(3010), 1, + anon_sym_COMMA, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3027), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(3029), 1, + ACTIONS(3016), 1, anon_sym_async, - ACTIONS(3031), 1, + ACTIONS(3018), 1, anon_sym_for, - ACTIONS(3033), 1, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(3035), 1, + ACTIONS(3022), 1, anon_sym_or, - ACTIONS(3045), 1, - anon_sym_COMMA, - ACTIONS(3110), 1, + ACTIONS(3093), 1, anon_sym_RPAREN, - STATE(1833), 1, + STATE(1859), 1, sym_for_in_clause, - STATE(2322), 1, + STATE(2346), 1, aux_sym__collection_elements_repeat1, - STATE(2697), 1, + STATE(2681), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101934] = 3, - ACTIONS(3112), 1, + [102012] = 6, + ACTIONS(2953), 1, anon_sym_as, + ACTIONS(2955), 1, + anon_sym_if, + ACTIONS(2961), 1, + anon_sym_and, + ACTIONS(2963), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3010), 10, + ACTIONS(3004), 7, anon_sym_DOT, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [101954] = 12, - ACTIONS(3025), 1, + [102038] = 12, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3027), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(3029), 1, + ACTIONS(3016), 1, anon_sym_async, - ACTIONS(3031), 1, + ACTIONS(3018), 1, anon_sym_for, - ACTIONS(3033), 1, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(3035), 1, + ACTIONS(3022), 1, anon_sym_or, - ACTIONS(3114), 1, + ACTIONS(3095), 1, anon_sym_RPAREN, - ACTIONS(3116), 1, + ACTIONS(3097), 1, anon_sym_COMMA, - STATE(1833), 1, + STATE(1859), 1, sym_for_in_clause, - STATE(2399), 1, + STATE(2388), 1, aux_sym_argument_list_repeat1, - STATE(2697), 1, + STATE(2681), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101992] = 12, - ACTIONS(3025), 1, - anon_sym_as, - ACTIONS(3027), 1, - anon_sym_if, - ACTIONS(3029), 1, - anon_sym_async, - ACTIONS(3031), 1, - anon_sym_for, - ACTIONS(3033), 1, - anon_sym_and, - ACTIONS(3035), 1, - anon_sym_or, - ACTIONS(3045), 1, - anon_sym_COMMA, - ACTIONS(3118), 1, - anon_sym_RPAREN, - STATE(1833), 1, - sym_for_in_clause, - STATE(2322), 1, - aux_sym__collection_elements_repeat1, - STATE(2721), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, + [102076] = 8, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - [102030] = 8, + ACTIONS(3024), 1, + anon_sym_LBRACE, + ACTIONS(3028), 1, + anon_sym_BSLASH, + ACTIONS(3099), 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(1698), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [102106] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3012), 1, + ACTIONS(3101), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3107), 1, anon_sym_BSLASH, - ACTIONS(3120), 1, + ACTIONS(3110), 1, sym_string_end, - STATE(1821), 2, + STATE(1783), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3014), 3, + ACTIONS(3104), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1701), 3, + STATE(1697), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102060] = 8, + [102136] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3012), 1, + ACTIONS(3024), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3028), 1, anon_sym_BSLASH, - ACTIONS(3122), 1, + ACTIONS(3112), 1, sym_string_end, - STATE(1821), 2, + STATE(1783), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3014), 3, + ACTIONS(3026), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1673), 3, + STATE(1697), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102090] = 12, - ACTIONS(3025), 1, + [102166] = 12, + ACTIONS(3010), 1, + anon_sym_COMMA, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3027), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(3029), 1, + ACTIONS(3016), 1, anon_sym_async, - ACTIONS(3031), 1, + ACTIONS(3018), 1, anon_sym_for, - ACTIONS(3033), 1, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(3035), 1, + ACTIONS(3022), 1, anon_sym_or, - ACTIONS(3045), 1, - anon_sym_COMMA, - ACTIONS(3124), 1, + ACTIONS(3114), 1, anon_sym_RPAREN, - STATE(1833), 1, + STATE(1859), 1, sym_for_in_clause, - STATE(2322), 1, + STATE(2346), 1, aux_sym__collection_elements_repeat1, - STATE(2610), 1, + STATE(2600), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102128] = 12, - ACTIONS(3025), 1, + [102204] = 12, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3027), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(3029), 1, + ACTIONS(3016), 1, anon_sym_async, - ACTIONS(3031), 1, + ACTIONS(3018), 1, anon_sym_for, - ACTIONS(3033), 1, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(3035), 1, + ACTIONS(3022), 1, anon_sym_or, - ACTIONS(3126), 1, + ACTIONS(3116), 1, anon_sym_RPAREN, - ACTIONS(3128), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - STATE(1833), 1, + STATE(1859), 1, sym_for_in_clause, - STATE(2422), 1, + STATE(2336), 1, + aux_sym_argument_list_repeat1, + 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(2610), 1, + STATE(2600), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102166] = 8, + [102280] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3012), 1, + ACTIONS(3024), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3028), 1, anon_sym_BSLASH, - ACTIONS(3130), 1, + ACTIONS(3124), 1, sym_string_end, - STATE(1821), 2, + STATE(1783), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3014), 3, + ACTIONS(3026), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1705), 3, + STATE(1703), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102196] = 8, + [102310] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3012), 1, + ACTIONS(3024), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3028), 1, anon_sym_BSLASH, - ACTIONS(3132), 1, + ACTIONS(3126), 1, sym_string_end, - STATE(1821), 2, + STATE(1783), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3014), 3, + ACTIONS(3026), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1673), 3, + STATE(1697), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102226] = 12, - ACTIONS(2957), 1, - anon_sym_as, - ACTIONS(2959), 1, - anon_sym_if, + [102340] = 5, ACTIONS(2961), 1, - anon_sym_async, - ACTIONS(2963), 1, - anon_sym_for, - ACTIONS(2965), 1, anon_sym_and, - ACTIONS(2967), 1, + ACTIONS(2963), 1, anon_sym_or, - ACTIONS(2983), 1, - anon_sym_RBRACK, - ACTIONS(3037), 1, - anon_sym_COMMA, - STATE(1871), 1, - sym_for_in_clause, - STATE(2458), 1, - aux_sym__collection_elements_repeat1, - STATE(2733), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [102264] = 6, - ACTIONS(2957), 1, + ACTIONS(3128), 1, anon_sym_as, - ACTIONS(2959), 1, - anon_sym_if, - ACTIONS(2965), 1, - anon_sym_and, - ACTIONS(2967), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3001), 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, - [102290] = 5, - ACTIONS(2965), 1, + [102364] = 12, + ACTIONS(2953), 1, + anon_sym_as, + ACTIONS(2955), 1, + anon_sym_if, + ACTIONS(2957), 1, + anon_sym_async, + ACTIONS(2959), 1, + anon_sym_for, + ACTIONS(2961), 1, anon_sym_and, - ACTIONS(2967), 1, + ACTIONS(2963), 1, anon_sym_or, - ACTIONS(3134), 1, - anon_sym_as, + 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(2753), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3003), 8, - anon_sym_DOT, - anon_sym_COMMA, + [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(2955), 1, anon_sym_if, - anon_sym_COLON, + ACTIONS(2957), 1, anon_sym_async, + ACTIONS(2959), 1, anon_sym_for, + ACTIONS(2961), 1, + anon_sym_and, + ACTIONS(2963), 1, + anon_sym_or, + ACTIONS(2987), 1, anon_sym_RBRACK, - anon_sym_PIPE, - [102314] = 12, - ACTIONS(2957), 1, + 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, + [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(2959), 1, + ACTIONS(2955), 1, anon_sym_if, - ACTIONS(2961), 1, + ACTIONS(2957), 1, anon_sym_async, - ACTIONS(2963), 1, + ACTIONS(2959), 1, anon_sym_for, - ACTIONS(2965), 1, + ACTIONS(2961), 1, anon_sym_and, - ACTIONS(2967), 1, + ACTIONS(2963), 1, anon_sym_or, - ACTIONS(2983), 1, + ACTIONS(2987), 1, anon_sym_RBRACK, - ACTIONS(3037), 1, + ACTIONS(3131), 1, anon_sym_COMMA, - STATE(1871), 1, + STATE(1858), 1, sym_for_in_clause, - STATE(2458), 1, + STATE(2397), 1, aux_sym__collection_elements_repeat1, - STATE(2767), 1, + STATE(2686), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102352] = 5, - ACTIONS(2965), 1, - anon_sym_and, - ACTIONS(2967), 1, - anon_sym_or, - ACTIONS(3137), 1, + [102538] = 3, + ACTIONS(2088), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3008), 8, + ACTIONS(2074), 10, anon_sym_DOT, anon_sym_COMMA, anon_sym_if, @@ -112721,13 +112512,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_PIPE, - [102376] = 3, - ACTIONS(3139), 1, + anon_sym_and, + anon_sym_or, + [102558] = 5, + ACTIONS(2961), 1, + anon_sym_and, + ACTIONS(2963), 1, + anon_sym_or, + ACTIONS(3137), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2969), 10, + ACTIONS(2998), 8, anon_sym_DOT, anon_sym_COMMA, anon_sym_if, @@ -112736,228 +112533,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [102396] = 12, - ACTIONS(2957), 1, + [102582] = 12, + ACTIONS(2953), 1, anon_sym_as, - ACTIONS(2959), 1, + ACTIONS(2955), 1, anon_sym_if, - ACTIONS(2961), 1, + ACTIONS(2957), 1, anon_sym_async, - ACTIONS(2963), 1, + ACTIONS(2959), 1, anon_sym_for, - ACTIONS(2965), 1, + ACTIONS(2961), 1, anon_sym_and, - ACTIONS(2967), 1, + ACTIONS(2963), 1, anon_sym_or, - ACTIONS(2983), 1, + ACTIONS(2987), 1, anon_sym_RBRACK, - ACTIONS(3037), 1, + ACTIONS(3131), 1, anon_sym_COMMA, - STATE(1871), 1, + STATE(1858), 1, sym_for_in_clause, - STATE(2458), 1, + STATE(2397), 1, aux_sym__collection_elements_repeat1, - STATE(2771), 1, + STATE(2697), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102434] = 4, - ACTIONS(2965), 1, - anon_sym_and, - ACTIONS(3139), 1, + [102620] = 12, + ACTIONS(2953), 1, anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2969), 9, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(2955), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_or, - [102456] = 12, ACTIONS(2957), 1, - anon_sym_as, - ACTIONS(2959), 1, - anon_sym_if, - ACTIONS(2961), 1, anon_sym_async, - ACTIONS(2963), 1, + ACTIONS(2959), 1, anon_sym_for, - ACTIONS(2965), 1, + ACTIONS(2961), 1, anon_sym_and, - ACTIONS(2967), 1, + ACTIONS(2963), 1, anon_sym_or, - ACTIONS(2983), 1, + ACTIONS(2987), 1, anon_sym_RBRACK, - ACTIONS(3037), 1, + ACTIONS(3131), 1, anon_sym_COMMA, - STATE(1871), 1, + STATE(1858), 1, sym_for_in_clause, - STATE(2458), 1, + STATE(2397), 1, aux_sym__collection_elements_repeat1, - STATE(2788), 1, + STATE(2685), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102494] = 12, - ACTIONS(2957), 1, + [102658] = 12, + ACTIONS(2953), 1, anon_sym_as, - ACTIONS(2959), 1, + ACTIONS(2955), 1, anon_sym_if, - ACTIONS(2961), 1, + ACTIONS(2957), 1, anon_sym_async, - ACTIONS(2963), 1, + ACTIONS(2959), 1, anon_sym_for, - ACTIONS(2965), 1, + ACTIONS(2961), 1, anon_sym_and, - ACTIONS(2967), 1, + ACTIONS(2963), 1, anon_sym_or, - ACTIONS(2983), 1, + ACTIONS(2987), 1, anon_sym_RBRACK, - ACTIONS(3037), 1, + ACTIONS(3131), 1, anon_sym_COMMA, - STATE(1871), 1, + STATE(1858), 1, sym_for_in_clause, - STATE(2458), 1, + STATE(2397), 1, aux_sym__collection_elements_repeat1, - STATE(2669), 1, + STATE(2661), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102532] = 12, - ACTIONS(2957), 1, + [102696] = 12, + ACTIONS(2953), 1, anon_sym_as, - ACTIONS(2959), 1, + ACTIONS(2955), 1, anon_sym_if, - ACTIONS(2961), 1, + ACTIONS(2957), 1, anon_sym_async, - ACTIONS(2963), 1, + ACTIONS(2959), 1, anon_sym_for, - ACTIONS(2965), 1, + ACTIONS(2961), 1, anon_sym_and, - ACTIONS(2967), 1, + ACTIONS(2963), 1, anon_sym_or, - ACTIONS(2983), 1, + ACTIONS(2987), 1, anon_sym_RBRACK, - ACTIONS(3037), 1, + ACTIONS(3131), 1, anon_sym_COMMA, - STATE(1871), 1, + STATE(1858), 1, sym_for_in_clause, - STATE(2458), 1, + STATE(2397), 1, aux_sym__collection_elements_repeat1, - STATE(2705), 1, + STATE(2682), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102570] = 12, - ACTIONS(2957), 1, + [102734] = 12, + ACTIONS(2953), 1, anon_sym_as, - ACTIONS(2959), 1, + ACTIONS(2955), 1, anon_sym_if, - ACTIONS(2961), 1, + ACTIONS(2957), 1, anon_sym_async, - ACTIONS(2963), 1, + ACTIONS(2959), 1, anon_sym_for, - ACTIONS(2965), 1, + ACTIONS(2961), 1, anon_sym_and, - ACTIONS(2967), 1, + ACTIONS(2963), 1, anon_sym_or, - ACTIONS(2983), 1, + ACTIONS(2987), 1, anon_sym_RBRACK, - ACTIONS(3037), 1, + ACTIONS(3131), 1, anon_sym_COMMA, - STATE(1871), 1, + STATE(1858), 1, sym_for_in_clause, - STATE(2458), 1, + STATE(2397), 1, aux_sym__collection_elements_repeat1, - STATE(2611), 1, + STATE(2601), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102608] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, + [102772] = 12, + ACTIONS(3010), 1, + anon_sym_COMMA, ACTIONS(3012), 1, - anon_sym_LBRACE, - ACTIONS(3016), 1, - anon_sym_BSLASH, - ACTIONS(3141), 1, - sym_string_end, - STATE(1821), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3014), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1675), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [102638] = 12, - ACTIONS(3025), 1, anon_sym_as, - ACTIONS(3027), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(3029), 1, + ACTIONS(3016), 1, anon_sym_async, - ACTIONS(3031), 1, + ACTIONS(3018), 1, anon_sym_for, - ACTIONS(3033), 1, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(3035), 1, + ACTIONS(3022), 1, anon_sym_or, - ACTIONS(3045), 1, - anon_sym_COMMA, - ACTIONS(3143), 1, + ACTIONS(3139), 1, anon_sym_RPAREN, - STATE(1833), 1, + STATE(1859), 1, sym_for_in_clause, - STATE(2322), 1, + STATE(2346), 1, aux_sym__collection_elements_repeat1, - STATE(2762), 1, + STATE(2590), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102676] = 6, - ACTIONS(3145), 1, + [102810] = 12, + ACTIONS(3010), 1, + anon_sym_COMMA, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3147), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(3149), 1, + ACTIONS(3016), 1, + anon_sym_async, + ACTIONS(3018), 1, + anon_sym_for, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(3151), 1, + 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, sym_line_continuation, - ACTIONS(2999), 6, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [102701] = 2, + [102848] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2080), 10, + ACTIONS(3006), 10, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, @@ -112968,37 +112730,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [102718] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3010), 10, - anon_sym_DOT, + [102865] = 8, + ACTIONS(3141), 1, anon_sym_COMMA, + ACTIONS(3143), 1, anon_sym_as, + ACTIONS(3145), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(3149), 1, anon_sym_and, + ACTIONS(3151), 1, anon_sym_or, - [102735] = 2, + STATE(1889), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3010), 10, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + ACTIONS(3147), 4, anon_sym_COLON, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [102752] = 6, + anon_sym_RBRACE, + sym_type_conversion, + [102894] = 6, ACTIONS(3153), 1, anon_sym_as, ACTIONS(3155), 1, @@ -113010,40 +112763,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3001), 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, - [102777] = 5, - ACTIONS(3157), 1, - anon_sym_and, - ACTIONS(3159), 1, - anon_sym_or, - ACTIONS(3161), 1, - anon_sym_as, + [102919] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3003), 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, - [102800] = 4, - ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3159), 1, anon_sym_or, + [102936] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3008), 8, + ACTIONS(2074), 10, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -113052,57 +112798,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [102821] = 2, + anon_sym_and, + anon_sym_or, + [102953] = 6, + ACTIONS(2967), 1, + anon_sym_as, + ACTIONS(2969), 1, + anon_sym_if, + ACTIONS(2971), 1, + anon_sym_and, + ACTIONS(2973), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2969), 10, + ACTIONS(2951), 6, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_EQ, anon_sym_PIPE, + [102978] = 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, - [102838] = 3, - ACTIONS(3157), 1, - anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2969), 9, + ACTIONS(3004), 6, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - anon_sym_or, - [102857] = 6, - ACTIONS(3153), 1, - anon_sym_as, - ACTIONS(3155), 1, - anon_sym_if, - ACTIONS(3157), 1, + [103003] = 5, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3159), 1, + ACTIONS(3167), 1, anon_sym_or, + ACTIONS(3169), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2999), 6, + ACTIONS(2993), 7, anon_sym_DOT, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [102882] = 6, + [103026] = 6, ACTIONS(3153), 1, anon_sym_as, ACTIONS(3155), 1, @@ -113114,136 +112868,144 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2989), 6, + ACTIONS(3000), 6, anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [102907] = 6, - ACTIONS(2991), 1, - anon_sym_as, - ACTIONS(2993), 1, - anon_sym_if, - ACTIONS(2995), 1, + [103051] = 4, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(2997), 1, + ACTIONS(3167), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2955), 6, - sym__newline, - anon_sym_SEMI, + ACTIONS(2998), 8, anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [102932] = 6, - ACTIONS(3145), 1, + [103072] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3002), 10, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3147), 1, anon_sym_if, - ACTIONS(3149), 1, + anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_and, - ACTIONS(3151), 1, anon_sym_or, + [103089] = 3, + ACTIONS(3165), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2989), 6, + ACTIONS(3002), 9, anon_sym_DOT, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [102957] = 6, - ACTIONS(3145), 1, + anon_sym_or, + [103108] = 6, + ACTIONS(3161), 1, anon_sym_as, - ACTIONS(3147), 1, + ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3149), 1, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3151), 1, + ACTIONS(3167), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2955), 6, + ACTIONS(3000), 6, anon_sym_DOT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, + anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [102982] = 8, - ACTIONS(3164), 1, - anon_sym_COMMA, - ACTIONS(3166), 1, + [103133] = 6, + ACTIONS(3153), 1, anon_sym_as, - ACTIONS(3168), 1, + ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3172), 1, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3174), 1, + ACTIONS(3159), 1, anon_sym_or, - STATE(1984), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3170), 4, + ACTIONS(3004), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [103011] = 8, - ACTIONS(3164), 1, - anon_sym_COMMA, - ACTIONS(3166), 1, + anon_sym_PIPE, + [103158] = 6, + ACTIONS(3153), 1, anon_sym_as, - ACTIONS(3168), 1, + ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3172), 1, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3174), 1, + ACTIONS(3159), 1, anon_sym_or, - STATE(1984), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3176), 4, + ACTIONS(2951), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [103040] = 6, - ACTIONS(3145), 1, + anon_sym_PIPE, + [103183] = 8, + ACTIONS(3141), 1, + anon_sym_COMMA, + ACTIONS(3143), 1, anon_sym_as, - ACTIONS(3147), 1, + ACTIONS(3145), 1, anon_sym_if, ACTIONS(3149), 1, anon_sym_and, ACTIONS(3151), 1, anon_sym_or, + STATE(1889), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3001), 6, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3172), 4, anon_sym_COLON, anon_sym_EQ, - anon_sym_PIPE, - [103065] = 2, + anon_sym_RBRACE, + sym_type_conversion, + [103212] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2080), 10, + ACTIONS(3006), 10, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -113254,17 +113016,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [103082] = 5, - ACTIONS(3149), 1, + [103229] = 5, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3151), 1, + ACTIONS(3159), 1, anon_sym_or, - ACTIONS(3178), 1, + ACTIONS(3174), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3003), 7, + ACTIONS(2993), 7, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, @@ -113272,15 +113034,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [103105] = 4, - ACTIONS(3149), 1, + [103252] = 4, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3151), 1, + ACTIONS(3159), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3008), 8, + ACTIONS(2998), 8, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, @@ -113289,11 +113051,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [103126] = 2, + [103273] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2969), 10, + ACTIONS(3002), 10, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, @@ -113304,203 +113066,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [103143] = 3, - ACTIONS(3149), 1, - anon_sym_and, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2969), 9, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_or, - [103162] = 6, - ACTIONS(3181), 1, + [103290] = 6, + ACTIONS(3161), 1, anon_sym_as, - ACTIONS(3183), 1, + ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3185), 1, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3187), 1, + ACTIONS(3167), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2989), 5, + ACTIONS(2965), 6, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_else, + anon_sym_EQ, anon_sym_PIPE, - [103186] = 2, + [103315] = 3, + ACTIONS(3157), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2080), 9, + 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_and, anon_sym_or, - [103202] = 2, + [103334] = 3, + ACTIONS(3040), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3010), 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, - [103218] = 2, + [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(3010), 9, - anon_sym_DOT, + ACTIONS(2998), 6, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [103234] = 6, - ACTIONS(3181), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [103374] = 3, + ACTIONS(3044), 1, anon_sym_as, - ACTIONS(3183), 1, - anon_sym_if, - ACTIONS(3185), 1, - anon_sym_and, - ACTIONS(3187), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3001), 5, - anon_sym_DOT, + ACTIONS(3002), 8, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [103258] = 5, - ACTIONS(3185), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, anon_sym_and, - ACTIONS(3187), 1, anon_sym_or, - ACTIONS(3189), 1, - anon_sym_as, + [103392] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3003), 6, + ACTIONS(3002), 9, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [103280] = 4, - ACTIONS(3185), 1, anon_sym_and, - ACTIONS(3187), 1, + anon_sym_or, + [103408] = 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(3008), 7, + ACTIONS(3004), 5, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [103300] = 2, + [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(2969), 9, - anon_sym_DOT, + ACTIONS(3187), 6, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [103316] = 3, + [103454] = 4, ACTIONS(3185), 1, - anon_sym_and, + anon_sym_DOT, + STATE(1772), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2969), 8, - 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, - anon_sym_or, - [103334] = 5, - ACTIONS(2985), 1, - anon_sym_and, - ACTIONS(2987), 1, - anon_sym_or, - ACTIONS(3137), 1, - anon_sym_as, + [103474] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3008), 6, + ACTIONS(2074), 9, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [103356] = 3, - ACTIONS(3139), 1, anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2969), 8, - anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_and, anon_sym_or, - [103374] = 4, - ACTIONS(2985), 1, + [103490] = 4, + ACTIONS(2989), 1, anon_sym_and, - ACTIONS(3139), 1, + ACTIONS(3044), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2969), 7, + ACTIONS(3002), 7, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, @@ -113508,359 +113243,297 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACE, anon_sym_or, - [103394] = 6, + [103510] = 3, ACTIONS(3181), 1, - anon_sym_as, - ACTIONS(3183), 1, - anon_sym_if, - ACTIONS(3185), 1, anon_sym_and, - ACTIONS(3187), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2999), 5, + ACTIONS(3002), 8, anon_sym_DOT, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [103418] = 3, - ACTIONS(3112), 1, anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3010), 8, - anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - anon_sym_and, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_or, - [103436] = 4, - ACTIONS(3194), 1, - anon_sym_DOT, - STATE(1774), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3192), 7, - anon_sym_import, - anon_sym_LPAREN, - anon_sym_COMMA, + [103528] = 6, + ACTIONS(3177), 1, anon_sym_as, + ACTIONS(3179), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [103456] = 6, ACTIONS(3181), 1, - anon_sym_as, - ACTIONS(3183), 1, - anon_sym_if, - ACTIONS(3185), 1, anon_sym_and, - ACTIONS(3187), 1, + ACTIONS(3183), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2955), 5, + ACTIONS(2965), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [103480] = 5, - ACTIONS(3194), 1, - anon_sym_DOT, - ACTIONS(3196), 1, - anon_sym_EQ, - STATE(1774), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3192), 6, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [103502] = 6, - ACTIONS(2973), 1, + [103552] = 6, + ACTIONS(2977), 1, anon_sym_as, - ACTIONS(2975), 1, + ACTIONS(2979), 1, anon_sym_if, - ACTIONS(2985), 1, + ACTIONS(2989), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(2991), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2999), 5, + ACTIONS(3000), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [103526] = 9, - ACTIONS(2991), 1, - anon_sym_as, - ACTIONS(2993), 1, - anon_sym_if, - ACTIONS(2995), 1, - anon_sym_and, - ACTIONS(2997), 1, - anon_sym_or, - ACTIONS(3200), 1, - anon_sym_from, - ACTIONS(3202), 1, - anon_sym_COMMA, - STATE(2033), 1, - aux_sym_assert_statement_repeat1, + [103576] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3198), 2, - sym__newline, - anon_sym_SEMI, - [103556] = 6, - ACTIONS(3166), 1, + ACTIONS(3006), 9, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3168), 1, anon_sym_if, - ACTIONS(3172), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_and, - ACTIONS(3174), 1, anon_sym_or, + [103592] = 3, + ACTIONS(2088), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3204), 5, + ACTIONS(2074), 8, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - sym_type_conversion, - [103580] = 6, - ACTIONS(2973), 1, + anon_sym_and, + anon_sym_or, + [103610] = 6, + ACTIONS(2977), 1, anon_sym_as, - ACTIONS(2975), 1, + ACTIONS(2979), 1, anon_sym_if, - ACTIONS(2985), 1, + ACTIONS(2989), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(2991), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3001), 5, + ACTIONS(2965), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [103604] = 6, - ACTIONS(3153), 1, + [103634] = 6, + ACTIONS(3177), 1, anon_sym_as, - ACTIONS(3155), 1, + ACTIONS(3179), 1, anon_sym_if, - ACTIONS(3157), 1, + ACTIONS(3181), 1, anon_sym_and, - ACTIONS(3159), 1, + ACTIONS(3183), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2955), 5, + ACTIONS(2951), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, + anon_sym_RBRACK, anon_sym_PIPE, - [103628] = 6, - ACTIONS(3166), 1, + [103658] = 6, + ACTIONS(3143), 1, anon_sym_as, - ACTIONS(3168), 1, + ACTIONS(3145), 1, anon_sym_if, - ACTIONS(3172), 1, + ACTIONS(3149), 1, anon_sym_and, - ACTIONS(3174), 1, + ACTIONS(3151), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3206), 5, + ACTIONS(3000), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [103652] = 4, - ACTIONS(3210), 1, - anon_sym_DOT, - STATE(1765), 1, - aux_sym_dotted_name_repeat1, + [103682] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3208), 7, - anon_sym_import, - anon_sym_LPAREN, + ACTIONS(3006), 9, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - [103672] = 6, - ACTIONS(3166), 1, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [103698] = 6, + ACTIONS(3143), 1, anon_sym_as, - ACTIONS(3168), 1, + ACTIONS(3145), 1, anon_sym_if, - ACTIONS(3172), 1, + ACTIONS(3149), 1, anon_sym_and, - ACTIONS(3174), 1, + ACTIONS(3151), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3001), 5, + ACTIONS(2965), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [103696] = 3, - ACTIONS(2094), 1, + [103722] = 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(2080), 8, + ACTIONS(3004), 5, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_EQ, anon_sym_RBRACE, + sym_type_conversion, + [103746] = 5, + ACTIONS(3149), 1, anon_sym_and, + ACTIONS(3151), 1, anon_sym_or, - [103714] = 5, - ACTIONS(2985), 1, - anon_sym_and, - ACTIONS(2987), 1, - anon_sym_or, - ACTIONS(3213), 1, + ACTIONS(3191), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3003), 6, + ACTIONS(2993), 6, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_EQ, anon_sym_RBRACE, - [103736] = 6, - ACTIONS(3166), 1, + sym_type_conversion, + [103768] = 6, + ACTIONS(3161), 1, anon_sym_as, - ACTIONS(3168), 1, + ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3172), 1, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3174), 1, + ACTIONS(3167), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2999), 5, + ACTIONS(2951), 5, + anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [103760] = 6, - ACTIONS(2973), 1, + anon_sym_PIPE, + [103792] = 6, + ACTIONS(2977), 1, anon_sym_as, - ACTIONS(2975), 1, + ACTIONS(2979), 1, anon_sym_if, - ACTIONS(2985), 1, + ACTIONS(2989), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(2991), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2989), 5, + ACTIONS(3004), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [103784] = 5, - ACTIONS(3172), 1, + [103816] = 4, + ACTIONS(3149), 1, anon_sym_and, - ACTIONS(3174), 1, + ACTIONS(3151), 1, anon_sym_or, - ACTIONS(3216), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3003), 6, + ACTIONS(2998), 7, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [103806] = 4, - ACTIONS(3172), 1, - anon_sym_and, - ACTIONS(3174), 1, - anon_sym_or, + [103836] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3008), 7, + ACTIONS(3002), 9, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, sym_type_conversion, - [103826] = 2, + [103852] = 3, + ACTIONS(3149), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2969), 9, + ACTIONS(3002), 8, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, - anon_sym_and, anon_sym_or, sym_type_conversion, - [103842] = 4, - ACTIONS(3194), 1, + [103870] = 4, + ACTIONS(3196), 1, anon_sym_DOT, - STATE(1765), 1, + STATE(1767), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3219), 7, + ACTIONS(3194), 7, anon_sym_import, anon_sym_LPAREN, anon_sym_COMMA, @@ -113868,26 +113541,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [103862] = 3, - ACTIONS(3172), 1, + [103890] = 5, + ACTIONS(2989), 1, anon_sym_and, + ACTIONS(2991), 1, + anon_sym_or, + ACTIONS(3199), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2969), 8, + ACTIONS(2993), 6, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_EQ, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - anon_sym_or, - sym_type_conversion, - [103880] = 2, + [103912] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2080), 9, + ACTIONS(2074), 9, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -113897,2284 +113572,2318 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [103896] = 6, - ACTIONS(3166), 1, + [103928] = 6, + ACTIONS(3143), 1, anon_sym_as, - ACTIONS(3168), 1, + ACTIONS(3145), 1, anon_sym_if, - ACTIONS(3172), 1, + ACTIONS(3149), 1, anon_sym_and, - ACTIONS(3174), 1, + ACTIONS(3151), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2989), 5, + ACTIONS(3202), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [103920] = 5, - ACTIONS(3033), 1, + [103952] = 5, + ACTIONS(3181), 1, anon_sym_and, - ACTIONS(3035), 1, + ACTIONS(3183), 1, anon_sym_or, - ACTIONS(3137), 1, + ACTIONS(3204), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3008), 5, - anon_sym_RPAREN, + ACTIONS(2993), 6, + anon_sym_DOT, anon_sym_COMMA, anon_sym_if, - anon_sym_async, - anon_sym_for, - [103941] = 5, - ACTIONS(3025), 1, - anon_sym_as, - ACTIONS(3033), 1, - anon_sym_and, - ACTIONS(3035), 1, - anon_sym_or, + 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(3221), 5, - anon_sym_RPAREN, + ACTIONS(3207), 7, + anon_sym_import, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [103962] = 9, - ACTIONS(3181), 1, anon_sym_as, - ACTIONS(3183), 1, anon_sym_if, - ACTIONS(3185), 1, - anon_sym_and, - ACTIONS(3187), 1, - anon_sym_or, - ACTIONS(3223), 1, - anon_sym_COMMA, - ACTIONS(3225), 1, anon_sym_COLON, - ACTIONS(3227), 1, - anon_sym_RBRACK, - STATE(2401), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [103991] = 6, - ACTIONS(2991), 1, + anon_sym_PIPE, + [103994] = 6, + ACTIONS(3143), 1, anon_sym_as, - ACTIONS(2993), 1, + ACTIONS(3145), 1, anon_sym_if, - ACTIONS(2995), 1, + ACTIONS(3149), 1, anon_sym_and, - ACTIONS(2997), 1, + ACTIONS(3151), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3204), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(3209), 5, anon_sym_COMMA, - [104014] = 4, - ACTIONS(320), 1, - sym_string_start, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [104018] = 4, + ACTIONS(3181), 1, + anon_sym_and, + ACTIONS(3183), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1023), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3229), 5, + ACTIONS(2998), 7, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [104033] = 5, - ACTIONS(2957), 1, + [104038] = 9, + ACTIONS(2967), 1, anon_sym_as, - ACTIONS(2965), 1, + ACTIONS(2969), 1, + anon_sym_if, + ACTIONS(2971), 1, anon_sym_and, - ACTIONS(2967), 1, + ACTIONS(2973), 1, anon_sym_or, + ACTIONS(3213), 1, + anon_sym_from, + ACTIONS(3215), 1, + anon_sym_COMMA, + STATE(2076), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3221), 5, - anon_sym_COMMA, + ACTIONS(3211), 2, + sym__newline, + anon_sym_SEMI, + [104068] = 6, + ACTIONS(3177), 1, + anon_sym_as, + ACTIONS(3179), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [104054] = 2, + ACTIONS(3181), 1, + anon_sym_and, + ACTIONS(3183), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3208), 8, - anon_sym_import, + ACTIONS(3000), 5, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [104069] = 3, - ACTIONS(3112), 1, + [104092] = 9, + ACTIONS(3177), 1, anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3010), 7, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3179), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, + ACTIONS(3181), 1, anon_sym_and, + ACTIONS(3183), 1, anon_sym_or, - [104086] = 5, - ACTIONS(3025), 1, + 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, + [104121] = 8, + ACTIONS(2967), 1, anon_sym_as, - ACTIONS(3033), 1, + ACTIONS(2969), 1, + anon_sym_if, + ACTIONS(2971), 1, anon_sym_and, - ACTIONS(3035), 1, + 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(3221), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [104107] = 3, - ACTIONS(2094), 1, + 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(2080), 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, - [104124] = 9, - ACTIONS(3181), 1, + [104169] = 9, + ACTIONS(3177), 1, anon_sym_as, - ACTIONS(3183), 1, + ACTIONS(3179), 1, anon_sym_if, - ACTIONS(3185), 1, + ACTIONS(3181), 1, anon_sym_and, - ACTIONS(3187), 1, + ACTIONS(3183), 1, anon_sym_or, - ACTIONS(3225), 1, + ACTIONS(3219), 1, anon_sym_COLON, - ACTIONS(3231), 1, + ACTIONS(3227), 1, anon_sym_COMMA, - ACTIONS(3233), 1, + ACTIONS(3229), 1, anon_sym_RBRACK, - STATE(2425), 1, + STATE(2251), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104153] = 5, - ACTIONS(3033), 1, + [104198] = 8, + ACTIONS(2967), 1, + anon_sym_as, + ACTIONS(2969), 1, + anon_sym_if, + ACTIONS(2971), 1, anon_sym_and, - ACTIONS(3035), 1, + ACTIONS(2973), 1, anon_sym_or, - ACTIONS(3235), 1, + ACTIONS(3233), 1, + anon_sym_COMMA, + STATE(2108), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3231), 2, + sym__newline, + anon_sym_SEMI, + [104225] = 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, - ACTIONS(3003), 5, - anon_sym_RPAREN, + ACTIONS(3225), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [104174] = 5, - ACTIONS(2973), 1, + anon_sym_RBRACK, + [104246] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3239), 1, + anon_sym_BSLASH, + ACTIONS(3235), 2, + sym_string_end, + anon_sym_LBRACE, + STATE(1804), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3237), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + [104269] = 5, + ACTIONS(2953), 1, anon_sym_as, - ACTIONS(2985), 1, + ACTIONS(2961), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(2963), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3221), 5, + ACTIONS(3225), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [104195] = 7, - ACTIONS(63), 1, - anon_sym_AT, - ACTIONS(3238), 1, - anon_sym_async, - ACTIONS(3240), 1, - anon_sym_def, - ACTIONS(3242), 1, - anon_sym_class, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(785), 2, - sym_function_definition, - sym_class_definition, - STATE(1983), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - [104220] = 9, - ACTIONS(3181), 1, + anon_sym_RBRACK, + [104290] = 6, + ACTIONS(2967), 1, anon_sym_as, - ACTIONS(3183), 1, + ACTIONS(2969), 1, anon_sym_if, - ACTIONS(3185), 1, + ACTIONS(2971), 1, anon_sym_and, - ACTIONS(3187), 1, + ACTIONS(2973), 1, anon_sym_or, - ACTIONS(3225), 1, - anon_sym_COLON, - ACTIONS(3244), 1, - anon_sym_COMMA, - ACTIONS(3246), 1, - anon_sym_RBRACK, - STATE(2431), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104249] = 9, - ACTIONS(3181), 1, + ACTIONS(3209), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + [104313] = 9, + ACTIONS(3177), 1, anon_sym_as, - ACTIONS(3183), 1, + ACTIONS(3179), 1, anon_sym_if, - ACTIONS(3185), 1, + ACTIONS(3181), 1, anon_sym_and, - ACTIONS(3187), 1, + ACTIONS(3183), 1, anon_sym_or, - ACTIONS(3225), 1, + ACTIONS(3219), 1, anon_sym_COLON, - ACTIONS(3248), 1, + ACTIONS(3241), 1, anon_sym_COMMA, - ACTIONS(3250), 1, + ACTIONS(3243), 1, anon_sym_RBRACK, - STATE(2436), 1, + STATE(2385), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104278] = 5, - ACTIONS(2973), 1, - anon_sym_as, - ACTIONS(2985), 1, - anon_sym_and, - ACTIONS(2987), 1, - anon_sym_or, + [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(3221), 5, + ACTIONS(3187), 5, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_as, + anon_sym_PIPE, anon_sym_RBRACE, - [104299] = 5, - ACTIONS(2957), 1, + [104363] = 3, + ACTIONS(3040), 1, anon_sym_as, - ACTIONS(2965), 1, - anon_sym_and, - ACTIONS(2967), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3221), 5, + ACTIONS(3006), 7, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [104320] = 6, - ACTIONS(3025), 1, + anon_sym_and, + anon_sym_or, + [104380] = 6, + ACTIONS(2977), 1, anon_sym_as, - ACTIONS(3027), 1, + ACTIONS(2979), 1, anon_sym_if, - ACTIONS(3033), 1, + ACTIONS(2989), 1, anon_sym_and, - ACTIONS(3035), 1, + ACTIONS(2991), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2989), 4, - anon_sym_RPAREN, + ACTIONS(3249), 4, anon_sym_COMMA, anon_sym_async, anon_sym_for, - [104343] = 5, - ACTIONS(3252), 1, - anon_sym_DOT, - ACTIONS(3254), 1, - anon_sym_EQ, - STATE(1859), 1, - aux_sym_dotted_name_repeat1, + anon_sym_RBRACE, + [104403] = 6, + ACTIONS(3012), 1, + anon_sym_as, + ACTIONS(3014), 1, + anon_sym_if, + ACTIONS(3020), 1, + anon_sym_and, + ACTIONS(3022), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3192), 5, - anon_sym_LPAREN, + ACTIONS(2965), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + [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_RBRACK, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - [104364] = 9, - ACTIONS(3181), 1, + [104445] = 9, + ACTIONS(3177), 1, anon_sym_as, - ACTIONS(3183), 1, + ACTIONS(3179), 1, anon_sym_if, - ACTIONS(3185), 1, + ACTIONS(3181), 1, anon_sym_and, - ACTIONS(3187), 1, + ACTIONS(3183), 1, anon_sym_or, - ACTIONS(3225), 1, + ACTIONS(3219), 1, anon_sym_COLON, - ACTIONS(3256), 1, + ACTIONS(3253), 1, anon_sym_COMMA, - ACTIONS(3258), 1, + ACTIONS(3255), 1, anon_sym_RBRACK, - STATE(2358), 1, + STATE(2340), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104393] = 8, - ACTIONS(2991), 1, + [104474] = 8, + ACTIONS(2967), 1, anon_sym_as, - ACTIONS(2993), 1, + ACTIONS(2969), 1, anon_sym_if, - ACTIONS(2995), 1, + ACTIONS(2971), 1, anon_sym_and, - ACTIONS(2997), 1, + ACTIONS(2973), 1, anon_sym_or, - ACTIONS(3202), 1, + ACTIONS(3215), 1, anon_sym_COMMA, - STATE(2033), 1, + STATE(2076), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3176), 2, + ACTIONS(3172), 2, sym__newline, anon_sym_SEMI, - [104420] = 6, - ACTIONS(2973), 1, + [104501] = 5, + ACTIONS(3020), 1, + anon_sym_and, + ACTIONS(3022), 1, + anon_sym_or, + ACTIONS(3257), 1, anon_sym_as, - ACTIONS(2975), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2993), 5, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, - ACTIONS(2985), 1, + anon_sym_async, + anon_sym_for, + [104522] = 5, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(3022), 1, anon_sym_or, + ACTIONS(3137), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3260), 4, + ACTIONS(2998), 5, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [104543] = 3, + ACTIONS(3044), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3002), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [104560] = 4, + ACTIONS(3020), 1, + anon_sym_and, + ACTIONS(3044), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3002), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_or, + [104579] = 5, + ACTIONS(2977), 1, + anon_sym_as, + ACTIONS(2989), 1, + anon_sym_and, + ACTIONS(2991), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3225), 5, + anon_sym_COMMA, + anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [104443] = 9, - ACTIONS(3181), 1, + [104600] = 8, + ACTIONS(2967), 1, anon_sym_as, - ACTIONS(3183), 1, + ACTIONS(2969), 1, anon_sym_if, - ACTIONS(3185), 1, + ACTIONS(2971), 1, + anon_sym_and, + ACTIONS(2973), 1, + anon_sym_or, + ACTIONS(3070), 1, + anon_sym_COMMA, + STATE(2111), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3068), 2, + sym__newline, + anon_sym_SEMI, + [104627] = 9, + ACTIONS(3177), 1, + anon_sym_as, + ACTIONS(3179), 1, + anon_sym_if, + ACTIONS(3181), 1, anon_sym_and, - ACTIONS(3187), 1, + ACTIONS(3183), 1, anon_sym_or, - ACTIONS(3225), 1, + ACTIONS(3219), 1, anon_sym_COLON, - ACTIONS(3262), 1, + ACTIONS(3260), 1, anon_sym_COMMA, - ACTIONS(3264), 1, + ACTIONS(3262), 1, anon_sym_RBRACK, - STATE(2467), 1, + STATE(2480), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104472] = 8, - ACTIONS(2991), 1, + [104656] = 8, + ACTIONS(2967), 1, anon_sym_as, - ACTIONS(2993), 1, + ACTIONS(2969), 1, anon_sym_if, - ACTIONS(2995), 1, + ACTIONS(2971), 1, anon_sym_and, - ACTIONS(2997), 1, + ACTIONS(2973), 1, anon_sym_or, - ACTIONS(3268), 1, + ACTIONS(3266), 1, anon_sym_COMMA, - STATE(2213), 1, - aux_sym_assert_statement_repeat1, + STATE(2216), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3266), 2, + ACTIONS(3264), 2, sym__newline, anon_sym_SEMI, - [104499] = 5, - ACTIONS(3025), 1, + [104683] = 5, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3033), 1, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(3035), 1, + ACTIONS(3022), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3221), 5, + ACTIONS(3225), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [104520] = 6, - ACTIONS(3025), 1, + [104704] = 9, + ACTIONS(3177), 1, anon_sym_as, - ACTIONS(3027), 1, + ACTIONS(3179), 1, anon_sym_if, - ACTIONS(3033), 1, + ACTIONS(3181), 1, anon_sym_and, - ACTIONS(3035), 1, + ACTIONS(3183), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2999), 4, - anon_sym_RPAREN, + ACTIONS(3219), 1, + anon_sym_COLON, + ACTIONS(3268), 1, anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - [104543] = 5, ACTIONS(3270), 1, - anon_sym_DOT, - ACTIONS(3272), 1, - anon_sym_EQ, - STATE(1843), 1, - aux_sym_dotted_name_repeat1, + anon_sym_RBRACK, + STATE(2392), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3192), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [104564] = 6, + [104733] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3279), 1, + ACTIONS(3277), 1, anon_sym_BSLASH, - ACTIONS(3274), 2, + ACTIONS(3272), 2, sym_string_end, anon_sym_LBRACE, - STATE(1806), 2, + STATE(1804), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3276), 3, + ACTIONS(3274), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - [104587] = 3, - ACTIONS(3139), 1, + [104756] = 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(3233), 1, + anon_sym_COMMA, + STATE(2217), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2969), 7, - anon_sym_RPAREN, + 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(3187), 5, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [104604] = 4, - ACTIONS(3033), 1, - anon_sym_and, - ACTIONS(3139), 1, + 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, - ACTIONS(2969), 6, + ACTIONS(2074), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, + anon_sym_and, anon_sym_or, - [104623] = 8, - ACTIONS(2991), 1, + [104821] = 6, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(2993), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(2995), 1, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(2997), 1, + ACTIONS(3022), 1, anon_sym_or, - ACTIONS(3202), 1, - anon_sym_COMMA, - STATE(2033), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3282), 2, - sym__newline, - anon_sym_SEMI, - [104650] = 5, - ACTIONS(3284), 1, - anon_sym_DOT, - ACTIONS(3286), 1, - anon_sym_EQ, - STATE(1868), 1, - aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3192), 5, - anon_sym_LPAREN, + ACTIONS(3004), 4, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + [104844] = 9, + ACTIONS(3177), 1, anon_sym_as, - anon_sym_PIPE, - [104671] = 7, - ACTIONS(1495), 1, - anon_sym_except, - ACTIONS(1499), 1, - anon_sym_except_STAR, + 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(3286), 1, + anon_sym_COMMA, ACTIONS(3288), 1, - anon_sym_finally, - STATE(828), 1, - sym_finally_clause, + anon_sym_RBRACK, + STATE(2415), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(499), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(505), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [104696] = 8, - ACTIONS(2991), 1, + [104873] = 6, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(2993), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(2995), 1, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(2997), 1, + ACTIONS(3022), 1, anon_sym_or, - ACTIONS(3202), 1, - anon_sym_COMMA, - STATE(2033), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2927), 2, - sym__newline, - anon_sym_SEMI, - [104723] = 8, - ACTIONS(2991), 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(2993), 1, + ACTIONS(3179), 1, anon_sym_if, - ACTIONS(2995), 1, + ACTIONS(3181), 1, anon_sym_and, - ACTIONS(2997), 1, + ACTIONS(3183), 1, anon_sym_or, - ACTIONS(3202), 1, + ACTIONS(3219), 1, + anon_sym_COLON, + ACTIONS(3290), 1, anon_sym_COMMA, - STATE(2033), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3290), 2, - sym__newline, - anon_sym_SEMI, - [104750] = 7, - ACTIONS(1507), 1, - anon_sym_except, - ACTIONS(1511), 1, - anon_sym_except_STAR, ACTIONS(3292), 1, - anon_sym_finally, - STATE(818), 1, - sym_finally_clause, + anon_sym_RBRACK, + STATE(2422), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(514), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(515), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [104775] = 9, - ACTIONS(3181), 1, + [104925] = 9, + ACTIONS(3177), 1, anon_sym_as, - ACTIONS(3183), 1, + ACTIONS(3179), 1, anon_sym_if, - ACTIONS(3185), 1, + ACTIONS(3181), 1, anon_sym_and, - ACTIONS(3187), 1, + ACTIONS(3183), 1, anon_sym_or, - ACTIONS(3225), 1, + ACTIONS(3219), 1, anon_sym_COLON, ACTIONS(3294), 1, anon_sym_COMMA, ACTIONS(3296), 1, anon_sym_RBRACK, - STATE(2380), 1, + STATE(2427), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104804] = 8, - ACTIONS(2991), 1, + [104954] = 9, + ACTIONS(3177), 1, anon_sym_as, - ACTIONS(2993), 1, + ACTIONS(3179), 1, anon_sym_if, - ACTIONS(2995), 1, + ACTIONS(3181), 1, anon_sym_and, - ACTIONS(2997), 1, + ACTIONS(3183), 1, anon_sym_or, - ACTIONS(3268), 1, + ACTIONS(3219), 1, + anon_sym_COLON, + ACTIONS(3298), 1, anon_sym_COMMA, - STATE(2137), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3300), 1, + anon_sym_RBRACK, + STATE(2351), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3298), 2, - sym__newline, - anon_sym_SEMI, - [104831] = 9, - ACTIONS(3181), 1, + [104983] = 5, + ACTIONS(2953), 1, anon_sym_as, - ACTIONS(3183), 1, - anon_sym_if, - ACTIONS(3185), 1, + ACTIONS(2961), 1, anon_sym_and, - ACTIONS(3187), 1, + ACTIONS(2963), 1, anon_sym_or, - ACTIONS(3225), 1, - anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3225), 5, anon_sym_COMMA, - ACTIONS(3302), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, - STATE(2312), 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, - [104860] = 8, - ACTIONS(2991), 1, + ACTIONS(3187), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [105025] = 8, + ACTIONS(2967), 1, anon_sym_as, - ACTIONS(2993), 1, + ACTIONS(2969), 1, anon_sym_if, - ACTIONS(2995), 1, + ACTIONS(2971), 1, anon_sym_and, - ACTIONS(2997), 1, + ACTIONS(2973), 1, anon_sym_or, - ACTIONS(3306), 1, + ACTIONS(3215), 1, anon_sym_COMMA, - STATE(2206), 1, - aux_sym_print_statement_repeat1, + STATE(2076), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3304), 2, + ACTIONS(2927), 2, sym__newline, anon_sym_SEMI, - [104887] = 7, - ACTIONS(1507), 1, - anon_sym_except, - ACTIONS(1511), 1, - anon_sym_except_STAR, - ACTIONS(3292), 1, - anon_sym_finally, - STATE(781), 1, - sym_finally_clause, + [105052] = 7, + ACTIONS(63), 1, + anon_sym_AT, + ACTIONS(3306), 1, + anon_sym_async, + ACTIONS(3308), 1, + anon_sym_def, + ACTIONS(3310), 1, + anon_sym_class, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(547), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - STATE(595), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - [104912] = 5, - ACTIONS(2957), 1, + STATE(769), 2, + sym_function_definition, + sym_class_definition, + STATE(1897), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [105077] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3194), 8, + anon_sym_import, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [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, + 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(2965), 1, + ACTIONS(2989), 1, anon_sym_and, - ACTIONS(2967), 1, + ACTIONS(2991), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3221), 5, + ACTIONS(3225), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [104933] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [105138] = 5, + ACTIONS(2977), 1, + anon_sym_as, + ACTIONS(2989), 1, + anon_sym_and, + ACTIONS(2991), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3312), 1, - anon_sym_BSLASH, - ACTIONS(3308), 2, - sym_string_end, - anon_sym_LBRACE, - STATE(1806), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3310), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - [104956] = 5, - ACTIONS(2973), 1, + ACTIONS(3225), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [105159] = 5, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(2985), 1, + ACTIONS(3020), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(3022), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3221), 5, + ACTIONS(3225), 5, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [104977] = 9, - ACTIONS(3181), 1, + [105180] = 8, + ACTIONS(2967), 1, anon_sym_as, - ACTIONS(3183), 1, + ACTIONS(2969), 1, anon_sym_if, - ACTIONS(3185), 1, + ACTIONS(2971), 1, anon_sym_and, - ACTIONS(3187), 1, + ACTIONS(2973), 1, anon_sym_or, - ACTIONS(3225), 1, - anon_sym_COLON, - ACTIONS(3314), 1, + ACTIONS(3215), 1, anon_sym_COMMA, - ACTIONS(3316), 1, - anon_sym_RBRACK, - STATE(2258), 1, - aux_sym_subscript_repeat1, + STATE(2076), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105006] = 7, - ACTIONS(63), 1, - anon_sym_AT, - ACTIONS(3318), 1, - anon_sym_async, + ACTIONS(3318), 2, + sym__newline, + anon_sym_SEMI, + [105207] = 6, ACTIONS(3320), 1, - anon_sym_def, - ACTIONS(3322), 1, - anon_sym_class, + anon_sym_if, + ACTIONS(3323), 1, + anon_sym_async, + ACTIONS(3326), 1, + anon_sym_for, + ACTIONS(3329), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(762), 2, - sym_function_definition, - sym_class_definition, - STATE(1983), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - [105031] = 8, - ACTIONS(2991), 1, + STATE(1824), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [105229] = 6, + ACTIONS(2967), 1, anon_sym_as, - ACTIONS(2993), 1, + ACTIONS(2969), 1, anon_sym_if, - ACTIONS(2995), 1, + ACTIONS(2971), 1, anon_sym_and, - ACTIONS(2997), 1, + ACTIONS(2973), 1, anon_sym_or, - ACTIONS(3076), 1, - anon_sym_COMMA, - STATE(2155), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3074), 2, + ACTIONS(3331), 3, sym__newline, anon_sym_SEMI, - [105058] = 9, - ACTIONS(3181), 1, + anon_sym_COMMA, + [105251] = 8, + ACTIONS(3161), 1, anon_sym_as, - ACTIONS(3183), 1, + ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3185), 1, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3187), 1, + ACTIONS(3167), 1, anon_sym_or, - ACTIONS(3225), 1, - anon_sym_COLON, - ACTIONS(3324), 1, + ACTIONS(3333), 1, anon_sym_COMMA, - ACTIONS(3326), 1, - anon_sym_RBRACK, - STATE(2334), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [105087] = 7, - ACTIONS(1495), 1, - anon_sym_except, - ACTIONS(1499), 1, - anon_sym_except_STAR, - ACTIONS(3288), 1, - anon_sym_finally, - STATE(819), 1, - sym_finally_clause, + ACTIONS(3335), 1, + anon_sym_COLON, + STATE(2450), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(516), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(517), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [105112] = 6, - ACTIONS(3025), 1, + [105277] = 8, + ACTIONS(3034), 1, + anon_sym_RPAREN, + ACTIONS(3036), 1, + anon_sym_COMMA, + ACTIONS(3153), 1, anon_sym_as, - ACTIONS(3027), 1, + ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3033), 1, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3035), 1, + ACTIONS(3159), 1, anon_sym_or, + STATE(2248), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3001), 4, - anon_sym_RPAREN, + [105303] = 4, + ACTIONS(3337), 1, + anon_sym_DOT, + STATE(1828), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3194), 5, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [105321] = 8, + ACTIONS(2983), 1, anon_sym_async, + ACTIONS(2985), 1, anon_sym_for, - [105135] = 6, - ACTIONS(2979), 1, - anon_sym_async, - ACTIONS(2981), 1, - anon_sym_for, - ACTIONS(3328), 1, - anon_sym_if, - ACTIONS(3330), 1, + ACTIONS(3340), 1, + anon_sym_COMMA, + ACTIONS(3342), 1, anon_sym_RBRACE, + STATE(1838), 1, + sym_for_in_clause, + STATE(2268), 1, + aux_sym_dictionary_repeat1, + STATE(2723), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1836), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [105157] = 4, - ACTIONS(3332), 1, + [105347] = 4, + ACTIONS(3302), 1, anon_sym_DOT, - STATE(1830), 1, + STATE(1834), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3208), 5, + ACTIONS(3187), 5, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [105175] = 3, + [105365] = 8, + ACTIONS(3344), 1, + sym_identifier, + ACTIONS(3346), 1, + anon_sym_LPAREN, + ACTIONS(3348), 1, + anon_sym_STAR, + STATE(1988), 1, + sym_dotted_name, + STATE(2113), 1, + sym_aliased_import, + STATE(2481), 1, + sym_wildcard_import, + STATE(2559), 1, + sym__import_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [105391] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3335), 2, + ACTIONS(3352), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3229), 5, + ACTIONS(3350), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [105191] = 8, - ACTIONS(3145), 1, - anon_sym_as, - ACTIONS(3147), 1, - anon_sym_if, - ACTIONS(3149), 1, - anon_sym_and, - ACTIONS(3151), 1, - anon_sym_or, - ACTIONS(3176), 1, - anon_sym_RPAREN, - ACTIONS(3337), 1, + [105407] = 8, + ACTIONS(2983), 1, + anon_sym_async, + ACTIONS(2985), 1, + anon_sym_for, + ACTIONS(3354), 1, anon_sym_COMMA, - STATE(2440), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3356), 1, + anon_sym_RBRACE, + STATE(1838), 1, + sym_for_in_clause, + STATE(2407), 1, + aux_sym_dictionary_repeat1, + STATE(2605), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105217] = 6, - ACTIONS(3029), 1, - anon_sym_async, - ACTIONS(3031), 1, - anon_sym_for, - ACTIONS(3339), 1, - anon_sym_RPAREN, - ACTIONS(3341), 1, - anon_sym_if, + [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(1856), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [105239] = 4, - ACTIONS(3270), 1, + ACTIONS(3207), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [105451] = 4, + ACTIONS(3245), 1, anon_sym_DOT, - STATE(1843), 1, + STATE(1828), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3192), 5, + ACTIONS(3207), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [105257] = 5, - ACTIONS(2973), 1, - anon_sym_as, + [105469] = 8, + ACTIONS(2983), 1, + anon_sym_async, ACTIONS(2985), 1, - anon_sym_and, - ACTIONS(2987), 1, - anon_sym_or, + anon_sym_for, + ACTIONS(3358), 1, + anon_sym_COMMA, + ACTIONS(3360), 1, + anon_sym_RBRACE, + 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, - ACTIONS(3343), 4, - anon_sym_if, + [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, - anon_sym_RBRACE, - [105277] = 6, - ACTIONS(3345), 1, + ACTIONS(3362), 1, anon_sym_if, - ACTIONS(3348), 1, - anon_sym_async, - ACTIONS(3351), 1, - anon_sym_for, - ACTIONS(3354), 1, + ACTIONS(3364), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1836), 3, + STATE(1867), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [105299] = 4, - ACTIONS(763), 1, - sym_string_start, + [105535] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1126), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3229), 4, + ACTIONS(3366), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3251), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - [105317] = 5, - ACTIONS(2957), 1, + [105551] = 5, + ACTIONS(2953), 1, anon_sym_as, - ACTIONS(2965), 1, + ACTIONS(2961), 1, anon_sym_and, - ACTIONS(2967), 1, + ACTIONS(2963), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3343), 4, + ACTIONS(3368), 4, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [105337] = 4, - ACTIONS(3356), 1, + [105571] = 7, + ACTIONS(2712), 1, + sym_identifier, + ACTIONS(3370), 1, anon_sym_DOT, - STATE(1839), 1, - aux_sym_dotted_name_repeat1, + 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, - ACTIONS(3208), 5, - anon_sym_LPAREN, - anon_sym_COMMA, + STATE(2625), 2, + sym_relative_import, + sym_dotted_name, + [105595] = 8, + ACTIONS(3161), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [105355] = 8, - ACTIONS(2979), 1, - anon_sym_async, - ACTIONS(2981), 1, - anon_sym_for, - ACTIONS(3359), 1, + 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(3361), 1, - anon_sym_RBRACE, - STATE(1870), 1, - sym_for_in_clause, - STATE(2298), 1, - aux_sym_dictionary_repeat1, - STATE(2737), 1, - sym__comprehension_clauses, + ACTIONS(3376), 1, + anon_sym_COLON, + STATE(2432), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105381] = 6, - ACTIONS(3354), 1, - anon_sym_RBRACK, - ACTIONS(3363), 1, - anon_sym_if, - ACTIONS(3366), 1, - anon_sym_async, - ACTIONS(3369), 1, - anon_sym_for, + [105621] = 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, - STATE(1841), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [105403] = 8, - ACTIONS(2979), 1, + ACTIONS(3368), 4, + anon_sym_RPAREN, + anon_sym_if, anon_sym_async, - ACTIONS(2981), 1, anon_sym_for, - ACTIONS(3372), 1, - anon_sym_COMMA, - ACTIONS(3374), 1, - anon_sym_RBRACE, - STATE(1870), 1, - sym_for_in_clause, - STATE(2349), 1, - aux_sym_dictionary_repeat1, - STATE(2709), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [105429] = 4, - ACTIONS(3270), 1, + [105641] = 4, + ACTIONS(3245), 1, anon_sym_DOT, - STATE(1839), 1, + STATE(1835), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3219), 5, + ACTIONS(3187), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [105447] = 6, - ACTIONS(2961), 1, - anon_sym_async, - ACTIONS(2963), 1, - anon_sym_for, - ACTIONS(3330), 1, - anon_sym_RBRACK, - ACTIONS(3376), 1, + [105659] = 7, + ACTIONS(3177), 1, + anon_sym_as, + ACTIONS(3179), 1, anon_sym_if, + ACTIONS(3181), 1, + anon_sym_and, + ACTIONS(3183), 1, + anon_sym_or, + ACTIONS(3378), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1841), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [105469] = 4, - ACTIONS(785), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(986), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3229), 4, - anon_sym_RPAREN, + ACTIONS(1449), 2, anon_sym_COMMA, + anon_sym_RBRACK, + [105683] = 8, + ACTIONS(3161), 1, anon_sym_as, - anon_sym_PIPE, - [105487] = 8, - ACTIONS(3153), 1, - anon_sym_as, - ACTIONS(3155), 1, + ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3157), 1, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3159), 1, + ACTIONS(3167), 1, anon_sym_or, - ACTIONS(3378), 1, - anon_sym_COMMA, ACTIONS(3380), 1, + anon_sym_COMMA, + ACTIONS(3382), 1, anon_sym_COLON, - STATE(2317), 1, + STATE(2470), 1, aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105513] = 4, - ACTIONS(3252), 1, - anon_sym_DOT, - STATE(1859), 1, - aux_sym_dotted_name_repeat1, + [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, - ACTIONS(3192), 5, - anon_sym_LPAREN, + ACTIONS(3384), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [105531] = 8, - ACTIONS(2979), 1, + [105731] = 6, + ACTIONS(3016), 1, anon_sym_async, - ACTIONS(2981), 1, + ACTIONS(3018), 1, anon_sym_for, - ACTIONS(3382), 1, - anon_sym_COMMA, - ACTIONS(3384), 1, - anon_sym_RBRACE, - STATE(1870), 1, - sym_for_in_clause, - STATE(2270), 1, - aux_sym_dictionary_repeat1, - STATE(2651), 1, - sym__comprehension_clauses, + ACTIONS(3386), 1, + anon_sym_RPAREN, + ACTIONS(3388), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105557] = 8, - ACTIONS(2979), 1, - anon_sym_async, - ACTIONS(2981), 1, - anon_sym_for, - ACTIONS(3386), 1, - anon_sym_COMMA, - ACTIONS(3388), 1, - anon_sym_RBRACE, - STATE(1870), 1, + STATE(1852), 3, sym_for_in_clause, - STATE(2372), 1, - aux_sym_dictionary_repeat1, - STATE(2722), 1, - sym__comprehension_clauses, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [105753] = 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(3333), 1, + anon_sym_COMMA, + ACTIONS(3390), 1, + anon_sym_COLON, + STATE(2450), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105583] = 7, - ACTIONS(3181), 1, + [105779] = 8, + ACTIONS(3161), 1, anon_sym_as, - ACTIONS(3183), 1, + ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3185), 1, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3187), 1, + ACTIONS(3167), 1, anon_sym_or, - ACTIONS(3225), 1, + 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(3390), 2, - anon_sym_COMMA, + [105805] = 6, + ACTIONS(2957), 1, + anon_sym_async, + ACTIONS(2959), 1, + anon_sym_for, + ACTIONS(3386), 1, anon_sym_RBRACK, - [105607] = 4, - ACTIONS(3284), 1, - anon_sym_DOT, - STATE(1868), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(3394), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3192), 5, - anon_sym_LPAREN, + STATE(1824), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [105827] = 6, + ACTIONS(3329), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [105625] = 4, - ACTIONS(692), 1, + ACTIONS(3396), 1, + anon_sym_if, + ACTIONS(3399), 1, + anon_sym_async, + ACTIONS(3402), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1852), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [105849] = 4, + ACTIONS(731), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(967), 2, + STATE(992), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(3229), 4, + ACTIONS(3251), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [105643] = 8, - ACTIONS(3153), 1, + [105867] = 8, + ACTIONS(3161), 1, anon_sym_as, - ACTIONS(3155), 1, + ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3157), 1, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3159), 1, + ACTIONS(3167), 1, anon_sym_or, - ACTIONS(3392), 1, + ACTIONS(3333), 1, anon_sym_COMMA, - ACTIONS(3394), 1, + ACTIONS(3405), 1, anon_sym_COLON, - STATE(2345), 1, + STATE(2450), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105669] = 8, - ACTIONS(2979), 1, - anon_sym_async, - ACTIONS(2981), 1, - anon_sym_for, - ACTIONS(3396), 1, - anon_sym_COMMA, - ACTIONS(3398), 1, - anon_sym_RBRACE, - STATE(1870), 1, - sym_for_in_clause, - STATE(2393), 1, - aux_sym_dictionary_repeat1, - STATE(2717), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [105695] = 8, - ACTIONS(2979), 1, + [105893] = 8, + ACTIONS(2983), 1, anon_sym_async, - ACTIONS(2981), 1, + ACTIONS(2985), 1, anon_sym_for, - ACTIONS(3400), 1, + ACTIONS(3407), 1, anon_sym_COMMA, - ACTIONS(3402), 1, + ACTIONS(3409), 1, anon_sym_RBRACE, - STATE(1870), 1, + STATE(1838), 1, sym_for_in_clause, - STATE(2245), 1, + STATE(2359), 1, aux_sym_dictionary_repeat1, - STATE(2661), 1, + STATE(2724), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105721] = 6, - ACTIONS(3029), 1, - anon_sym_async, - ACTIONS(3031), 1, - anon_sym_for, - ACTIONS(3330), 1, - anon_sym_RPAREN, - ACTIONS(3341), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1874), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [105743] = 8, - ACTIONS(2979), 1, + [105919] = 8, + ACTIONS(2983), 1, anon_sym_async, - ACTIONS(2981), 1, + ACTIONS(2985), 1, anon_sym_for, - ACTIONS(3404), 1, + ACTIONS(3411), 1, anon_sym_COMMA, - ACTIONS(3406), 1, + ACTIONS(3413), 1, anon_sym_RBRACE, - STATE(1870), 1, + STATE(1838), 1, sym_for_in_clause, - STATE(2415), 1, + STATE(2240), 1, aux_sym_dictionary_repeat1, - STATE(2615), 1, + STATE(2710), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105769] = 6, - ACTIONS(2991), 1, + [105945] = 8, + ACTIONS(3153), 1, anon_sym_as, - ACTIONS(2993), 1, + ACTIONS(3155), 1, anon_sym_if, - ACTIONS(2995), 1, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(2997), 1, + ACTIONS(3159), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3408), 3, - sym__newline, - anon_sym_SEMI, + ACTIONS(3172), 1, + anon_sym_RPAREN, + ACTIONS(3415), 1, anon_sym_COMMA, - [105791] = 4, - ACTIONS(3252), 1, - anon_sym_DOT, - STATE(1877), 1, - aux_sym_dotted_name_repeat1, + STATE(2444), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3219), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + [105971] = 6, + ACTIONS(2957), 1, + anon_sym_async, + ACTIONS(2959), 1, + anon_sym_for, + ACTIONS(3364), 1, anon_sym_RBRACK, - anon_sym_PIPE, - [105809] = 6, - ACTIONS(2991), 1, - anon_sym_as, - ACTIONS(2993), 1, + ACTIONS(3394), 1, anon_sym_if, - ACTIONS(2995), 1, - anon_sym_and, - ACTIONS(2997), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3410), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [105831] = 8, - ACTIONS(3176), 1, - anon_sym_RBRACK, - ACTIONS(3181), 1, - anon_sym_as, - ACTIONS(3183), 1, - anon_sym_if, - ACTIONS(3185), 1, - anon_sym_and, - ACTIONS(3187), 1, - anon_sym_or, - ACTIONS(3412), 1, - anon_sym_COMMA, - STATE(2434), 1, - aux_sym_assert_statement_repeat1, + STATE(1851), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [105993] = 6, + ACTIONS(3016), 1, + anon_sym_async, + ACTIONS(3018), 1, + anon_sym_for, + ACTIONS(3364), 1, + anon_sym_RPAREN, + ACTIONS(3388), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105857] = 8, - ACTIONS(2979), 1, + STATE(1848), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [106015] = 8, + ACTIONS(2983), 1, anon_sym_async, - ACTIONS(2981), 1, + ACTIONS(2985), 1, anon_sym_for, - ACTIONS(3414), 1, + ACTIONS(3417), 1, anon_sym_COMMA, - ACTIONS(3416), 1, + ACTIONS(3419), 1, anon_sym_RBRACE, - STATE(1870), 1, + STATE(1838), 1, sym_for_in_clause, - STATE(2288), 1, + STATE(2282), 1, aux_sym_dictionary_repeat1, - STATE(2676), 1, + STATE(2744), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105883] = 8, - 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(3418), 1, - anon_sym_COMMA, - ACTIONS(3420), 1, - anon_sym_COLON, - STATE(2260), 1, - aux_sym_match_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [105909] = 7, - ACTIONS(1357), 1, - anon_sym_COLON, - ACTIONS(3181), 1, - anon_sym_as, - ACTIONS(3183), 1, - anon_sym_if, - ACTIONS(3185), 1, - anon_sym_and, - ACTIONS(3187), 1, - anon_sym_or, + [106041] = 4, + ACTIONS(3282), 1, + anon_sym_DOT, + STATE(1863), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1355), 2, + ACTIONS(3207), 5, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_RBRACK, - [105933] = 8, - ACTIONS(3153), 1, + anon_sym_PIPE, + [106059] = 8, + ACTIONS(3172), 1, + anon_sym_RBRACK, + ACTIONS(3177), 1, anon_sym_as, - ACTIONS(3155), 1, + ACTIONS(3179), 1, anon_sym_if, - ACTIONS(3157), 1, + ACTIONS(3181), 1, anon_sym_and, - ACTIONS(3159), 1, + ACTIONS(3183), 1, anon_sym_or, - ACTIONS(3392), 1, + ACTIONS(3421), 1, anon_sym_COMMA, - ACTIONS(3422), 1, - anon_sym_COLON, - STATE(2345), 1, + STATE(2291), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105959] = 8, - 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(3392), 1, - anon_sym_COMMA, - ACTIONS(3424), 1, - anon_sym_COLON, - STATE(2345), 1, - aux_sym_assert_statement_repeat1, + [106085] = 4, + ACTIONS(3423), 1, + anon_sym_DOT, + STATE(1863), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105985] = 8, - ACTIONS(3426), 1, - sym_identifier, - ACTIONS(3428), 1, + ACTIONS(3194), 5, anon_sym_LPAREN, - ACTIONS(3430), 1, - anon_sym_STAR, - STATE(1994), 1, - sym_dotted_name, - STATE(2220), 1, - sym_aliased_import, - STATE(2512), 1, - sym__import_list, - STATE(2514), 1, - sym_wildcard_import, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [106011] = 4, - ACTIONS(3284), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [106103] = 4, + ACTIONS(3426), 1, anon_sym_DOT, - STATE(1830), 1, + STATE(1864), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3219), 5, + ACTIONS(3194), 5, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [106029] = 3, + [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(3434), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3432), 5, + ACTIONS(3429), 2, anon_sym_COMMA, + anon_sym_RBRACK, + [106145] = 7, + ACTIONS(1347), 1, + anon_sym_COLON, + ACTIONS(3177), 1, anon_sym_as, + ACTIONS(3179), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [106045] = 6, - ACTIONS(2979), 1, + ACTIONS(3181), 1, + anon_sym_and, + ACTIONS(3183), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1345), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [106169] = 6, + ACTIONS(2983), 1, anon_sym_async, - ACTIONS(2981), 1, + ACTIONS(2985), 1, anon_sym_for, - ACTIONS(3328), 1, + ACTIONS(3362), 1, anon_sym_if, - ACTIONS(3339), 1, + ACTIONS(3386), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1829), 3, + STATE(1872), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [106067] = 6, - ACTIONS(2961), 1, + [106191] = 8, + ACTIONS(2983), 1, anon_sym_async, - ACTIONS(2963), 1, + ACTIONS(2985), 1, anon_sym_for, - ACTIONS(3339), 1, - anon_sym_RBRACK, - ACTIONS(3376), 1, - anon_sym_if, + ACTIONS(3431), 1, + anon_sym_COMMA, + ACTIONS(3433), 1, + anon_sym_RBRACE, + STATE(1838), 1, + sym_for_in_clause, + STATE(2330), 1, + aux_sym_dictionary_repeat1, + STATE(2706), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1844), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [106089] = 8, - 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(3392), 1, + [106217] = 8, + ACTIONS(2983), 1, + anon_sym_async, + ACTIONS(2985), 1, + anon_sym_for, + ACTIONS(3435), 1, anon_sym_COMMA, - ACTIONS(3436), 1, - anon_sym_COLON, - STATE(2345), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3437), 1, + anon_sym_RBRACE, + STATE(1838), 1, + sym_for_in_clause, + STATE(2381), 1, + aux_sym_dictionary_repeat1, + STATE(2696), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [106243] = 4, + ACTIONS(3282), 1, + anon_sym_DOT, + STATE(1861), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106115] = 5, - ACTIONS(3025), 1, + ACTIONS(3187), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [106261] = 5, + ACTIONS(2977), 1, anon_sym_as, - ACTIONS(3033), 1, + ACTIONS(2989), 1, anon_sym_and, - ACTIONS(3035), 1, + ACTIONS(2991), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3343), 4, - anon_sym_RPAREN, + ACTIONS(3368), 4, anon_sym_if, anon_sym_async, anon_sym_for, - [106135] = 6, - ACTIONS(3354), 1, - anon_sym_RPAREN, - ACTIONS(3438), 1, + anon_sym_RBRACE, + [106281] = 6, + ACTIONS(3329), 1, + anon_sym_RBRACE, + ACTIONS(3439), 1, anon_sym_if, - ACTIONS(3441), 1, + ACTIONS(3442), 1, anon_sym_async, - ACTIONS(3444), 1, + ACTIONS(3445), 1, anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1874), 3, + STATE(1872), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [106157] = 8, - ACTIONS(3070), 1, - anon_sym_RPAREN, - ACTIONS(3072), 1, - anon_sym_COMMA, - ACTIONS(3145), 1, - anon_sym_as, - ACTIONS(3147), 1, - anon_sym_if, - ACTIONS(3149), 1, - anon_sym_and, - ACTIONS(3151), 1, - anon_sym_or, - STATE(2255), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [106183] = 7, - ACTIONS(2716), 1, - sym_identifier, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3449), 1, - anon_sym___future__, - STATE(2108), 1, - aux_sym_import_prefix_repeat1, - STATE(2276), 1, - sym_import_prefix, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2760), 2, - sym_relative_import, - sym_dotted_name, - [106207] = 4, - ACTIONS(3451), 1, - anon_sym_DOT, - STATE(1877), 1, - aux_sym_dotted_name_repeat1, + [106303] = 4, + ACTIONS(684), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3208), 5, - anon_sym_LPAREN, + STATE(964), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3251), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [106225] = 7, - ACTIONS(3181), 1, - anon_sym_as, - ACTIONS(3183), 1, - anon_sym_if, - ACTIONS(3185), 1, - anon_sym_and, - ACTIONS(3187), 1, - anon_sym_or, - ACTIONS(3454), 1, - anon_sym_COLON, + anon_sym_RBRACE, + [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(1443), 2, + ACTIONS(3207), 4, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - [106249] = 6, - ACTIONS(3145), 1, anon_sym_as, - ACTIONS(3147), 1, - anon_sym_if, - ACTIONS(3149), 1, - anon_sym_and, - ACTIONS(3151), 1, - anon_sym_or, + [106338] = 4, + ACTIONS(3450), 1, + anon_sym_COMMA, + STATE(1957), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3206), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [106270] = 2, + 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(3456), 6, + ACTIONS(3454), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [106283] = 7, - ACTIONS(3458), 1, - anon_sym_DOT, - ACTIONS(3460), 1, - anon_sym_COMMA, - ACTIONS(3462), 1, - anon_sym_COLON, - ACTIONS(3464), 1, - anon_sym_RBRACK, - ACTIONS(3466), 1, - anon_sym_PIPE, - STATE(2261), 1, - aux_sym_type_parameter_repeat1, + [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, - [106306] = 4, - ACTIONS(3468), 1, + ACTIONS(3456), 2, anon_sym_COMMA, - STATE(1882), 1, + anon_sym_RBRACK, + [106389] = 4, + ACTIONS(3458), 1, + anon_sym_COMMA, + STATE(1888), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3471), 4, + ACTIONS(3460), 4, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [106323] = 3, + [106406] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3473), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3229), 4, + ACTIONS(3462), 6, + anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RBRACE, - [106338] = 6, - ACTIONS(3181), 1, + [106419] = 6, + ACTIONS(3161), 1, anon_sym_as, - ACTIONS(3183), 1, + ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3185), 1, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3187), 1, + ACTIONS(3167), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3475), 2, + ACTIONS(3464), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [106359] = 3, - ACTIONS(3477), 1, - anon_sym_LPAREN, + anon_sym_COLON, + [106440] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3229), 5, + ACTIONS(3466), 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, - [106374] = 6, - ACTIONS(3145), 1, + [106453] = 6, + ACTIONS(3153), 1, anon_sym_as, - ACTIONS(3147), 1, + ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3149), 1, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3151), 1, + ACTIONS(3159), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3479), 2, + ACTIONS(3468), 2, anon_sym_RPAREN, anon_sym_COMMA, - [106395] = 4, - ACTIONS(3483), 1, + [106474] = 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(3470), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [106493] = 4, + ACTIONS(3478), 1, anon_sym_COMMA, - STATE(1926), 1, + STATE(1894), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3481), 4, + ACTIONS(3460), 4, anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, - [106412] = 2, + [106510] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3485), 6, + ACTIONS(3466), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [106425] = 5, - ACTIONS(3489), 1, - anon_sym_DOT, - ACTIONS(3491), 1, - anon_sym_COLON, - ACTIONS(3493), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3487), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_EQ, - [106444] = 6, - ACTIONS(3181), 1, - anon_sym_as, - ACTIONS(3183), 1, - anon_sym_if, - ACTIONS(3185), 1, - anon_sym_and, - ACTIONS(3187), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1443), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [106465] = 7, - ACTIONS(3495), 1, + [106523] = 7, + ACTIONS(3480), 1, anon_sym_COMMA, - ACTIONS(3497), 1, + ACTIONS(3482), 1, anon_sym_as, - ACTIONS(3499), 1, + ACTIONS(3484), 1, anon_sym_if, - ACTIONS(3501), 1, + ACTIONS(3486), 1, anon_sym_COLON, - STATE(2018), 1, + STATE(2039), 1, aux_sym_case_clause_repeat1, - STATE(2659), 1, + STATE(2745), 1, sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106488] = 4, - ACTIONS(3505), 1, + [106546] = 4, + ACTIONS(3490), 1, anon_sym_PIPE, - STATE(1957), 1, + STATE(1964), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3503), 4, + ACTIONS(3488), 4, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - [106505] = 4, - ACTIONS(3507), 1, - anon_sym_DOT, - STATE(1933), 1, - aux_sym_dotted_name_repeat1, + [106563] = 4, + ACTIONS(3492), 1, + anon_sym_COMMA, + STATE(1888), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3219), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(3495), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [106580] = 4, + ACTIONS(3497), 1, anon_sym_COMMA, - anon_sym_as, - [106522] = 4, + STATE(1970), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1287), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [106597] = 4, + ACTIONS(3499), 1, + anon_sym_COMMA, + STATE(1911), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(971), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [106614] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3511), 1, + ACTIONS(3503), 1, anon_sym_BSLASH, - ACTIONS(3509), 5, + ACTIONS(3501), 5, sym__string_content, sym_escape_interpolation, sym_string_end, anon_sym_LBRACE, sym_escape_sequence, - [106539] = 4, - ACTIONS(3513), 1, + [106631] = 4, + ACTIONS(3505), 1, anon_sym_COMMA, - STATE(1934), 1, + STATE(1878), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3515), 4, + ACTIONS(3507), 4, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [106556] = 4, - ACTIONS(3505), 1, - anon_sym_PIPE, - STATE(1957), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, + anon_sym_RBRACK, + [106648] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3517), 4, + ACTIONS(3511), 1, + anon_sym_BSLASH, + ACTIONS(3509), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [106665] = 4, + ACTIONS(3513), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [106573] = 2, + STATE(1894), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3519), 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, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [106586] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3521), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3229), 4, + ACTIONS(3518), 1, anon_sym_COMMA, - anon_sym_as, + ACTIONS(3520), 1, + anon_sym_COLON, + ACTIONS(3522), 1, anon_sym_RBRACK, + ACTIONS(3524), 1, anon_sym_PIPE, - [106601] = 2, + STATE(2297), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2955), 6, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [106614] = 3, - STATE(1957), 1, - aux_sym_union_pattern_repeat1, + [106705] = 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(3523), 5, + ACTIONS(3249), 2, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [106629] = 4, - ACTIONS(3525), 1, - anon_sym_PIPE, - STATE(1901), 1, - aux_sym_union_pattern_repeat1, + anon_sym_RBRACE, + [106726] = 4, + ACTIONS(3528), 1, + anon_sym_AT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3523), 4, - anon_sym_COMMA, + STATE(1897), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + ACTIONS(3526), 3, + anon_sym_async, + anon_sym_def, + anon_sym_class, + [106743] = 6, + ACTIONS(2967), 1, anon_sym_as, + ACTIONS(2969), 1, anon_sym_if, - anon_sym_COLON, - [106646] = 2, + ACTIONS(2971), 1, + anon_sym_and, + ACTIONS(2973), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3528), 6, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [106659] = 6, - ACTIONS(3145), 1, + ACTIONS(3202), 2, + sym__newline, + anon_sym_SEMI, + [106764] = 6, + ACTIONS(2967), 1, anon_sym_as, - ACTIONS(3147), 1, + ACTIONS(2969), 1, anon_sym_if, - ACTIONS(3149), 1, + ACTIONS(2971), 1, anon_sym_and, - ACTIONS(3151), 1, + ACTIONS(2973), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3530), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [106680] = 6, - ACTIONS(3153), 1, + ACTIONS(3531), 2, + sym__newline, + anon_sym_SEMI, + [106785] = 6, + ACTIONS(3177), 1, anon_sym_as, - ACTIONS(3155), 1, + ACTIONS(3179), 1, anon_sym_if, - ACTIONS(3157), 1, + ACTIONS(3181), 1, anon_sym_and, - ACTIONS(3159), 1, + ACTIONS(3183), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3204), 2, - anon_sym_COMMA, - anon_sym_COLON, - [106701] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3534), 1, - anon_sym_BSLASH, - ACTIONS(3532), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [106718] = 4, - ACTIONS(3536), 1, + ACTIONS(1417), 2, anon_sym_COMMA, - STATE(1914), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3515), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_RBRACK, - [106735] = 2, + [106806] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3519), 6, + ACTIONS(3533), 6, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [106748] = 6, - ACTIONS(2991), 1, + [106819] = 6, + ACTIONS(3161), 1, anon_sym_as, - ACTIONS(2993), 1, + ACTIONS(3163), 1, anon_sym_if, - ACTIONS(2995), 1, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(2997), 1, + ACTIONS(3167), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3206), 2, - sym__newline, - anon_sym_SEMI, - [106769] = 4, - ACTIONS(3538), 1, + ACTIONS(3535), 2, anon_sym_COMMA, - STATE(1982), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3540), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [106786] = 6, - ACTIONS(3145), 1, + anon_sym_COLON, + [106840] = 6, + ACTIONS(3153), 1, anon_sym_as, - ACTIONS(3147), 1, + ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3149), 1, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3151), 1, + ACTIONS(3159), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3542), 2, + ACTIONS(3537), 2, anon_sym_RPAREN, anon_sym_COMMA, - [106807] = 7, - ACTIONS(3458), 1, - anon_sym_DOT, - ACTIONS(3462), 1, - anon_sym_COLON, - ACTIONS(3466), 1, - anon_sym_PIPE, - ACTIONS(3544), 1, - anon_sym_COMMA, - ACTIONS(3546), 1, - anon_sym_RBRACK, - STATE(2348), 1, - aux_sym_type_parameter_repeat1, + [106861] = 4, + ACTIONS(3165), 1, + anon_sym_and, + ACTIONS(3167), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106830] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3550), 1, - anon_sym_BSLASH, - ACTIONS(3548), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [106847] = 2, + ACTIONS(2998), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [106878] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3208), 6, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(3539), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3350), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [106860] = 4, - ACTIONS(3552), 1, + [106893] = 4, + ACTIONS(3541), 1, anon_sym_COMMA, - STATE(1882), 1, + STATE(1888), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3554), 4, + ACTIONS(3452), 4, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [106877] = 3, + [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(3556), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3432), 4, + ACTIONS(3507), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [106927] = 4, + ACTIONS(3545), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [106892] = 4, - ACTIONS(3), 1, + STATE(1957), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, 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, - [106909] = 2, + ACTIONS(3460), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [106944] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3528), 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, - [106922] = 2, + [106957] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3562), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(3547), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3251), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [106972] = 4, + ACTIONS(3549), 1, + anon_sym_COMMA, + STATE(1911), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2871), 4, anon_sym_COLON, anon_sym_EQ, - anon_sym_PIPE, - [106935] = 6, - ACTIONS(3153), 1, + anon_sym_RBRACE, + sym_type_conversion, + [106989] = 6, + ACTIONS(3143), 1, anon_sym_as, - ACTIONS(3155), 1, + ACTIONS(3145), 1, anon_sym_if, - ACTIONS(3157), 1, + ACTIONS(3149), 1, anon_sym_and, - ACTIONS(3159), 1, + ACTIONS(3151), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3564), 2, + ACTIONS(3552), 2, anon_sym_COMMA, - anon_sym_COLON, - [106956] = 2, + anon_sym_RBRACE, + [107010] = 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(3566), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [106969] = 6, - ACTIONS(3489), 1, + ACTIONS(3209), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [107031] = 7, + ACTIONS(3516), 1, anon_sym_DOT, - ACTIONS(3491), 1, + ACTIONS(3520), 1, anon_sym_COLON, - ACTIONS(3493), 1, + ACTIONS(3524), 1, anon_sym_PIPE, - ACTIONS(3570), 1, - anon_sym_EQ, + ACTIONS(3554), 1, + anon_sym_COMMA, + ACTIONS(3556), 1, + anon_sym_RBRACK, + STATE(2253), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3568), 2, - sym__newline, - anon_sym_SEMI, - [106990] = 6, + [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, @@ -116186,212 +115895,156 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3530), 2, + ACTIONS(3562), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - [107011] = 6, - ACTIONS(3166), 1, + [107092] = 6, + ACTIONS(3153), 1, anon_sym_as, - ACTIONS(3168), 1, + ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3172), 1, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3174), 1, + ACTIONS(3159), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3542), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [107032] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3572), 6, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [107045] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3519), 6, - anon_sym_DOT, + ACTIONS(3564), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, + [107113] = 4, + ACTIONS(3490), 1, anon_sym_PIPE, - [107058] = 4, - ACTIONS(3574), 1, - anon_sym_COMMA, - STATE(1926), 1, - aux_sym_for_in_clause_repeat1, + STATE(1887), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3471), 4, - anon_sym_RPAREN, + ACTIONS(3566), 4, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - [107075] = 2, + anon_sym_COLON, + [107130] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1632), 6, - anon_sym_DOT, + ACTIONS(3568), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3350), 4, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_as, anon_sym_PIPE, - [107088] = 6, - ACTIONS(3181), 1, + [107145] = 6, + ACTIONS(3143), 1, anon_sym_as, - ACTIONS(3183), 1, + ACTIONS(3145), 1, anon_sym_if, - ACTIONS(3185), 1, + ACTIONS(3149), 1, anon_sym_and, - ACTIONS(3187), 1, + ACTIONS(3151), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1445), 2, + ACTIONS(3537), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [107109] = 2, + anon_sym_RBRACE, + [107166] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3456), 6, + ACTIONS(3570), 6, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107122] = 2, + [107179] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3562), 6, + ACTIONS(2951), 6, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107135] = 4, - ACTIONS(3577), 1, - anon_sym_COMMA, - STATE(1954), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3540), 4, + [107192] = 6, + ACTIONS(3161), 1, + anon_sym_as, + ACTIONS(3163), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [107152] = 2, + ACTIONS(3165), 1, + anon_sym_and, + ACTIONS(3167), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1632), 6, - sym__newline, - anon_sym_SEMI, + ACTIONS(3209), 2, + anon_sym_COMMA, + anon_sym_COLON, + [107213] = 6, + ACTIONS(3572), 1, anon_sym_DOT, + ACTIONS(3576), 1, anon_sym_COLON, + ACTIONS(3578), 1, anon_sym_EQ, + ACTIONS(3580), 1, anon_sym_PIPE, - [107165] = 4, - ACTIONS(3579), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3574), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [107234] = 4, + ACTIONS(3448), 1, anon_sym_DOT, - STATE(1933), 1, + STATE(1874), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3208), 4, + ACTIONS(3187), 4, sym__newline, anon_sym_SEMI, anon_sym_COMMA, anon_sym_as, - [107182] = 4, - ACTIONS(3582), 1, - anon_sym_COMMA, - STATE(1970), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3554), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [107199] = 2, + [107251] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3208), 6, + ACTIONS(3570), 6, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [107212] = 6, - ACTIONS(3181), 1, + [107264] = 6, + ACTIONS(3153), 1, anon_sym_as, - ACTIONS(3183), 1, + ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3185), 1, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3187), 1, + ACTIONS(3159), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3584), 2, + ACTIONS(3202), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [107233] = 6, - ACTIONS(2991), 1, - anon_sym_as, - ACTIONS(2993), 1, - anon_sym_if, - ACTIONS(2995), 1, - anon_sym_and, - ACTIONS(2997), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3586), 2, - sym__newline, - anon_sym_SEMI, - [107254] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3590), 1, - anon_sym_BSLASH, - ACTIONS(3588), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [107271] = 6, + [107285] = 6, ACTIONS(3153), 1, anon_sym_as, ACTIONS(3155), 1, @@ -116403,5933 +116056,5968 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3592), 2, + ACTIONS(3582), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - [107292] = 4, - ACTIONS(3594), 1, + [107306] = 4, + ACTIONS(3584), 1, anon_sym_COMMA, - STATE(1887), 1, + STATE(1906), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3540), 4, - anon_sym_RPAREN, + ACTIONS(3586), 4, anon_sym_if, anon_sym_async, anon_sym_for, - [107309] = 6, - ACTIONS(3166), 1, - anon_sym_as, - ACTIONS(3168), 1, - anon_sym_if, - ACTIONS(3172), 1, - anon_sym_and, - ACTIONS(3174), 1, - anon_sym_or, + anon_sym_RBRACK, + [107323] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3596), 2, + ACTIONS(3454), 6, + anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [107330] = 7, - ACTIONS(3155), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [107336] = 7, + ACTIONS(3516), 1, + anon_sym_DOT, + ACTIONS(3520), 1, + anon_sym_COLON, + ACTIONS(3524), 1, + anon_sym_PIPE, + ACTIONS(3588), 1, + anon_sym_COMMA, + ACTIONS(3590), 1, + anon_sym_RBRACK, + STATE(2472), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [107359] = 6, + ACTIONS(3177), 1, + anon_sym_as, + ACTIONS(3179), 1, anon_sym_if, - ACTIONS(3157), 1, + ACTIONS(3181), 1, anon_sym_and, - ACTIONS(3159), 1, + ACTIONS(3183), 1, anon_sym_or, - ACTIONS(3598), 1, - anon_sym_COMMA, - ACTIONS(3600), 1, - anon_sym_as, - ACTIONS(3602), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107353] = 3, + ACTIONS(3552), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [107380] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3604), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3432), 4, - anon_sym_RPAREN, + ACTIONS(3462), 6, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [107368] = 4, - ACTIONS(3606), 1, - anon_sym_COMMA, - STATE(1944), 1, - aux_sym__patterns_repeat1, + [107393] = 3, + STATE(1887), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2873), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [107385] = 4, - ACTIONS(3609), 1, + ACTIONS(3592), 5, anon_sym_COMMA, - STATE(1926), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [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(3554), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [107402] = 7, - ACTIONS(3155), 1, + ACTIONS(3582), 2, + anon_sym_COMMA, + anon_sym_COLON, + [107429] = 7, + ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3157), 1, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3159), 1, + ACTIONS(3167), 1, anon_sym_or, - ACTIONS(3600), 1, - anon_sym_as, - ACTIONS(3611), 1, + ACTIONS(3594), 1, anon_sym_COMMA, - ACTIONS(3613), 1, + ACTIONS(3596), 1, + anon_sym_as, + ACTIONS(3598), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107425] = 6, - ACTIONS(3166), 1, + [107452] = 6, + ACTIONS(3153), 1, anon_sym_as, - ACTIONS(3168), 1, + ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3172), 1, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3174), 1, + ACTIONS(3159), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3260), 2, + ACTIONS(3552), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [107446] = 6, - ACTIONS(3181), 1, + [107473] = 6, + ACTIONS(3153), 1, anon_sym_as, - ACTIONS(3183), 1, + ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3185), 1, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3187), 1, + ACTIONS(3159), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3204), 2, + ACTIONS(3209), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [107467] = 3, + [107494] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3615), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3432), 4, + ACTIONS(3570), 6, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [107482] = 7, - ACTIONS(3458), 1, + [107507] = 6, + ACTIONS(3472), 1, anon_sym_DOT, - ACTIONS(3462), 1, + ACTIONS(3474), 1, anon_sym_COLON, - ACTIONS(3466), 1, + ACTIONS(3476), 1, anon_sym_PIPE, - ACTIONS(3617), 1, - anon_sym_COMMA, - ACTIONS(3619), 1, - anon_sym_RBRACK, - STATE(2315), 1, - aux_sym_type_parameter_repeat1, + ACTIONS(3602), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107505] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3623), 1, - anon_sym_BSLASH, - ACTIONS(3621), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [107522] = 6, - ACTIONS(3166), 1, - anon_sym_as, - ACTIONS(3168), 1, - anon_sym_if, - ACTIONS(3172), 1, - anon_sym_and, - ACTIONS(3174), 1, - anon_sym_or, + ACTIONS(3600), 2, + sym__newline, + anon_sym_SEMI, + [107528] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3584), 2, + ACTIONS(3604), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3251), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_as, + anon_sym_PIPE, [107543] = 4, - ACTIONS(3), 1, + ACTIONS(3606), 1, + anon_sym_COMMA, + STATE(1894), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3627), 1, - anon_sym_BSLASH, - ACTIONS(3625), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, + ACTIONS(3452), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, [107560] = 4, - ACTIONS(3629), 1, + ACTIONS(3608), 1, anon_sym_COMMA, - STATE(1970), 1, + STATE(1875), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3481), 4, + ACTIONS(3586), 4, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACE, [107577] = 4, - ACTIONS(3507), 1, - anon_sym_DOT, - STATE(1893), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(3490), 1, + anon_sym_PIPE, + STATE(1887), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3192), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(3610), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_COLON, [107594] = 7, - ACTIONS(3458), 1, + ACTIONS(3516), 1, anon_sym_DOT, - ACTIONS(3462), 1, + ACTIONS(3520), 1, anon_sym_COLON, - ACTIONS(3466), 1, + ACTIONS(3524), 1, anon_sym_PIPE, - ACTIONS(3631), 1, + ACTIONS(3612), 1, anon_sym_COMMA, - ACTIONS(3633), 1, + ACTIONS(3614), 1, anon_sym_RBRACK, - STATE(2316), 1, + STATE(2236), 1, aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107617] = 4, - ACTIONS(3505), 1, - anon_sym_PIPE, - STATE(1901), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3635), 4, - anon_sym_COMMA, + [107617] = 6, + ACTIONS(2967), 1, anon_sym_as, + ACTIONS(2969), 1, anon_sym_if, - anon_sym_COLON, - [107634] = 4, - ACTIONS(3637), 1, - anon_sym_COMMA, - STATE(1945), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(2971), 1, + anon_sym_and, + ACTIONS(2973), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3515), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [107651] = 6, - ACTIONS(3181), 1, - anon_sym_as, - ACTIONS(3183), 1, - anon_sym_if, - ACTIONS(3185), 1, - anon_sym_and, - ACTIONS(3187), 1, - anon_sym_or, + ACTIONS(3616), 2, + sym__newline, + anon_sym_SEMI, + [107638] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3206), 2, + ACTIONS(3194), 6, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [107672] = 6, - ACTIONS(3181), 1, anon_sym_as, - ACTIONS(3183), 1, - anon_sym_if, - ACTIONS(3185), 1, - anon_sym_and, - ACTIONS(3187), 1, - anon_sym_or, + anon_sym_PIPE, + anon_sym_RBRACE, + [107651] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3620), 1, + anon_sym_BSLASH, + ACTIONS(3618), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [107668] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3542), 2, + ACTIONS(3194), 6, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_RBRACK, - [107693] = 6, - ACTIONS(3145), 1, + anon_sym_PIPE, + [107681] = 6, + ACTIONS(3153), 1, anon_sym_as, - ACTIONS(3147), 1, + ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3149), 1, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3151), 1, + ACTIONS(3159), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3204), 2, + ACTIONS(3464), 2, anon_sym_RPAREN, anon_sym_COMMA, - [107714] = 6, - ACTIONS(3639), 1, - anon_sym_DOT, - ACTIONS(3643), 1, - anon_sym_COLON, - ACTIONS(3645), 1, - anon_sym_EQ, - ACTIONS(3647), 1, - anon_sym_PIPE, - ACTIONS(3), 2, + [107702] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3641), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [107735] = 6, - ACTIONS(3145), 1, + 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(3147), 1, + ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3149), 1, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3151), 1, + ACTIONS(3159), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3592), 2, + ACTIONS(3626), 2, anon_sym_RPAREN, anon_sym_COMMA, - [107756] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3528), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [107769] = 4, - ACTIONS(3649), 1, + [107740] = 4, + ACTIONS(3628), 1, anon_sym_COMMA, - STATE(1944), 1, - aux_sym__patterns_repeat1, + STATE(1908), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(979), 4, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(3507), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - sym_type_conversion, - [107786] = 6, - ACTIONS(3153), 1, + [107757] = 6, + ACTIONS(3177), 1, anon_sym_as, - ACTIONS(3155), 1, + ACTIONS(3179), 1, anon_sym_if, - ACTIONS(3157), 1, + ACTIONS(3181), 1, anon_sym_and, - ACTIONS(3159), 1, + ACTIONS(3183), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3651), 2, + ACTIONS(3468), 2, anon_sym_COMMA, - anon_sym_COLON, - [107807] = 4, - ACTIONS(3653), 1, + anon_sym_RBRACK, + [107778] = 4, + ACTIONS(3630), 1, anon_sym_COMMA, - STATE(1967), 1, - aux_sym_assert_statement_repeat1, + STATE(1942), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3204), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [107824] = 2, + ACTIONS(3586), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [107795] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2955), 6, + ACTIONS(3632), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107837] = 4, - ACTIONS(3157), 1, - anon_sym_and, - ACTIONS(3159), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3008), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [107854] = 4, - ACTIONS(3656), 1, + [107808] = 4, + ACTIONS(3634), 1, anon_sym_COMMA, - STATE(1970), 1, + STATE(1957), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3471), 4, + ACTIONS(3495), 4, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [107871] = 6, - ACTIONS(3145), 1, + [107825] = 6, + ACTIONS(3153), 1, anon_sym_as, - ACTIONS(3147), 1, + ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3149), 1, + ACTIONS(3157), 1, anon_sym_and, - ACTIONS(3151), 1, + ACTIONS(3159), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3659), 2, + ACTIONS(3637), 2, anon_sym_RPAREN, anon_sym_COMMA, - [107892] = 4, + [107846] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3663), 1, + ACTIONS(3641), 1, anon_sym_BSLASH, - ACTIONS(3661), 5, + ACTIONS(3639), 5, sym__string_content, sym_escape_interpolation, sym_string_end, anon_sym_LBRACE, sym_escape_sequence, - [107909] = 6, - ACTIONS(2991), 1, - anon_sym_as, - ACTIONS(2993), 1, - anon_sym_if, - ACTIONS(2995), 1, - anon_sym_and, - ACTIONS(2997), 1, - anon_sym_or, + [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(3665), 2, + ACTIONS(3647), 6, sym__newline, anon_sym_SEMI, - [107930] = 6, - ACTIONS(3145), 1, - anon_sym_as, - ACTIONS(3147), 1, - anon_sym_if, - ACTIONS(3149), 1, - anon_sym_and, - ACTIONS(3151), 1, - anon_sym_or, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [107893] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3584), 2, - anon_sym_RPAREN, + ACTIONS(3533), 6, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - [107951] = 6, - ACTIONS(3145), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [107906] = 6, + ACTIONS(3177), 1, anon_sym_as, - ACTIONS(3147), 1, + ACTIONS(3179), 1, anon_sym_if, - ACTIONS(3149), 1, + ACTIONS(3181), 1, anon_sym_and, - ACTIONS(3151), 1, + ACTIONS(3183), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3596), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [107972] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3208), 6, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1449), 2, anon_sym_COMMA, - anon_sym_as, anon_sym_RBRACK, + [107927] = 4, + ACTIONS(3649), 1, anon_sym_PIPE, - [107985] = 6, - ACTIONS(3145), 1, - anon_sym_as, - ACTIONS(3147), 1, - anon_sym_if, - ACTIONS(3149), 1, - anon_sym_and, - ACTIONS(3151), 1, - anon_sym_or, + STATE(1964), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3667), 2, - anon_sym_RPAREN, + ACTIONS(3592), 4, anon_sym_COMMA, - [108006] = 6, - ACTIONS(3145), 1, anon_sym_as, - ACTIONS(3147), 1, anon_sym_if, - ACTIONS(3149), 1, - anon_sym_and, - ACTIONS(3151), 1, - anon_sym_or, + anon_sym_COLON, + [107944] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3564), 2, + ACTIONS(3194), 6, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - [108027] = 2, + anon_sym_as, + anon_sym_PIPE, + [107957] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3485), 6, + ACTIONS(3647), 6, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [108040] = 5, - ACTIONS(3639), 1, + [107970] = 5, + ACTIONS(3572), 1, anon_sym_DOT, - ACTIONS(3643), 1, + ACTIONS(3576), 1, anon_sym_COLON, - ACTIONS(3647), 1, + ACTIONS(3580), 1, anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3487), 3, + ACTIONS(3470), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [108059] = 2, + [107989] = 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(3566), 6, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [108072] = 4, - ACTIONS(3669), 1, + ACTIONS(3468), 2, anon_sym_COMMA, - STATE(1882), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3481), 4, + anon_sym_RBRACE, + [108010] = 7, + ACTIONS(3163), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [108089] = 4, - ACTIONS(3673), 1, - anon_sym_AT, + ACTIONS(3165), 1, + anon_sym_and, + ACTIONS(3167), 1, + anon_sym_or, + ACTIONS(3596), 1, + anon_sym_as, + ACTIONS(3652), 1, + anon_sym_COMMA, + ACTIONS(3654), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1983), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - ACTIONS(3671), 3, - anon_sym_async, - anon_sym_def, - anon_sym_class, - [108106] = 4, - ACTIONS(3676), 1, + [108033] = 4, + ACTIONS(3656), 1, anon_sym_COMMA, - STATE(1967), 1, + STATE(1970), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1291), 4, + ACTIONS(3209), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [108123] = 3, + [108050] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3678), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3229), 4, + ACTIONS(3533), 6, + anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [108138] = 2, + [108063] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3572), 6, - anon_sym_DOT, - anon_sym_RPAREN, + ACTIONS(3659), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3251), 4, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [108151] = 2, + [108078] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3572), 6, + ACTIONS(2951), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [108164] = 2, + [108091] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3485), 5, + ACTIONS(3462), 6, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [108176] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3680), 5, - anon_sym_COMMA, + [108104] = 6, + ACTIONS(3161), 1, anon_sym_as, + ACTIONS(3163), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [108188] = 4, - ACTIONS(3682), 1, - anon_sym_PIPE, - STATE(2091), 1, - aux_sym_union_pattern_repeat1, + ACTIONS(3165), 1, + anon_sym_and, + ACTIONS(3167), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3503), 3, - anon_sym_RPAREN, + ACTIONS(3637), 2, anon_sym_COMMA, - anon_sym_as, - [108204] = 3, - STATE(2091), 1, - aux_sym_union_pattern_repeat1, + anon_sym_COLON, + [108125] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3523), 4, - anon_sym_RPAREN, + ACTIONS(3661), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3350), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [108218] = 4, - ACTIONS(3684), 1, - anon_sym_PIPE, - STATE(1992), 1, - aux_sym_union_pattern_repeat1, + anon_sym_RBRACE, + [108140] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3523), 3, + ACTIONS(3632), 6, + anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - [108234] = 2, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [108153] = 3, + ACTIONS(3663), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3687), 5, + ACTIONS(3251), 5, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [108246] = 5, - ACTIONS(3691), 1, - anon_sym_COMMA, - ACTIONS(3693), 1, anon_sym_as, - STATE(2173), 1, - aux_sym__import_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3689), 2, - sym__newline, - anon_sym_SEMI, - [108264] = 5, - ACTIONS(3695), 1, - anon_sym_DOT, - ACTIONS(3697), 1, + anon_sym_if, anon_sym_COLON, - ACTIONS(3699), 1, anon_sym_PIPE, - ACTIONS(3), 2, + [108168] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3487), 2, - anon_sym_COMMA, - anon_sym_EQ, - [108282] = 5, - ACTIONS(3489), 1, + 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, - ACTIONS(3491), 1, - anon_sym_COLON, - ACTIONS(3493), 1, - anon_sym_PIPE, + STATE(1980), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3701), 2, + ACTIONS(3194), 4, sym__newline, anon_sym_SEMI, - [108300] = 2, + anon_sym_COMMA, + anon_sym_as, + [108202] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3566), 5, + ACTIONS(1609), 6, anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [108312] = 6, - ACTIONS(3703), 1, - anon_sym_COLON, - ACTIONS(3705), 1, - anon_sym_EQ, - ACTIONS(3707), 1, - anon_sym_RBRACE, - ACTIONS(3709), 1, - sym_type_conversion, - STATE(2743), 1, - sym_format_specifier, + [108215] = 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, - [108332] = 4, - ACTIONS(3711), 1, - anon_sym_PIPE, - STATE(2107), 1, - aux_sym_union_pattern_repeat1, + ACTIONS(3202), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [108236] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3503), 3, + ACTIONS(3672), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACE, - [108348] = 3, - STATE(2107), 1, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [108248] = 4, + ACTIONS(3674), 1, + anon_sym_PIPE, + STATE(1984), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3523), 4, + ACTIONS(3592), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [108362] = 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(3713), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [108382] = 4, - ACTIONS(3715), 1, - anon_sym_PIPE, - STATE(2002), 1, - aux_sym_union_pattern_repeat1, + [108264] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3523), 3, + ACTIONS(3677), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACE, - [108398] = 5, - ACTIONS(3458), 1, - anon_sym_DOT, - ACTIONS(3462), 1, + anon_sym_if, anon_sym_COLON, - ACTIONS(3466), 1, anon_sym_PIPE, + [108276] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3718), 2, + ACTIONS(3679), 5, anon_sym_COMMA, - anon_sym_RBRACK, - [108416] = 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(3720), 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108436] = 2, + ACTIONS(3470), 2, + anon_sym_COMMA, + anon_sym_EQ, + [108306] = 5, + ACTIONS(3689), 1, + anon_sym_COMMA, + ACTIONS(3691), 1, + anon_sym_as, + STATE(2162), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2955), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [108448] = 6, - ACTIONS(3153), 1, + ACTIONS(3687), 2, + sym__newline, + anon_sym_SEMI, + [108324] = 6, + ACTIONS(3161), 1, anon_sym_as, - ACTIONS(3155), 1, + ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3157), 1, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3159), 1, + ACTIONS(3167), 1, anon_sym_or, - ACTIONS(3722), 1, - anon_sym_COLON, + ACTIONS(3693), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108468] = 6, - ACTIONS(3153), 1, + [108344] = 6, + ACTIONS(3161), 1, anon_sym_as, - ACTIONS(3155), 1, + ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3157), 1, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3159), 1, + ACTIONS(3167), 1, anon_sym_or, - ACTIONS(3724), 1, + ACTIONS(3695), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108488] = 4, - ACTIONS(3726), 1, - anon_sym_COMMA, - STATE(2008), 1, - aux_sym_assert_statement_repeat1, + [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(3204), 3, + ACTIONS(3697), 2, sym__newline, anon_sym_SEMI, - anon_sym_from, - [108504] = 2, + [108382] = 6, + ACTIONS(3161), 1, + anon_sym_as, + ACTIONS(3163), 1, + anon_sym_if, + ACTIONS(3165), 1, + anon_sym_and, + ACTIONS(3167), 1, + anon_sym_or, + ACTIONS(3699), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3729), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [108516] = 2, + [108402] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3731), 5, + ACTIONS(3701), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108528] = 2, + [108414] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3733), 5, + ACTIONS(3703), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108540] = 2, + [108426] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3735), 5, + ACTIONS(3705), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108552] = 5, - ACTIONS(3737), 1, - anon_sym_COMMA, - ACTIONS(3739), 1, - anon_sym_RBRACE, - STATE(2367), 1, - aux_sym_dict_pattern_repeat1, + [108438] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3229), 2, + ACTIONS(3466), 5, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [108570] = 5, - ACTIONS(3741), 1, - anon_sym_COMMA, - ACTIONS(3743), 1, - anon_sym_RBRACE, - STATE(2450), 1, - aux_sym_dict_pattern_repeat1, + [108450] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3229), 2, + ACTIONS(3707), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108588] = 2, + [108462] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1632), 5, - anon_sym_DOT, + ACTIONS(3709), 5, anon_sym_COMMA, + anon_sym_as, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_PIPE, - [108600] = 2, + 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, - ACTIONS(3456), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [108612] = 2, + [108494] = 3, + STATE(2067), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3562), 5, - anon_sym_DOT, + ACTIONS(3592), 4, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [108624] = 6, - ACTIONS(2582), 1, - anon_sym_COLON, - ACTIONS(3499), 1, - anon_sym_if, - ACTIONS(3745), 1, - anon_sym_COMMA, - STATE(2167), 1, - aux_sym_case_clause_repeat1, - STATE(2763), 1, - sym_if_clause, + [108508] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108644] = 6, - ACTIONS(3153), 1, + ACTIONS(3719), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3157), 1, + anon_sym_COLON, + anon_sym_PIPE, + [108520] = 6, + ACTIONS(3161), 1, + anon_sym_as, + ACTIONS(3163), 1, + anon_sym_if, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3159), 1, + ACTIONS(3167), 1, anon_sym_or, - ACTIONS(3747), 1, - anon_sym_COLON, + ACTIONS(3721), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108664] = 6, - ACTIONS(3153), 1, + [108540] = 6, + ACTIONS(2967), 1, anon_sym_as, - ACTIONS(3155), 1, + ACTIONS(2969), 1, anon_sym_if, - ACTIONS(3157), 1, + ACTIONS(2971), 1, anon_sym_and, - ACTIONS(3159), 1, + ACTIONS(2973), 1, anon_sym_or, - ACTIONS(3749), 1, - anon_sym_COLON, + ACTIONS(3723), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108684] = 4, - ACTIONS(3157), 1, - anon_sym_and, - ACTIONS(3159), 1, - anon_sym_or, + [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(3008), 3, + ACTIONS(3592), 3, + anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, + [108576] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3728), 5, + anon_sym_COMMA, anon_sym_if, - anon_sym_COLON, - [108700] = 6, - ACTIONS(3153), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [108588] = 6, + ACTIONS(3161), 1, anon_sym_as, - ACTIONS(3155), 1, + ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3157), 1, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3159), 1, + ACTIONS(3167), 1, anon_sym_or, - ACTIONS(3751), 1, + ACTIONS(3730), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108720] = 6, - ACTIONS(3155), 1, + [108608] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3732), 5, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - ACTIONS(3157), 1, + anon_sym_COLON, + anon_sym_PIPE, + [108620] = 6, + ACTIONS(3161), 1, + anon_sym_as, + ACTIONS(3163), 1, + anon_sym_if, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3159), 1, + ACTIONS(3167), 1, anon_sym_or, - ACTIONS(3753), 1, - anon_sym_as, - ACTIONS(3755), 1, + ACTIONS(3368), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108740] = 2, + [108640] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3485), 5, + ACTIONS(1609), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [108752] = 5, - ACTIONS(3458), 1, - anon_sym_DOT, - ACTIONS(3462), 1, - anon_sym_COLON, - ACTIONS(3466), 1, - anon_sym_PIPE, + [108652] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3487), 2, + ACTIONS(3632), 5, + anon_sym_DOT, anon_sym_COMMA, + anon_sym_COLON, anon_sym_RBRACK, - [108770] = 2, + anon_sym_PIPE, + [108664] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3566), 5, + ACTIONS(3647), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [108782] = 5, - ACTIONS(3639), 1, - anon_sym_DOT, - ACTIONS(3643), 1, + [108676] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3734), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - ACTIONS(3647), 1, 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3641), 2, - anon_sym_RPAREN, + [108708] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3738), 5, anon_sym_COMMA, - [108800] = 5, - ACTIONS(3757), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [108720] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3740), 5, anon_sym_COMMA, - ACTIONS(3759), 1, - anon_sym_RBRACE, - STATE(2275), 1, - aux_sym_dict_pattern_repeat1, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [108732] = 6, + ACTIONS(3163), 1, + anon_sym_if, + ACTIONS(3165), 1, + anon_sym_and, + ACTIONS(3167), 1, + anon_sym_or, + ACTIONS(3742), 1, + anon_sym_as, + ACTIONS(3744), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [108752] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3229), 2, + ACTIONS(3709), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108818] = 6, - ACTIONS(3761), 1, - anon_sym_LBRACE, - ACTIONS(3763), 1, - anon_sym_RBRACE, - ACTIONS(3765), 1, - aux_sym_format_specifier_token1, - STATE(2093), 1, - aux_sym_format_specifier_repeat1, - STATE(2470), 1, - sym_interpolation, - ACTIONS(5), 2, + [108764] = 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108838] = 2, + ACTIONS(3746), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [108776] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3572), 5, + ACTIONS(3570), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [108850] = 2, + [108788] = 6, + ACTIONS(3161), 1, + anon_sym_as, + ACTIONS(3163), 1, + anon_sym_if, + ACTIONS(3165), 1, + anon_sym_and, + ACTIONS(3167), 1, + anon_sym_or, + ACTIONS(3748), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3767), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [108862] = 2, + [108808] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3471), 5, - anon_sym_RPAREN, + 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, - anon_sym_async, - anon_sym_for, - [108874] = 4, - ACTIONS(3769), 1, - anon_sym_COMMA, - STATE(2008), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3165), 1, + anon_sym_and, + ACTIONS(3167), 1, + anon_sym_or, + ACTIONS(3750), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1291), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - [108890] = 3, - ACTIONS(3771), 1, + [108840] = 6, + ACTIONS(1579), 1, + anon_sym_LBRACK, + ACTIONS(3752), 1, anon_sym_LPAREN, + ACTIONS(3754), 1, + anon_sym_COLON, + STATE(2438), 1, + sym_type_parameter, + STATE(2667), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [108860] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3229), 4, + ACTIONS(3194), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, + [108872] = 4, + ACTIONS(3756), 1, anon_sym_PIPE, - [108904] = 4, - ACTIONS(3773), 1, - anon_sym_PIPE, - STATE(2041), 1, + STATE(1984), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3517), 3, + ACTIONS(3488), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - [108920] = 2, + [108888] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3519), 5, + ACTIONS(1609), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_EQ, anon_sym_PIPE, - [108932] = 2, + [108900] = 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(3758), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [108920] = 4, + ACTIONS(3760), 1, + anon_sym_COMMA, + STATE(2028), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3208), 5, + ACTIONS(3209), 3, sym__newline, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COMMA, + anon_sym_from, + [108936] = 6, + ACTIONS(3161), 1, anon_sym_as, - [108944] = 6, - ACTIONS(3641), 1, - anon_sym_COMMA, - ACTIONS(3695), 1, - anon_sym_DOT, - ACTIONS(3697), 1, - anon_sym_COLON, - ACTIONS(3699), 1, - anon_sym_PIPE, - ACTIONS(3775), 1, - anon_sym_EQ, + ACTIONS(3163), 1, + anon_sym_if, + ACTIONS(3165), 1, + anon_sym_and, + ACTIONS(3167), 1, + anon_sym_or, + ACTIONS(3763), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108964] = 2, + [108956] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3777), 5, + ACTIONS(3765), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108976] = 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(3779), 1, - anon_sym_else, + [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, - [108996] = 4, - ACTIONS(3773), 1, + ACTIONS(3251), 2, + anon_sym_COLON, + anon_sym_PIPE, + [108986] = 4, + ACTIONS(3771), 1, anon_sym_PIPE, - STATE(2049), 1, + STATE(2056), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3635), 3, + ACTIONS(3488), 3, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - [109012] = 2, + anon_sym_RBRACE, + [109002] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3528), 5, - anon_sym_DOT, + ACTIONS(3773), 5, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_PIPE, - [109024] = 2, + [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, - ACTIONS(3781), 5, - anon_sym_COMMA, + [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(3163), 1, anon_sym_if, + ACTIONS(3165), 1, + anon_sym_and, + ACTIONS(3167), 1, + anon_sym_or, + ACTIONS(3779), 1, anon_sym_COLON, - anon_sym_PIPE, - [109036] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3767), 5, - anon_sym_COMMA, + [109074] = 6, + ACTIONS(3161), 1, + anon_sym_as, + ACTIONS(3163), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [109048] = 2, + ACTIONS(3165), 1, + anon_sym_and, + ACTIONS(3167), 1, + anon_sym_or, + ACTIONS(3781), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3471), 5, - anon_sym_COMMA, + [109094] = 5, + ACTIONS(3344), 1, + sym_identifier, + STATE(2221), 1, + sym_dotted_name, + STATE(2433), 1, + sym_aliased_import, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3783), 2, + sym__newline, + anon_sym_SEMI, + [109112] = 6, + ACTIONS(2578), 1, + anon_sym_COLON, + ACTIONS(3484), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [109060] = 5, - ACTIONS(3783), 1, - anon_sym_COMMA, ACTIONS(3785), 1, - anon_sym_RBRACE, - STATE(2330), 1, - aux_sym_dict_pattern_repeat1, + anon_sym_COMMA, + STATE(2106), 1, + aux_sym_case_clause_repeat1, + STATE(2762), 1, + sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3229), 2, + [109132] = 5, + ACTIONS(3516), 1, + anon_sym_DOT, + ACTIONS(3520), 1, anon_sym_COLON, + ACTIONS(3524), 1, anon_sym_PIPE, - [109078] = 4, - ACTIONS(3773), 1, - anon_sym_PIPE, - STATE(2041), 1, - aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3503), 3, + ACTIONS(3787), 2, anon_sym_COMMA, - anon_sym_as, anon_sym_RBRACK, - [109094] = 3, + [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_union_pattern_repeat1, - ACTIONS(3), 2, + aux_sym_format_specifier_repeat1, + STATE(2357), 1, + sym_interpolation, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3523), 4, + [109170] = 5, + ACTIONS(3797), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [109108] = 4, - ACTIONS(3787), 1, - anon_sym_PIPE, - STATE(2049), 1, - aux_sym_union_pattern_repeat1, + ACTIONS(3799), 1, + anon_sym_RBRACE, + STATE(2374), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3523), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [109124] = 2, + ACTIONS(3251), 2, + anon_sym_COLON, + anon_sym_PIPE, + [109188] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3687), 5, + ACTIONS(3801), 5, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [109136] = 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(3790), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [109156] = 2, + anon_sym_COLON, + anon_sym_PIPE, + [109200] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3792), 5, + ACTIONS(3803), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109168] = 5, - ACTIONS(3426), 1, + [109212] = 5, + ACTIONS(3344), 1, sym_identifier, - STATE(2142), 1, + STATE(2221), 1, sym_dotted_name, - STATE(2237), 1, + STATE(2433), 1, sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3794), 2, + ACTIONS(3783), 2, sym__newline, anon_sym_SEMI, - [109186] = 2, + [109230] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1565), 5, + ACTIONS(2951), 5, + anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [109198] = 2, + anon_sym_RBRACK, + anon_sym_PIPE, + [109242] = 3, + ACTIONS(3805), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3796), 5, + ACTIONS(3251), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, anon_sym_PIPE, - [109210] = 2, + [109256] = 3, + ACTIONS(3807), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3798), 5, + ACTIONS(3251), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, anon_sym_PIPE, - [109222] = 2, + anon_sym_RBRACE, + [109270] = 4, + ACTIONS(3756), 1, + anon_sym_PIPE, + STATE(2025), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3800), 5, + ACTIONS(3610), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, + [109286] = 4, + ACTIONS(3771), 1, anon_sym_PIPE, - [109234] = 6, - ACTIONS(3703), 1, - anon_sym_COLON, - ACTIONS(3802), 1, - anon_sym_EQ, - ACTIONS(3804), 1, - anon_sym_RBRACE, - ACTIONS(3806), 1, - sym_type_conversion, - STATE(2664), 1, - sym_format_specifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [109254] = 2, + STATE(2032), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3808), 5, + ACTIONS(3566), 3, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, + anon_sym_RBRACE, + [109302] = 4, + ACTIONS(3771), 1, anon_sym_PIPE, - [109266] = 5, - ACTIONS(3426), 1, - sym_identifier, - STATE(2142), 1, - sym_dotted_name, - STATE(2237), 1, - sym_aliased_import, + STATE(2032), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3794), 2, - sym__newline, - anon_sym_SEMI, - [109284] = 6, - ACTIONS(3153), 1, + ACTIONS(3610), 3, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3155), 1, - anon_sym_if, - ACTIONS(3157), 1, - anon_sym_and, - ACTIONS(3159), 1, - anon_sym_or, - ACTIONS(3810), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [109304] = 5, - ACTIONS(3426), 1, - sym_identifier, - STATE(2142), 1, - sym_dotted_name, - STATE(2237), 1, - sym_aliased_import, + anon_sym_RBRACE, + [109318] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3812), 2, - sym__newline, - anon_sym_SEMI, - [109322] = 2, + ACTIONS(3728), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [109330] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3176), 5, + ACTIONS(2871), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [109334] = 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(3814), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [109354] = 3, - ACTIONS(3816), 1, - anon_sym_LPAREN, + [109342] = 3, + STATE(2032), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3229), 4, - anon_sym_RPAREN, + ACTIONS(3592), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [109368] = 2, + anon_sym_RBRACE, + [109356] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3687), 5, + ACTIONS(3738), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [109380] = 4, - ACTIONS(3682), 1, + [109368] = 4, + ACTIONS(3809), 1, anon_sym_PIPE, - STATE(2091), 1, + STATE(2056), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3517), 3, - anon_sym_RPAREN, + ACTIONS(3592), 3, anon_sym_COMMA, anon_sym_as, - [109396] = 2, + anon_sym_RBRACE, + [109384] = 6, + ACTIONS(3711), 1, + anon_sym_COLON, + ACTIONS(3812), 1, + anon_sym_EQ, + ACTIONS(3814), 1, + anon_sym_RBRACE, + ACTIONS(3816), 1, + sym_type_conversion, + STATE(2654), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3731), 5, + [109404] = 5, + ACTIONS(3818), 1, anon_sym_COMMA, - anon_sym_as, + ACTIONS(3820), 1, + anon_sym_RBRACE, + STATE(2457), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3251), 2, anon_sym_COLON, anon_sym_PIPE, - anon_sym_RBRACE, - [109408] = 2, + [109422] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3818), 5, + ACTIONS(3822), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109420] = 6, - ACTIONS(3153), 1, + [109434] = 6, + ACTIONS(3161), 1, anon_sym_as, - ACTIONS(3155), 1, + ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3157), 1, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3159), 1, + ACTIONS(3167), 1, anon_sym_or, - ACTIONS(3820), 1, - anon_sym_else, + ACTIONS(3824), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109440] = 2, + [109454] = 5, + ACTIONS(3826), 1, + anon_sym_COMMA, + ACTIONS(3828), 1, + anon_sym_RBRACE, + STATE(2263), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3822), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + ACTIONS(3251), 2, anon_sym_COLON, anon_sym_PIPE, - [109452] = 2, + [109472] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3824), 5, + ACTIONS(3830), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109464] = 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(3610), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + [109500] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2882), 5, + ACTIONS(2880), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [109476] = 2, + [109512] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3826), 5, + ACTIONS(3728), 5, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [109488] = 2, + anon_sym_async, + anon_sym_for, + [109524] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3828), 5, + ACTIONS(3738), 5, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [109536] = 4, + ACTIONS(3832), 1, anon_sym_PIPE, - [109500] = 6, - ACTIONS(3426), 1, - sym_identifier, - ACTIONS(3830), 1, - anon_sym_LPAREN, - STATE(1994), 1, - sym_dotted_name, - STATE(2220), 1, - sym_aliased_import, - STATE(2507), 1, - sym__import_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [109520] = 2, + STATE(2004), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3832), 5, + ACTIONS(3488), 3, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [109532] = 2, + anon_sym_RBRACK, + [109552] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2884), 5, + ACTIONS(1581), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [109544] = 6, - ACTIONS(3153), 1, + [109564] = 6, + ACTIONS(3161), 1, anon_sym_as, - ACTIONS(3155), 1, + ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3157), 1, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3159), 1, + ACTIONS(3167), 1, anon_sym_or, ACTIONS(3834), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109564] = 6, - ACTIONS(3153), 1, + [109584] = 4, + ACTIONS(3165), 1, + anon_sym_and, + ACTIONS(3167), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2998), 3, anon_sym_as, - ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3157), 1, + anon_sym_COLON, + [109600] = 6, + ACTIONS(3161), 1, + anon_sym_as, + ACTIONS(3163), 1, + anon_sym_if, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3159), 1, + ACTIONS(3167), 1, anon_sym_or, ACTIONS(3836), 1, - anon_sym_COLON, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109584] = 2, + [109620] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3838), 5, + ACTIONS(3495), 5, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [109596] = 6, - ACTIONS(1563), 1, - anon_sym_LBRACK, - ACTIONS(3840), 1, - anon_sym_LPAREN, - ACTIONS(3842), 1, - anon_sym_COLON, - STATE(2448), 1, - sym_type_parameter, - STATE(2678), 1, - sym_argument_list, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [109632] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109616] = 2, + ACTIONS(3462), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [109644] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2955), 5, + ACTIONS(2951), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [109628] = 2, + [109656] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3844), 5, + ACTIONS(3495), 5, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [109640] = 6, - ACTIONS(1563), 1, - anon_sym_LBRACK, - ACTIONS(3840), 1, - anon_sym_LPAREN, - ACTIONS(3846), 1, - anon_sym_COLON, - STATE(2421), 1, - sym_type_parameter, - STATE(2665), 1, - sym_argument_list, + anon_sym_async, + anon_sym_for, + [109668] = 4, + ACTIONS(3838), 1, + anon_sym_COMMA, + STATE(2028), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109660] = 6, - ACTIONS(3848), 1, - anon_sym_LBRACE, - ACTIONS(3851), 1, - anon_sym_RBRACE, - ACTIONS(3853), 1, - aux_sym_format_specifier_token1, - STATE(2086), 1, - aux_sym_format_specifier_repeat1, - STATE(2470), 1, - sym_interpolation, - ACTIONS(5), 2, + ACTIONS(1287), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + [109684] = 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109680] = 6, - ACTIONS(3155), 1, - anon_sym_if, - ACTIONS(3157), 1, - anon_sym_and, - ACTIONS(3159), 1, - anon_sym_or, - ACTIONS(3753), 1, + ACTIONS(3840), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3856), 1, + anon_sym_if, 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, - [109700] = 6, - ACTIONS(3153), 1, + ACTIONS(3566), 3, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3155), 1, - anon_sym_if, - ACTIONS(3157), 1, - anon_sym_and, - ACTIONS(3159), 1, - anon_sym_or, - ACTIONS(3858), 1, + 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, - [109720] = 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(3860), 1, - anon_sym_COLON, + [109732] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109740] = 2, + ACTIONS(3454), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [109744] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2873), 5, + ACTIONS(3632), 5, + anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [109752] = 4, - ACTIONS(3682), 1, anon_sym_PIPE, - STATE(1992), 1, - aux_sym_union_pattern_repeat1, + [109756] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3635), 3, - anon_sym_RPAREN, + ACTIONS(3647), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, [109768] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1632), 5, + ACTIONS(3454), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, + anon_sym_RBRACK, anon_sym_PIPE, - [109780] = 6, - ACTIONS(3761), 1, - anon_sym_LBRACE, - ACTIONS(3862), 1, - anon_sym_RBRACE, - ACTIONS(3864), 1, - aux_sym_format_specifier_token1, - STATE(2086), 1, - aux_sym_format_specifier_repeat1, - STATE(2470), 1, - sym_interpolation, - ACTIONS(5), 2, + [109780] = 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, - [109800] = 3, - ACTIONS(3866), 1, - anon_sym_LPAREN, + ACTIONS(3470), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [109798] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3229), 4, + ACTIONS(3466), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [109814] = 6, - ACTIONS(3153), 1, + [109810] = 6, + ACTIONS(3161), 1, anon_sym_as, - ACTIONS(3155), 1, + ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3157), 1, + ACTIONS(3165), 1, anon_sym_and, - ACTIONS(3159), 1, + ACTIONS(3167), 1, anon_sym_or, - ACTIONS(3868), 1, + ACTIONS(3844), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109834] = 2, + [109830] = 4, + ACTIONS(3756), 1, + anon_sym_PIPE, + STATE(2025), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3456), 5, - anon_sym_DOT, + ACTIONS(3566), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, + anon_sym_as, [109846] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3562), 5, - anon_sym_DOT, + ACTIONS(2878), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_PIPE, - [109858] = 4, - ACTIONS(3711), 1, - anon_sym_PIPE, - STATE(2107), 1, - aux_sym_union_pattern_repeat1, + anon_sym_RBRACE, + sym_type_conversion, + [109858] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3517), 3, + ACTIONS(3846), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACE, - [109874] = 2, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [109870] = 3, + ACTIONS(3848), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3767), 5, + ACTIONS(3251), 4, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_as, anon_sym_RBRACK, - [109886] = 2, + anon_sym_PIPE, + [109884] = 5, + ACTIONS(3344), 1, + sym_identifier, + STATE(2221), 1, + sym_dotted_name, + STATE(2433), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3471), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [109898] = 6, - ACTIONS(2991), 1, - anon_sym_as, - ACTIONS(2993), 1, - anon_sym_if, - ACTIONS(2995), 1, - anon_sym_and, - ACTIONS(2997), 1, - anon_sym_or, - ACTIONS(3870), 1, + ACTIONS(3850), 2, sym__newline, - ACTIONS(3), 2, + 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, - [109918] = 2, + [109922] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3872), 5, + ACTIONS(3858), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109930] = 2, + [109934] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3874), 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, - [109942] = 2, + ACTIONS(3860), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3876), 5, + [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, + [109986] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3864), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109954] = 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(3343), 1, + [109998] = 6, + ACTIONS(3852), 1, + anon_sym_LBRACE, + ACTIONS(3866), 1, + anon_sym_RBRACE, + ACTIONS(3868), 1, + aux_sym_format_specifier_token1, + STATE(2092), 1, + aux_sym_format_specifier_repeat1, + STATE(2357), 1, + sym_interpolation, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [110018] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3533), 5, + anon_sym_DOT, + anon_sym_COMMA, + 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3574), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [110048] = 3, + STATE(2025), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109974] = 2, + ACTIONS(3592), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [110062] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3878), 5, + ACTIONS(3870), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109986] = 4, - ACTIONS(3711), 1, - anon_sym_PIPE, - STATE(2002), 1, - aux_sym_union_pattern_repeat1, + [110074] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3635), 3, + ACTIONS(3870), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_PIPE, anon_sym_RBRACE, - [110002] = 4, - ACTIONS(3882), 1, - anon_sym_DOT, - STATE(2209), 1, - aux_sym_import_prefix_repeat1, + [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(3880), 2, - anon_sym_import, - sym_identifier, - [110017] = 5, - ACTIONS(3884), 1, + [110102] = 5, + ACTIONS(3876), 1, anon_sym_case, - ACTIONS(3886), 1, + ACTIONS(3878), 1, sym__dedent, - STATE(2199), 1, + STATE(2110), 1, aux_sym__match_block_repeat1, - STATE(2544), 1, + STATE(2533), 1, sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110034] = 4, - ACTIONS(3890), 1, + [110119] = 4, + ACTIONS(3880), 1, anon_sym_COMMA, - STATE(2193), 1, - aux_sym_global_statement_repeat1, + STATE(2106), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3883), 2, + anon_sym_if, + anon_sym_COLON, + [110134] = 5, + ACTIONS(1579), 1, + anon_sym_LBRACK, + ACTIONS(3885), 1, + anon_sym_LPAREN, + STATE(2494), 1, + sym_parameters, + STATE(2497), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [110151] = 4, + ACTIONS(3233), 1, + anon_sym_COMMA, + STATE(2028), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3888), 2, + ACTIONS(3887), 2, sym__newline, anon_sym_SEMI, - [110049] = 2, + [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(3733), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [110060] = 2, + 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, - ACTIONS(3735), 4, + [110198] = 4, + ACTIONS(3895), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [110071] = 2, + STATE(2028), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3832), 4, - anon_sym_RPAREN, + ACTIONS(1467), 2, + sym__newline, + anon_sym_SEMI, + [110213] = 4, + ACTIONS(3899), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [110082] = 2, + STATE(2112), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3824), 4, + ACTIONS(3897), 2, + sym__newline, + anon_sym_SEMI, + [110228] = 4, + ACTIONS(3689), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [110093] = 5, - ACTIONS(3794), 1, - anon_sym_RPAREN, - ACTIONS(3892), 1, - sym_identifier, - STATE(2350), 1, - sym_dotted_name, - STATE(2557), 1, - sym_aliased_import, + STATE(2161), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110110] = 2, + 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, - ACTIONS(3826), 4, + [110260] = 4, + ACTIONS(3891), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [110121] = 5, - ACTIONS(3794), 1, - anon_sym_RPAREN, - ACTIONS(3892), 1, - sym_identifier, - STATE(2350), 1, - sym_dotted_name, - STATE(2557), 1, - sym_aliased_import, + STATE(2154), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110138] = 2, + ACTIONS(3904), 2, + sym__newline, + anon_sym_SEMI, + [110275] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3781), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, + ACTIONS(3251), 2, + anon_sym_COLON, anon_sym_PIPE, - [110149] = 2, + ACTIONS(3906), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [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(3792), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [110160] = 5, - ACTIONS(3894), 1, + ACTIONS(3908), 2, + sym__newline, + anon_sym_SEMI, + [110303] = 5, + ACTIONS(3910), 1, anon_sym_RPAREN, - ACTIONS(3896), 1, + ACTIONS(3912), 1, anon_sym_COMMA, - ACTIONS(3898), 1, + ACTIONS(3914), 1, anon_sym_as, - STATE(2324), 1, + STATE(2365), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110177] = 5, - ACTIONS(3900), 1, + [110320] = 5, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(3902), 1, + ACTIONS(3918), 1, anon_sym_as, - ACTIONS(3904), 1, + ACTIONS(3920), 1, anon_sym_RBRACK, - STATE(2326), 1, + STATE(2370), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110194] = 2, + [110337] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3838), 4, - anon_sym_RPAREN, + ACTIONS(3701), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [110205] = 2, + [110348] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3796), 4, + ACTIONS(3709), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110216] = 2, + [110359] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3798), 4, + ACTIONS(3746), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110227] = 2, + [110370] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3800), 4, + ACTIONS(3803), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110238] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3828), 4, - anon_sym_COMMA, - anon_sym_as, + [110381] = 5, + ACTIONS(3681), 1, + anon_sym_DOT, + ACTIONS(3683), 1, + anon_sym_COLON, + ACTIONS(3685), 1, anon_sym_PIPE, - anon_sym_RBRACE, - [110249] = 2, + ACTIONS(3922), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3808), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [110260] = 5, - ACTIONS(3898), 1, + [110398] = 5, + ACTIONS(3914), 1, anon_sym_as, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_RPAREN, - ACTIONS(3908), 1, + ACTIONS(3926), 1, anon_sym_COMMA, - STATE(2336), 1, + STATE(2391), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110277] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3844), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [110288] = 2, + [110415] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3808), 4, - anon_sym_RPAREN, + ACTIONS(3672), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [110299] = 5, - ACTIONS(3898), 1, - anon_sym_as, - ACTIONS(3910), 1, - anon_sym_RPAREN, - ACTIONS(3912), 1, - anon_sym_COMMA, - STATE(2337), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [110316] = 2, + [110426] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3818), 4, + ACTIONS(3858), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110327] = 2, + [110437] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3822), 4, + ACTIONS(3864), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110338] = 2, + [110448] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3824), 4, + ACTIONS(3705), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110349] = 2, + [110459] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3826), 4, + ACTIONS(3707), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110360] = 2, + [110470] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3828), 4, + ACTIONS(3732), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110371] = 4, - ACTIONS(3268), 1, - anon_sym_COMMA, - STATE(2008), 1, - aux_sym_assert_statement_repeat1, + [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(3914), 2, - sym__newline, - anon_sym_SEMI, - [110386] = 2, + ACTIONS(3928), 2, + anon_sym_import, + sym_identifier, + [110496] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3832), 4, + ACTIONS(3703), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110397] = 2, + [110507] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3838), 4, + ACTIONS(3734), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110408] = 2, + [110518] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3844), 4, + ACTIONS(3773), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110419] = 5, - ACTIONS(1563), 1, - anon_sym_LBRACK, - ACTIONS(3916), 1, - anon_sym_LPAREN, - STATE(2590), 1, - sym_parameters, - STATE(2591), 1, - sym_type_parameter, + [110529] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110436] = 3, - ACTIONS(3693), 1, + ACTIONS(3822), 4, + anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [110540] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3918), 3, - sym__newline, - anon_sym_SEMI, + ACTIONS(3840), 4, anon_sym_COMMA, - [110449] = 2, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [110551] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3872), 4, + ACTIONS(3679), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110460] = 2, + [110562] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3874), 4, + ACTIONS(3765), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110471] = 2, + [110573] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3876), 4, + ACTIONS(3846), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110482] = 2, + [110584] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3920), 4, - anon_sym_async, - anon_sym_def, - anon_sym_class, - anon_sym_AT, - [110493] = 2, + ACTIONS(3830), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [110595] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3878), 4, + ACTIONS(3801), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110504] = 2, + [110606] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3680), 4, + ACTIONS(3677), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110515] = 2, + [110617] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3777), 4, + ACTIONS(3719), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110526] = 5, - ACTIONS(3884), 1, - anon_sym_case, - ACTIONS(3922), 1, - sym__dedent, - STATE(2199), 1, - aux_sym__match_block_repeat1, - STATE(2544), 1, - sym_case_clause, + [110628] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110543] = 2, + ACTIONS(3870), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [110639] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3781), 4, + ACTIONS(3740), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110554] = 5, - ACTIONS(3902), 1, + [110650] = 4, + ACTIONS(3934), 1, + anon_sym_COMMA, + STATE(2214), 1, + aux_sym_print_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3932), 2, + sym__newline, + anon_sym_SEMI, + [110665] = 5, + ACTIONS(3914), 1, anon_sym_as, - ACTIONS(3924), 1, + ACTIONS(3936), 1, + anon_sym_RPAREN, + ACTIONS(3938), 1, anon_sym_COMMA, - ACTIONS(3926), 1, - anon_sym_RBRACK, - STATE(2356), 1, + STATE(2260), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110571] = 4, - ACTIONS(3930), 1, + [110682] = 5, + ACTIONS(3918), 1, + anon_sym_as, + ACTIONS(3940), 1, anon_sym_COMMA, - STATE(2153), 1, - aux_sym__import_list_repeat1, + ACTIONS(3942), 1, + anon_sym_RBRACK, + STATE(2261), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3928), 2, - sym__newline, - anon_sym_SEMI, - [110586] = 2, + [110699] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3872), 4, - anon_sym_RPAREN, + ACTIONS(3610), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_PIPE, - [110597] = 4, - ACTIONS(3933), 1, - anon_sym_COMMA, - STATE(2008), 1, - aux_sym_assert_statement_repeat1, + anon_sym_if, + anon_sym_COLON, + [110710] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1441), 2, - sym__newline, - anon_sym_SEMI, - [110612] = 5, - ACTIONS(3641), 1, - anon_sym_COMMA, - ACTIONS(3695), 1, - anon_sym_DOT, - ACTIONS(3697), 1, - anon_sym_COLON, - ACTIONS(3699), 1, - anon_sym_PIPE, + 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, - [110629] = 5, - ACTIONS(3898), 1, + [110738] = 5, + ACTIONS(3914), 1, anon_sym_as, - ACTIONS(3935), 1, + ACTIONS(3951), 1, anon_sym_RPAREN, - ACTIONS(3937), 1, + ACTIONS(3953), 1, anon_sym_COMMA, - STATE(2444), 1, + STATE(2264), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110646] = 5, - ACTIONS(3902), 1, - anon_sym_as, - ACTIONS(3939), 1, + [110755] = 4, + ACTIONS(3957), 1, anon_sym_COMMA, - ACTIONS(3941), 1, - anon_sym_RBRACK, - STATE(2445), 1, - aux_sym_case_clause_repeat1, + STATE(2154), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110663] = 2, + ACTIONS(3955), 2, + sym__newline, + anon_sym_SEMI, + [110770] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3874), 4, + ACTIONS(3701), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110674] = 5, - ACTIONS(3898), 1, - anon_sym_as, - ACTIONS(3943), 1, - anon_sym_RPAREN, - ACTIONS(3945), 1, - anon_sym_COMMA, - STATE(2447), 1, - aux_sym_case_clause_repeat1, + [110781] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110691] = 2, + ACTIONS(3709), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [110792] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3876), 4, + ACTIONS(3746), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110702] = 2, + [110803] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3878), 4, + ACTIONS(3803), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110713] = 3, - ACTIONS(3497), 1, + [110814] = 5, + ACTIONS(3687), 1, + anon_sym_RPAREN, + ACTIONS(3960), 1, + anon_sym_COMMA, + ACTIONS(3962), 1, anon_sym_as, + STATE(2375), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3947), 3, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - [110726] = 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(3949), 4, + [110848] = 4, + ACTIONS(3966), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [110737] = 5, - ACTIONS(3892), 1, - sym_identifier, STATE(2222), 1, - sym_dotted_name, - STATE(2475), 1, - sym_aliased_import, - STATE(2681), 1, - sym__import_list, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110754] = 5, - ACTIONS(3892), 1, - sym_identifier, + ACTIONS(3964), 2, + sym__newline, + anon_sym_SEMI, + [110863] = 4, + ACTIONS(3968), 1, + anon_sym_COMMA, STATE(2222), 1, - sym_dotted_name, - STATE(2475), 1, - sym_aliased_import, - STATE(2738), 1, - sym__import_list, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110771] = 4, - ACTIONS(3951), 1, + 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(2167), 1, + STATE(2304), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3947), 2, - anon_sym_if, - anon_sym_COLON, - [110786] = 2, + [110895] = 5, + ACTIONS(3918), 1, + anon_sym_as, + ACTIONS(3974), 1, + anon_sym_COMMA, + ACTIONS(3976), 1, + anon_sym_RBRACK, + STATE(2306), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [110912] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3729), 4, + ACTIONS(3672), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [110797] = 2, + [110923] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3680), 4, + ACTIONS(3858), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110808] = 4, - ACTIONS(3956), 1, + [110934] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3864), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2153), 1, - aux_sym__import_list_repeat1, + anon_sym_as, + anon_sym_PIPE, + [110945] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3954), 2, - sym__newline, - anon_sym_SEMI, - [110823] = 2, + ACTIONS(3705), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [110956] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3798), 4, + ACTIONS(3707), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110834] = 5, - ACTIONS(3898), 1, + [110967] = 5, + ACTIONS(3914), 1, anon_sym_as, - ACTIONS(3958), 1, + ACTIONS(3978), 1, anon_sym_RPAREN, - ACTIONS(3960), 1, + ACTIONS(3980), 1, anon_sym_COMMA, - STATE(2472), 1, + STATE(2314), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110851] = 4, - ACTIONS(3962), 1, + [110984] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3732), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2153), 1, - aux_sym__import_list_repeat1, + anon_sym_as, + anon_sym_PIPE, + [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(3954), 2, - sym__newline, - anon_sym_SEMI, - [110866] = 4, - ACTIONS(3966), 1, + [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(3982), 2, + anon_sym_import, + sym_identifier, + [111027] = 4, + ACTIONS(3989), 1, anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(3991), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3964), 2, + ACTIONS(3987), 2, anon_sym_RPAREN, anon_sym_COMMA, - [110881] = 5, - ACTIONS(3426), 1, - sym_identifier, - STATE(1994), 1, - sym_dotted_name, - STATE(2220), 1, - sym_aliased_import, - STATE(2496), 1, - sym__import_list, + [111042] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110898] = 2, + ACTIONS(3993), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [111053] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3832), 4, + ACTIONS(3734), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [110909] = 5, - ACTIONS(3812), 1, - anon_sym_RPAREN, - ACTIONS(3892), 1, - sym_identifier, - STATE(2350), 1, - sym_dotted_name, - STATE(2557), 1, - sym_aliased_import, + [111064] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110926] = 2, + ACTIONS(3773), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [111075] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3777), 4, + ACTIONS(3822), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110937] = 2, + [111086] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3792), 4, + ACTIONS(3840), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110948] = 2, + [111097] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3731), 4, + ACTIONS(3679), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [110959] = 5, - ACTIONS(3695), 1, - anon_sym_DOT, - ACTIONS(3697), 1, - anon_sym_COLON, - ACTIONS(3699), 1, anon_sym_PIPE, - ACTIONS(3970), 1, - anon_sym_EQ, + [111108] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110976] = 2, + ACTIONS(3765), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [111119] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3844), 4, + ACTIONS(3846), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [110987] = 4, - ACTIONS(3974), 1, - anon_sym_COMMA, - STATE(2183), 1, - aux_sym_print_statement_repeat1, + [111130] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3972), 2, - sym__newline, - anon_sym_SEMI, - [111002] = 2, + ACTIONS(3830), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [111141] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3800), 4, + ACTIONS(3801), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111013] = 2, + [111152] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3872), 4, + ACTIONS(3677), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [111024] = 2, + [111163] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3874), 4, + ACTIONS(3719), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [111035] = 3, + [111174] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3229), 2, - anon_sym_COLON, + ACTIONS(3870), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_PIPE, - ACTIONS(3977), 2, + [111185] = 5, + ACTIONS(3914), 1, + anon_sym_as, + ACTIONS(3995), 1, + anon_sym_RPAREN, + ACTIONS(3997), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [111048] = 2, + STATE(2442), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111202] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3876), 4, + ACTIONS(3740), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [111059] = 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(3517), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [111070] = 2, + [111230] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3878), 4, + ACTIONS(3701), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [111081] = 2, + [111241] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3680), 4, + ACTIONS(3746), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [111092] = 4, - ACTIONS(3890), 1, - anon_sym_COMMA, - STATE(2214), 1, - aux_sym_global_statement_repeat1, + [111252] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3979), 2, - sym__newline, - anon_sym_SEMI, - [111107] = 4, - ACTIONS(3890), 1, + ACTIONS(3803), 4, anon_sym_COMMA, - STATE(2214), 1, - aux_sym_global_statement_repeat1, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [111263] = 5, + ACTIONS(3850), 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(3981), 2, - sym__newline, - anon_sym_SEMI, - [111122] = 2, + [111280] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3792), 4, + ACTIONS(3672), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [111133] = 4, - ACTIONS(3985), 1, - anon_sym_COMMA, - STATE(2183), 1, - aux_sym_print_statement_repeat1, + [111291] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3983), 2, - sym__newline, - anon_sym_SEMI, - [111148] = 2, + ACTIONS(3858), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [111302] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3796), 4, + ACTIONS(3864), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [111159] = 2, + [111313] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3798), 4, + ACTIONS(3705), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [111170] = 2, + [111324] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3800), 4, + ACTIONS(3707), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [111181] = 5, - ACTIONS(3987), 1, - anon_sym_case, - ACTIONS(3990), 1, - sym__dedent, - STATE(2199), 1, - aux_sym__match_block_repeat1, - STATE(2544), 1, - sym_case_clause, + [111335] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111198] = 5, - ACTIONS(3898), 1, - anon_sym_as, - ACTIONS(3992), 1, - anon_sym_RPAREN, - ACTIONS(3994), 1, + ACTIONS(3732), 4, anon_sym_COMMA, - STATE(2271), 1, - aux_sym_case_clause_repeat1, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [111346] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111215] = 5, - ACTIONS(3902), 1, - anon_sym_as, - ACTIONS(3996), 1, + ACTIONS(3703), 4, anon_sym_COMMA, - ACTIONS(3998), 1, - anon_sym_RBRACK, - STATE(2272), 1, - aux_sym_case_clause_repeat1, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [111357] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111232] = 2, + ACTIONS(3734), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [111368] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3733), 4, + ACTIONS(3773), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [111243] = 2, + [111379] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3796), 4, - anon_sym_RPAREN, + ACTIONS(3822), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111254] = 2, + anon_sym_RBRACE, + [111390] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3735), 4, + ACTIONS(3840), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [111265] = 2, + [111401] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3808), 4, + ACTIONS(3679), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [111276] = 4, - ACTIONS(4002), 1, - anon_sym_COMMA, - STATE(2183), 1, - aux_sym_print_statement_repeat1, + [111412] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4000), 2, - sym__newline, - anon_sym_SEMI, - [111291] = 2, + ACTIONS(3765), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [111423] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3777), 4, + ACTIONS(3846), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [111302] = 2, + [111434] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3729), 4, - anon_sym_RPAREN, + ACTIONS(3830), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111313] = 4, - ACTIONS(4006), 1, - anon_sym_DOT, - STATE(2209), 1, - aux_sym_import_prefix_repeat1, + anon_sym_RBRACE, + [111445] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4004), 2, - anon_sym_import, - sym_identifier, - [111328] = 2, + 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, - ACTIONS(3731), 4, - anon_sym_RPAREN, + ACTIONS(3677), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111339] = 2, + anon_sym_RBRACE, + [111467] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3733), 4, - anon_sym_RPAREN, + ACTIONS(3719), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111350] = 2, + anon_sym_RBRACE, + [111478] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3735), 4, - anon_sym_RPAREN, + ACTIONS(3740), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111361] = 4, - ACTIONS(3268), 1, + anon_sym_RBRACE, + [111489] = 4, + ACTIONS(4007), 1, anon_sym_COMMA, - STATE(2008), 1, - aux_sym_assert_statement_repeat1, + STATE(2112), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4009), 2, + ACTIONS(4005), 2, sym__newline, anon_sym_SEMI, - [111376] = 4, + [111504] = 5, + ACTIONS(3876), 1, + anon_sym_case, + ACTIONS(4009), 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, + [111521] = 4, ACTIONS(4013), 1, anon_sym_COMMA, - STATE(2214), 1, - aux_sym_global_statement_repeat1, + STATE(2112), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(4011), 2, sym__newline, anon_sym_SEMI, - [111391] = 5, - ACTIONS(3703), 1, - anon_sym_COLON, - ACTIONS(4016), 1, - anon_sym_RBRACE, - ACTIONS(4018), 1, - sym_type_conversion, - STATE(2757), 1, - sym_format_specifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111408] = 5, - ACTIONS(3898), 1, - anon_sym_as, - ACTIONS(4020), 1, - anon_sym_RPAREN, - ACTIONS(4022), 1, + [111536] = 4, + ACTIONS(3233), 1, anon_sym_COMMA, - STATE(2281), 1, - aux_sym_case_clause_repeat1, + STATE(2028), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111425] = 5, - ACTIONS(1563), 1, + ACTIONS(4015), 2, + sym__newline, + anon_sym_SEMI, + [111551] = 5, + ACTIONS(1579), 1, anon_sym_LBRACK, - ACTIONS(3916), 1, + ACTIONS(3885), 1, anon_sym_LPAREN, - STATE(2540), 1, - sym_parameters, - STATE(2546), 1, + STATE(2515), 1, sym_type_parameter, + STATE(2552), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111442] = 2, + [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(3818), 4, - anon_sym_RPAREN, + [111585] = 4, + ACTIONS(3891), 1, anon_sym_COMMA, + STATE(2115), 1, + aux_sym_global_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4021), 2, + sym__newline, + anon_sym_SEMI, + [111600] = 3, + ACTIONS(3691), 1, anon_sym_as, - anon_sym_PIPE, - [111453] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3822), 4, - anon_sym_RPAREN, + ACTIONS(4023), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [111464] = 4, - ACTIONS(3691), 1, + [111613] = 4, + ACTIONS(4027), 1, anon_sym_COMMA, - STATE(2170), 1, + STATE(2222), 1, aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3689), 2, + ACTIONS(4025), 2, sym__newline, anon_sym_SEMI, - [111479] = 5, - ACTIONS(3884), 1, - anon_sym_case, - ACTIONS(4024), 1, - sym__dedent, - STATE(2150), 1, - aux_sym__match_block_repeat1, - STATE(2544), 1, - sym_case_clause, + [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, - [111496] = 5, - ACTIONS(3689), 1, + [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, + [111662] = 5, + ACTIONS(3783), 1, anon_sym_RPAREN, - ACTIONS(4026), 1, - anon_sym_COMMA, - ACTIONS(4028), 1, - anon_sym_as, - STATE(2428), 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, - [111513] = 5, - ACTIONS(3703), 1, - anon_sym_COLON, - ACTIONS(4030), 1, - anon_sym_RBRACE, - ACTIONS(4032), 1, - sym_type_conversion, - STATE(2632), 1, - sym_format_specifier, + [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, - [111530] = 5, - ACTIONS(1563), 1, + [111696] = 5, + ACTIONS(1579), 1, anon_sym_LBRACK, - ACTIONS(3916), 1, + ACTIONS(3885), 1, anon_sym_LPAREN, - STATE(2555), 1, + STATE(2548), 1, sym_parameters, - STATE(2587), 1, + STATE(2576), 1, sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111547] = 5, - ACTIONS(1563), 1, + [111713] = 5, + ACTIONS(1579), 1, anon_sym_LBRACK, - ACTIONS(3916), 1, + ACTIONS(3885), 1, anon_sym_LPAREN, - STATE(2556), 1, + STATE(2550), 1, sym_parameters, - STATE(2588), 1, + STATE(2578), 1, sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111564] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3824), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [111575] = 5, - ACTIONS(3884), 1, - anon_sym_case, - ACTIONS(4034), 1, - sym__dedent, - STATE(2109), 1, - aux_sym__match_block_repeat1, - STATE(2544), 1, - sym_case_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111592] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3818), 4, - anon_sym_COMMA, + [111730] = 5, + ACTIONS(3914), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [111603] = 4, - ACTIONS(4038), 1, - anon_sym_COMMA, - STATE(2195), 1, - aux_sym_print_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4036), 2, - sym__newline, - anon_sym_SEMI, - [111618] = 4, - ACTIONS(3890), 1, + ACTIONS(4030), 1, + anon_sym_RPAREN, + ACTIONS(4032), 1, anon_sym_COMMA, - STATE(2192), 1, - aux_sym_global_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4040), 2, - sym__newline, - anon_sym_SEMI, - [111633] = 2, + STATE(2353), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3822), 4, - anon_sym_COMMA, + [111747] = 3, + ACTIONS(3482), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [111644] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3826), 4, - anon_sym_RPAREN, + ACTIONS(3883), 3, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [111655] = 2, + anon_sym_if, + anon_sym_COLON, + [111760] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3828), 4, + ACTIONS(3703), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111666] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3781), 4, + [111771] = 4, + ACTIONS(4034), 1, anon_sym_RPAREN, + ACTIONS(4036), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [111677] = 2, + STATE(2366), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3729), 4, + [111785] = 4, + ACTIONS(3241), 1, anon_sym_COMMA, - anon_sym_as, + ACTIONS(3243), 1, anon_sym_RBRACK, - anon_sym_PIPE, - [111688] = 2, + STATE(2387), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3838), 4, + [111799] = 4, + ACTIONS(3411), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, + ACTIONS(3413), 1, anon_sym_RBRACE, - [111699] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3918), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [111709] = 4, - ACTIONS(4042), 1, - anon_sym_COMMA, - ACTIONS(4044), 1, - anon_sym_COLON, - STATE(2305), 1, - aux_sym__parameters_repeat1, + STATE(2240), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111723] = 4, - ACTIONS(3695), 1, + [111813] = 4, + ACTIONS(3681), 1, anon_sym_DOT, - ACTIONS(3699), 1, + ACTIONS(3685), 1, anon_sym_PIPE, - ACTIONS(4046), 1, + ACTIONS(4038), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111737] = 3, - ACTIONS(4048), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3964), 2, - anon_sym_COMMA, - anon_sym_COLON, - [111749] = 4, - ACTIONS(3400), 1, + [111827] = 4, + ACTIONS(1011), 1, + anon_sym_RBRACK, + ACTIONS(4040), 1, anon_sym_COMMA, - ACTIONS(3402), 1, - anon_sym_RBRACE, - STATE(2245), 1, - aux_sym_dictionary_repeat1, + STATE(2298), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111763] = 4, - ACTIONS(621), 1, + [111841] = 4, + ACTIONS(615), 1, sym__newline, - ACTIONS(4050), 1, + ACTIONS(4042), 1, anon_sym_SEMI, - STATE(2321), 1, + STATE(2300), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111777] = 4, - ACTIONS(3045), 1, + [111855] = 4, + ACTIONS(3010), 1, anon_sym_COMMA, - ACTIONS(4052), 1, + ACTIONS(4044), 1, anon_sym_RPAREN, - STATE(2322), 1, + STATE(2346), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111791] = 4, - ACTIONS(3045), 1, + [111869] = 4, + ACTIONS(3010), 1, anon_sym_COMMA, - ACTIONS(4054), 1, + ACTIONS(4046), 1, anon_sym_RPAREN, - STATE(2322), 1, + STATE(2346), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111805] = 4, - ACTIONS(1327), 1, + [111883] = 4, + ACTIONS(1323), 1, anon_sym_RBRACE, - ACTIONS(4056), 1, + ACTIONS(4048), 1, anon_sym_COMMA, - STATE(2427), 1, + STATE(2293), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111819] = 4, - ACTIONS(3045), 1, - anon_sym_COMMA, - ACTIONS(4058), 1, - anon_sym_RPAREN, - STATE(2322), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111833] = 4, - ACTIONS(3070), 1, + [111897] = 4, + ACTIONS(3034), 1, anon_sym_RPAREN, - ACTIONS(3072), 1, + ACTIONS(3036), 1, anon_sym_COMMA, - STATE(2255), 1, + STATE(2248), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111847] = 4, - ACTIONS(4060), 1, + [111911] = 4, + ACTIONS(4050), 1, anon_sym_RPAREN, - ACTIONS(4062), 1, + ACTIONS(4052), 1, anon_sym_COMMA, - STATE(2257), 1, + STATE(2250), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111861] = 4, - ACTIONS(3045), 1, - anon_sym_COMMA, - ACTIONS(4064), 1, - anon_sym_RPAREN, - STATE(2322), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111875] = 4, - ACTIONS(3314), 1, - anon_sym_COMMA, - ACTIONS(3316), 1, - anon_sym_RBRACK, - STATE(2259), 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, - [111889] = 4, - ACTIONS(4066), 1, - sym__newline, - ACTIONS(4068), 1, - sym__indent, - STATE(826), 1, - sym__match_block, - 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, - [111903] = 4, - ACTIONS(3204), 1, - anon_sym_COLON, - ACTIONS(4070), 1, + ACTIONS(3560), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [111949] = 4, + ACTIONS(3227), 1, anon_sym_COMMA, + ACTIONS(3229), 1, + anon_sym_RBRACK, STATE(2252), 1, - aux_sym_assert_statement_repeat1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111917] = 4, - ACTIONS(3542), 1, - anon_sym_RBRACE, - ACTIONS(4073), 1, - anon_sym_COMMA, - STATE(2253), 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, - [111931] = 4, - ACTIONS(3262), 1, - anon_sym_COMMA, - ACTIONS(3264), 1, - anon_sym_RBRACK, - STATE(2468), 1, - aux_sym_subscript_repeat1, + ACTIONS(3624), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [111975] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111945] = 4, - ACTIONS(1167), 1, + ACTIONS(2453), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_in, + [111985] = 4, + ACTIONS(1171), 1, anon_sym_RPAREN, - ACTIONS(4076), 1, + ACTIONS(4054), 1, anon_sym_COMMA, - STATE(2419), 1, + STATE(2269), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111959] = 3, - ACTIONS(3968), 1, - anon_sym_EQ, + [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(3964), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [111971] = 4, - ACTIONS(1169), 1, + [112013] = 4, + ACTIONS(1173), 1, anon_sym_RPAREN, - ACTIONS(4078), 1, + ACTIONS(4058), 1, anon_sym_COMMA, - STATE(2419), 1, + STATE(2269), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111985] = 4, - ACTIONS(4080), 1, + [112027] = 4, + ACTIONS(4060), 1, anon_sym_COMMA, - ACTIONS(4082), 1, + ACTIONS(4062), 1, anon_sym_RBRACK, - STATE(2443), 1, + STATE(2348), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111999] = 4, - ACTIONS(4084), 1, + [112041] = 4, + ACTIONS(4064), 1, anon_sym_COMMA, - ACTIONS(4086), 1, + ACTIONS(4066), 1, anon_sym_RBRACK, - STATE(2443), 1, + STATE(2348), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112013] = 4, - ACTIONS(4088), 1, - anon_sym_COMMA, - ACTIONS(4090), 1, - anon_sym_COLON, - STATE(2483), 1, - aux_sym_match_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112027] = 4, - ACTIONS(1025), 1, + [112055] = 4, + ACTIONS(1001), 1, anon_sym_RBRACK, - ACTIONS(4092), 1, + ACTIONS(4068), 1, anon_sym_COMMA, - STATE(2307), 1, + STATE(2298), 1, aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112041] = 4, - ACTIONS(2951), 1, - anon_sym_RPAREN, - ACTIONS(4094), 1, - anon_sym_COMMA, - STATE(2264), 1, - aux_sym__parameters_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112055] = 3, - ACTIONS(4096), 1, - anon_sym_COLON, + [112069] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3964), 2, + ACTIONS(3610), 3, anon_sym_RPAREN, anon_sym_COMMA, - [112067] = 4, - ACTIONS(4098), 1, + anon_sym_as, + [112079] = 4, + ACTIONS(1459), 1, anon_sym_RPAREN, - ACTIONS(4100), 1, + ACTIONS(4070), 1, anon_sym_COMMA, - STATE(2264), 1, - aux_sym__parameters_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112081] = 3, - ACTIONS(3200), 1, - anon_sym_from, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3198), 2, - sym__newline, - anon_sym_SEMI, - [112093] = 3, - ACTIONS(1624), 1, - anon_sym_except, + STATE(2380), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1622), 2, - anon_sym_except_STAR, - anon_sym_finally, - [112105] = 4, - ACTIONS(4103), 1, - anon_sym_COMMA, - ACTIONS(4105), 1, + [112093] = 4, + ACTIONS(1423), 1, anon_sym_COLON, - STATE(2397), 1, + ACTIONS(4072), 1, + anon_sym_COMMA, + STATE(2259), 1, aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112119] = 4, - ACTIONS(4107), 1, + [112107] = 4, + ACTIONS(4074), 1, + anon_sym_RPAREN, + ACTIONS(4076), 1, anon_sym_COMMA, - ACTIONS(4109), 1, - anon_sym_RBRACE, - STATE(2273), 1, - aux_sym_dict_pattern_repeat1, + STATE(2257), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112133] = 2, + [112121] = 4, + ACTIONS(4079), 1, + anon_sym_COMMA, + ACTIONS(4081), 1, + anon_sym_RBRACE, + STATE(2262), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3949), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [112143] = 4, - ACTIONS(1299), 1, - anon_sym_RBRACE, - ACTIONS(4111), 1, + [112135] = 4, + ACTIONS(4083), 1, anon_sym_COMMA, - STATE(2427), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4086), 1, + anon_sym_COLON, + STATE(2259), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112157] = 4, - ACTIONS(2668), 1, + [112149] = 4, + ACTIONS(2634), 1, anon_sym_RPAREN, - ACTIONS(4113), 1, + ACTIONS(4088), 1, anon_sym_COMMA, - STATE(2294), 1, + STATE(2313), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112171] = 4, - ACTIONS(2672), 1, + [112163] = 4, + ACTIONS(2636), 1, anon_sym_RBRACK, - ACTIONS(4115), 1, + ACTIONS(4090), 1, anon_sym_COMMA, - STATE(2333), 1, + STATE(2414), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112185] = 4, - ACTIONS(4117), 1, + [112177] = 4, + ACTIONS(4092), 1, anon_sym_COMMA, - ACTIONS(4119), 1, + ACTIONS(4094), 1, anon_sym_RBRACE, - STATE(2439), 1, + STATE(2326), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112199] = 4, - ACTIONS(2971), 1, + [112191] = 4, + ACTIONS(4096), 1, anon_sym_COMMA, - ACTIONS(2983), 1, + ACTIONS(4098), 1, anon_sym_RBRACE, - STATE(2410), 1, - aux_sym__collection_elements_repeat1, + STATE(2326), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112213] = 4, - ACTIONS(4121), 1, + [112205] = 4, + ACTIONS(2644), 1, + anon_sym_RPAREN, + ACTIONS(4100), 1, anon_sym_COMMA, - ACTIONS(4123), 1, - anon_sym_RBRACE, - STATE(2439), 1, - aux_sym_dict_pattern_repeat1, + STATE(2313), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112227] = 4, - ACTIONS(2716), 1, - sym_identifier, - ACTIONS(4125), 1, - anon_sym_import, - STATE(2674), 1, - sym_dotted_name, + [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, - [112241] = 4, - ACTIONS(2873), 1, - anon_sym_in, - ACTIONS(4127), 1, - anon_sym_COMMA, - STATE(2277), 1, - aux_sym__patterns_repeat1, + [112233] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112255] = 3, - ACTIONS(3661), 1, + ACTIONS(3955), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [112243] = 3, + ACTIONS(3509), 1, aux_sym_format_specifier_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3663), 2, + ACTIONS(3511), 2, anon_sym_LBRACE, anon_sym_RBRACE, - [112267] = 4, - ACTIONS(4130), 1, + [112255] = 4, + ACTIONS(1309), 1, + anon_sym_RBRACE, + ACTIONS(4104), 1, anon_sym_COMMA, - ACTIONS(4132), 1, - anon_sym_in, - STATE(2489), 1, - aux_sym__patterns_repeat1, + STATE(2293), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112281] = 3, - ACTIONS(3621), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3623), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [112293] = 4, - ACTIONS(2638), 1, + [112269] = 4, + ACTIONS(3626), 1, anon_sym_RPAREN, - ACTIONS(4134), 1, + ACTIONS(4106), 1, anon_sym_COMMA, - STATE(2294), 1, - aux_sym_case_clause_repeat1, + STATE(2269), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112283] = 4, + ACTIONS(4109), 1, + anon_sym_SEMI, + ACTIONS(4111), 1, + sym__newline, + STATE(2279), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112297] = 4, + ACTIONS(4113), 1, + sym__newline, + ACTIONS(4115), 1, + sym__indent, + STATE(778), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112307] = 3, - ACTIONS(3625), 1, + [112311] = 3, + ACTIONS(3665), 1, aux_sym_format_specifier_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3627), 2, + ACTIONS(3667), 2, anon_sym_LBRACE, anon_sym_RBRACE, - [112319] = 4, - ACTIONS(3892), 1, - sym_identifier, - STATE(2350), 1, - sym_dotted_name, - STATE(2557), 1, - sym_aliased_import, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112333] = 4, - ACTIONS(3058), 1, - anon_sym_RPAREN, - ACTIONS(3060), 1, + [112323] = 4, + ACTIONS(3010), 1, anon_sym_COMMA, - STATE(2325), 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, - [112347] = 4, - ACTIONS(4136), 1, + [112337] = 4, + ACTIONS(3687), 1, anon_sym_RPAREN, - ACTIONS(4138), 1, + ACTIONS(3960), 1, anon_sym_COMMA, - STATE(2329), 1, - aux_sym_argument_list_repeat1, + STATE(2371), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112361] = 2, + [112351] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3517), 3, + ACTIONS(1653), 3, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [112371] = 3, - ACTIONS(1646), 1, - anon_sym_except, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1644), 2, - anon_sym_except_STAR, - anon_sym_finally, - [112383] = 4, - ACTIONS(1309), 1, - anon_sym_RBRACE, - ACTIONS(4140), 1, + anon_sym_COLON, + anon_sym_EQ, + [112361] = 4, + ACTIONS(3417), 1, anon_sym_COMMA, - STATE(2427), 1, + ACTIONS(3419), 1, + anon_sym_RBRACE, + STATE(2282), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112397] = 3, - ACTIONS(1650), 1, - anon_sym_except, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1648), 2, - anon_sym_except_STAR, - anon_sym_finally, - [112409] = 4, - ACTIONS(4142), 1, - anon_sym_SEMI, - ACTIONS(4144), 1, - sym__newline, - STATE(2297), 1, - aux_sym__simple_statements_repeat1, - ACTIONS(3), 2, + [112375] = 3, + ACTIONS(3639), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [112423] = 4, - ACTIONS(3703), 1, - anon_sym_COLON, - ACTIONS(4146), 1, + ACTIONS(3641), 2, + anon_sym_LBRACE, anon_sym_RBRACE, - STATE(2773), 1, - sym_format_specifier, + [112387] = 3, + ACTIONS(3213), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112437] = 4, - ACTIONS(3045), 1, - anon_sym_COMMA, - ACTIONS(3143), 1, - anon_sym_RPAREN, - STATE(2322), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(3211), 2, + sym__newline, + anon_sym_SEMI, + [112399] = 4, + ACTIONS(623), 1, + sym__newline, + ACTIONS(4117), 1, + anon_sym_SEMI, + STATE(2300), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112451] = 4, - ACTIONS(3324), 1, - anon_sym_COMMA, - ACTIONS(3326), 1, + [112413] = 4, + ACTIONS(2987), 1, anon_sym_RBRACK, - STATE(2335), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112465] = 4, - ACTIONS(3947), 1, - anon_sym_RPAREN, - ACTIONS(4148), 1, + ACTIONS(3131), 1, anon_sym_COMMA, - STATE(2294), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112479] = 4, - ACTIONS(3703), 1, - anon_sym_COLON, - ACTIONS(4151), 1, - anon_sym_RBRACE, - STATE(2635), 1, - sym_format_specifier, + STATE(2397), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112493] = 4, - ACTIONS(3359), 1, - anon_sym_COMMA, - ACTIONS(3361), 1, - anon_sym_RBRACE, - STATE(2298), 1, - aux_sym_dictionary_repeat1, + [112427] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112507] = 4, - ACTIONS(629), 1, + ACTIONS(2446), 3, sym__newline, - ACTIONS(4153), 1, anon_sym_SEMI, - STATE(2321), 1, - aux_sym__simple_statements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112521] = 4, - ACTIONS(1335), 1, + anon_sym_in, + [112437] = 4, + ACTIONS(1333), 1, anon_sym_RBRACE, - ACTIONS(4155), 1, + ACTIONS(4119), 1, anon_sym_COMMA, - STATE(2427), 1, + STATE(2293), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112535] = 2, + [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, - ACTIONS(1696), 3, - anon_sym_RPAREN, + [112465] = 4, + ACTIONS(3340), 1, anon_sym_COMMA, - anon_sym_EQ, - [112545] = 4, - ACTIONS(4066), 1, - sym__newline, - ACTIONS(4068), 1, - sym__indent, - STATE(784), 1, - sym__match_block, + ACTIONS(3342), 1, + anon_sym_RBRACE, + STATE(2268), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112559] = 4, - ACTIONS(3082), 1, + [112479] = 4, + ACTIONS(3050), 1, anon_sym_RPAREN, - ACTIONS(3084), 1, + ACTIONS(3052), 1, anon_sym_COMMA, - STATE(2309), 1, + STATE(2290), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112573] = 4, - ACTIONS(4157), 1, + [112493] = 4, + ACTIONS(4125), 1, anon_sym_RPAREN, - ACTIONS(4159), 1, + ACTIONS(4127), 1, anon_sym_COMMA, - STATE(2310), 1, + STATE(2292), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112587] = 4, - ACTIONS(4066), 1, - sym__newline, - ACTIONS(4068), 1, - sym__indent, - STATE(804), 1, - sym__match_block, + [112507] = 4, + ACTIONS(2987), 1, + anon_sym_RPAREN, + ACTIONS(3010), 1, + anon_sym_COMMA, + STATE(2346), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112601] = 4, - ACTIONS(3300), 1, + [112521] = 4, + ACTIONS(3217), 1, anon_sym_COMMA, - ACTIONS(3302), 1, + ACTIONS(3221), 1, anon_sym_RBRACK, - STATE(2313), 1, + STATE(2295), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112615] = 4, - ACTIONS(2951), 1, - anon_sym_COLON, - ACTIONS(4161), 1, + [112535] = 4, + ACTIONS(4123), 1, + anon_sym_RPAREN, + ACTIONS(4129), 1, anon_sym_COMMA, - STATE(2364), 1, - aux_sym__parameters_repeat1, + STATE(2362), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112629] = 3, - ACTIONS(4165), 1, - anon_sym_in, + [112549] = 4, + ACTIONS(1181), 1, + anon_sym_RPAREN, + ACTIONS(4131), 1, + anon_sym_COMMA, + STATE(2269), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4163), 2, - sym__newline, - anon_sym_SEMI, - [112641] = 4, - ACTIONS(3718), 1, + [112563] = 4, + ACTIONS(1287), 1, anon_sym_RBRACK, - ACTIONS(4167), 1, + ACTIONS(4133), 1, anon_sym_COMMA, - STATE(2307), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112655] = 4, - ACTIONS(4170), 1, - sym__newline, - ACTIONS(4172), 1, - sym__indent, - STATE(714), 1, - sym__match_block, + STATE(2315), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112669] = 4, + [112577] = 4, ACTIONS(1183), 1, anon_sym_RPAREN, - ACTIONS(4174), 1, + ACTIONS(4135), 1, anon_sym_COMMA, - STATE(2419), 1, + STATE(2269), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112683] = 4, - ACTIONS(1185), 1, - anon_sym_RPAREN, - ACTIONS(4176), 1, + [112591] = 4, + ACTIONS(4137), 1, anon_sym_COMMA, - STATE(2419), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112697] = 4, - ACTIONS(3426), 1, - sym_identifier, - STATE(2142), 1, - sym_dotted_name, - STATE(2237), 1, - sym_aliased_import, + ACTIONS(4140), 1, + anon_sym_RBRACE, + STATE(2293), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112711] = 4, - ACTIONS(4178), 1, + [112605] = 4, + ACTIONS(4142), 1, anon_sym_COMMA, - ACTIONS(4180), 1, + ACTIONS(4144), 1, anon_sym_RBRACK, - STATE(2443), 1, + STATE(2348), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112725] = 4, - ACTIONS(4182), 1, + [112619] = 4, + ACTIONS(4146), 1, anon_sym_COMMA, - ACTIONS(4184), 1, + ACTIONS(4148), 1, anon_sym_RBRACK, - STATE(2443), 1, + STATE(2348), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112739] = 4, - ACTIONS(3414), 1, + [112633] = 4, + ACTIONS(2947), 1, + anon_sym_COLON, + ACTIONS(4150), 1, anon_sym_COMMA, - ACTIONS(3416), 1, - anon_sym_RBRACE, - STATE(2288), 1, - aux_sym_dictionary_repeat1, + STATE(2310), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112753] = 4, - ACTIONS(991), 1, + [112647] = 4, + ACTIONS(1017), 1, anon_sym_RBRACK, - ACTIONS(4186), 1, + ACTIONS(4152), 1, anon_sym_COMMA, - STATE(2307), 1, + STATE(2298), 1, aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112767] = 4, - ACTIONS(1001), 1, + [112661] = 4, + ACTIONS(3787), 1, anon_sym_RBRACK, - ACTIONS(4188), 1, + ACTIONS(4154), 1, anon_sym_COMMA, - STATE(2307), 1, + STATE(2298), 1, aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112781] = 4, - ACTIONS(4190), 1, - anon_sym_COMMA, - ACTIONS(4192), 1, - anon_sym_COLON, - STATE(2483), 1, - aux_sym_match_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112795] = 2, - ACTIONS(3), 2, + [112675] = 3, + ACTIONS(3501), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3517), 3, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(3503), 2, + anon_sym_LBRACE, anon_sym_RBRACE, - [112805] = 4, - ACTIONS(4130), 1, - anon_sym_COMMA, - ACTIONS(4194), 1, - anon_sym_in, - STATE(2489), 1, - aux_sym__patterns_repeat1, + [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, - [112819] = 4, - ACTIONS(3695), 1, + [112701] = 4, + ACTIONS(3681), 1, anon_sym_DOT, - ACTIONS(3699), 1, + ACTIONS(3685), 1, anon_sym_PIPE, - ACTIONS(4196), 1, + ACTIONS(4162), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112833] = 4, - ACTIONS(4198), 1, - anon_sym_SEMI, - ACTIONS(4201), 1, - sym__newline, - STATE(2321), 1, - aux_sym__simple_statements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112847] = 4, - ACTIONS(1263), 1, - anon_sym_RPAREN, - ACTIONS(4203), 1, - anon_sym_COMMA, - STATE(2405), 1, - aux_sym__collection_elements_repeat1, + [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, - [112861] = 4, - ACTIONS(4205), 1, + [112729] = 4, + ACTIONS(4164), 1, anon_sym_COMMA, - ACTIONS(4207), 1, + ACTIONS(4166), 1, anon_sym_RBRACE, - STATE(2328), 1, + STATE(2308), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112875] = 4, - ACTIONS(2648), 1, + [112743] = 4, + ACTIONS(2654), 1, anon_sym_RPAREN, - ACTIONS(4209), 1, + ACTIONS(4168), 1, anon_sym_COMMA, - STATE(2294), 1, + STATE(2313), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112889] = 4, - ACTIONS(1175), 1, - anon_sym_RPAREN, - ACTIONS(4211), 1, - anon_sym_COMMA, - STATE(2419), 1, - aux_sym_argument_list_repeat1, + [112757] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112903] = 4, - ACTIONS(2650), 1, + ACTIONS(3610), 3, + anon_sym_COMMA, + anon_sym_as, anon_sym_RBRACK, - ACTIONS(4213), 1, + [112767] = 4, + ACTIONS(2656), 1, + anon_sym_RBRACK, + ACTIONS(4170), 1, anon_sym_COMMA, - STATE(2333), 1, + STATE(2414), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112917] = 4, - ACTIONS(2002), 1, - anon_sym_RPAREN, - ACTIONS(4215), 1, - anon_sym_COMMA, - STATE(2376), 1, - aux_sym__patterns_repeat1, + [112781] = 3, + ACTIONS(4174), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112931] = 4, - ACTIONS(4217), 1, + ACTIONS(4172), 2, anon_sym_COMMA, - ACTIONS(4219), 1, anon_sym_RBRACE, - STATE(2439), 1, + [112793] = 4, + ACTIONS(4176), 1, + anon_sym_COMMA, + ACTIONS(4178), 1, + anon_sym_RBRACE, + STATE(2326), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112945] = 4, - ACTIONS(1177), 1, - anon_sym_RPAREN, - ACTIONS(4221), 1, + [112807] = 4, + ACTIONS(4180), 1, anon_sym_COMMA, - STATE(2419), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4182), 1, + anon_sym_RBRACE, + STATE(2326), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112959] = 4, - ACTIONS(4223), 1, + [112821] = 4, + ACTIONS(4074), 1, + anon_sym_COLON, + ACTIONS(4184), 1, anon_sym_COMMA, - ACTIONS(4225), 1, - anon_sym_RBRACE, - STATE(2439), 1, - aux_sym_dict_pattern_repeat1, + STATE(2310), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112973] = 3, - ACTIONS(3902), 1, + [112835] = 3, + ACTIONS(3914), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3947), 2, + ACTIONS(3883), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [112985] = 2, + [112847] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3949), 3, + ACTIONS(3993), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - [112995] = 4, - ACTIONS(3947), 1, - anon_sym_RBRACK, - ACTIONS(4227), 1, + [112857] = 4, + ACTIONS(3883), 1, + anon_sym_RPAREN, + ACTIONS(4187), 1, anon_sym_COMMA, - STATE(2333), 1, + STATE(2313), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113009] = 4, - ACTIONS(4230), 1, + [112871] = 4, + ACTIONS(2662), 1, + anon_sym_RPAREN, + ACTIONS(4190), 1, anon_sym_COMMA, - ACTIONS(4232), 1, - anon_sym_RBRACK, - STATE(2443), 1, - aux_sym_subscript_repeat1, + STATE(2313), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113023] = 4, - ACTIONS(4234), 1, - anon_sym_COMMA, - ACTIONS(4236), 1, + [112885] = 4, + ACTIONS(3209), 1, anon_sym_RBRACK, - STATE(2443), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113037] = 4, - ACTIONS(2660), 1, - anon_sym_RPAREN, - ACTIONS(4238), 1, + ACTIONS(4192), 1, anon_sym_COMMA, - STATE(2294), 1, - aux_sym_case_clause_repeat1, + STATE(2315), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113051] = 4, - ACTIONS(2610), 1, - anon_sym_RPAREN, - ACTIONS(4240), 1, + [112899] = 4, + ACTIONS(3010), 1, anon_sym_COMMA, - STATE(2294), 1, - aux_sym_case_clause_repeat1, + ACTIONS(3139), 1, + anon_sym_RPAREN, + STATE(2346), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113065] = 4, - ACTIONS(3695), 1, - anon_sym_DOT, - ACTIONS(3699), 1, - anon_sym_PIPE, - ACTIONS(4242), 1, - anon_sym_COLON, + [112913] = 4, + ACTIONS(4195), 1, + sym__newline, + ACTIONS(4197), 1, + sym__indent, + STATE(805), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113079] = 4, - ACTIONS(3703), 1, - anon_sym_COLON, - ACTIONS(4244), 1, - anon_sym_RBRACE, - STATE(2774), 1, - sym_format_specifier, + [112927] = 4, + ACTIONS(3010), 1, + anon_sym_COMMA, + ACTIONS(4199), 1, + anon_sym_RPAREN, + STATE(2346), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113093] = 3, - ACTIONS(3509), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3511), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [113105] = 4, - ACTIONS(4246), 1, + [112941] = 4, + ACTIONS(4201), 1, anon_sym_SEMI, - ACTIONS(4248), 1, + ACTIONS(4203), 1, sym__newline, - STATE(2347), 1, + STATE(2327), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113119] = 3, - ACTIONS(1683), 1, - anon_sym_except, + [112955] = 4, + ACTIONS(4205), 1, + anon_sym_RPAREN, + ACTIONS(4207), 1, + anon_sym_COMMA, + STATE(2425), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 2, - anon_sym_except_STAR, - anon_sym_finally, - [113131] = 4, - ACTIONS(3045), 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, + [112981] = 4, + ACTIONS(3010), 1, anon_sym_COMMA, - ACTIONS(3090), 1, + ACTIONS(3062), 1, anon_sym_RPAREN, - STATE(2322), 1, + STATE(2346), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113145] = 4, - ACTIONS(4250), 1, - anon_sym_SEMI, - ACTIONS(4252), 1, - sym__newline, - STATE(2486), 1, - aux_sym__simple_statements_repeat1, + [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(3433), 1, + anon_sym_RBRACE, + STATE(2330), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113159] = 4, - ACTIONS(1291), 1, - anon_sym_COLON, - ACTIONS(4254), 1, + [113021] = 4, + ACTIONS(3010), 1, anon_sym_COMMA, - STATE(2252), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(4211), 1, + anon_sym_RPAREN, + STATE(2346), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113173] = 4, - ACTIONS(3372), 1, + [113035] = 4, + ACTIONS(4213), 1, anon_sym_COMMA, - ACTIONS(3374), 1, + ACTIONS(4216), 1, anon_sym_RBRACE, - STATE(2349), 1, - aux_sym_dictionary_repeat1, + STATE(2326), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113187] = 4, + [113049] = 4, ACTIONS(625), 1, sym__newline, - ACTIONS(4256), 1, + ACTIONS(4218), 1, anon_sym_SEMI, - STATE(2321), 1, + STATE(2300), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113201] = 4, - ACTIONS(1027), 1, - anon_sym_RBRACK, - ACTIONS(4258), 1, - anon_sym_COMMA, - STATE(2307), 1, - aux_sym_type_parameter_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, - [113215] = 4, - ACTIONS(1331), 1, + [113077] = 4, + ACTIONS(3711), 1, + anon_sym_COLON, + ACTIONS(4220), 1, anon_sym_RBRACE, - ACTIONS(4260), 1, + STATE(2651), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113091] = 4, + ACTIONS(1327), 1, + anon_sym_RBRACE, + ACTIONS(4222), 1, anon_sym_COMMA, - STATE(2427), 1, + STATE(2293), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113229] = 3, - ACTIONS(4028), 1, - anon_sym_as, + [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, - ACTIONS(3918), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [113241] = 4, - ACTIONS(3092), 1, + [113119] = 4, + ACTIONS(3064), 1, anon_sym_RPAREN, - ACTIONS(3094), 1, + ACTIONS(3066), 1, anon_sym_COMMA, - STATE(2355), 1, + STATE(2337), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113255] = 4, - ACTIONS(4262), 1, + [113133] = 4, + ACTIONS(4228), 1, anon_sym_RPAREN, - ACTIONS(4264), 1, + ACTIONS(4230), 1, anon_sym_COMMA, - STATE(2357), 1, + STATE(2338), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113269] = 4, - ACTIONS(3256), 1, + [113147] = 4, + ACTIONS(3468), 1, + anon_sym_RBRACE, + ACTIONS(4232), 1, + anon_sym_COMMA, + STATE(2334), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113161] = 4, + ACTIONS(3253), 1, anon_sym_COMMA, - ACTIONS(3258), 1, + ACTIONS(3255), 1, anon_sym_RBRACK, - STATE(2359), 1, + STATE(2341), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113283] = 4, - ACTIONS(3928), 1, + [113175] = 4, + ACTIONS(1161), 1, anon_sym_RPAREN, - ACTIONS(4266), 1, + ACTIONS(4235), 1, anon_sym_COMMA, - STATE(2354), 1, - aux_sym__import_list_repeat1, + STATE(2269), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113297] = 4, - ACTIONS(1199), 1, + [113189] = 4, + ACTIONS(1239), 1, anon_sym_RPAREN, - ACTIONS(4269), 1, + ACTIONS(4237), 1, anon_sym_COMMA, - STATE(2419), 1, + STATE(2269), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113311] = 4, - ACTIONS(2658), 1, - anon_sym_RBRACK, - ACTIONS(4271), 1, + [113203] = 4, + ACTIONS(1193), 1, + anon_sym_RPAREN, + ACTIONS(4239), 1, anon_sym_COMMA, - STATE(2333), 1, - aux_sym_case_clause_repeat1, + STATE(2269), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113325] = 4, - ACTIONS(1201), 1, - anon_sym_RPAREN, - ACTIONS(4273), 1, - anon_sym_COMMA, - STATE(2419), 1, - aux_sym_argument_list_repeat1, + [113217] = 3, + ACTIONS(4241), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113339] = 4, - ACTIONS(4275), 1, + ACTIONS(3987), 2, + anon_sym_COMMA, + anon_sym_COLON, + [113229] = 4, + ACTIONS(4243), 1, anon_sym_COMMA, - ACTIONS(4277), 1, + ACTIONS(4245), 1, anon_sym_RBRACK, - STATE(2443), 1, + STATE(2348), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113353] = 4, - ACTIONS(4279), 1, + [113243] = 4, + ACTIONS(4247), 1, anon_sym_COMMA, - ACTIONS(4281), 1, + ACTIONS(4249), 1, anon_sym_RBRACK, - STATE(2443), 1, + STATE(2348), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113367] = 4, - ACTIONS(4283), 1, + [113257] = 4, + ACTIONS(1163), 1, + anon_sym_RPAREN, + ACTIONS(4251), 1, anon_sym_COMMA, - ACTIONS(4285), 1, - anon_sym_RBRACE, - STATE(2439), 1, - aux_sym_dict_pattern_repeat1, + STATE(2269), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113381] = 2, + [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(4287), 3, - sym__newline, - anon_sym_SEMI, + [113285] = 4, + ACTIONS(4253), 1, anon_sym_COMMA, - [113391] = 2, + ACTIONS(4256), 1, + anon_sym_COLON, + STATE(2344), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2465), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_in, - [113401] = 3, - ACTIONS(1607), 1, - anon_sym_except, + [113299] = 4, + ACTIONS(3468), 1, + anon_sym_RPAREN, + ACTIONS(4258), 1, + anon_sym_COMMA, + STATE(2345), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 2, - anon_sym_except_STAR, - anon_sym_finally, - [113413] = 4, - ACTIONS(4098), 1, + [113313] = 4, + ACTIONS(1263), 1, + anon_sym_RPAREN, + ACTIONS(4261), 1, + anon_sym_COMMA, + STATE(2345), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113327] = 4, + ACTIONS(4205), 1, anon_sym_COLON, - ACTIONS(4289), 1, + ACTIONS(4263), 1, anon_sym_COMMA, - STATE(2364), 1, + STATE(2296), 1, aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113427] = 4, - ACTIONS(4292), 1, - anon_sym_SEMI, - ACTIONS(4294), 1, - sym__newline, - STATE(2370), 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, - [113441] = 4, - ACTIONS(4296), 1, + [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, + [113369] = 3, + ACTIONS(4241), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3987), 2, + anon_sym_COMMA, + 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, + [113395] = 4, + ACTIONS(3008), 1, anon_sym_RPAREN, - ACTIONS(4298), 1, + ACTIONS(3010), 1, anon_sym_COMMA, - STATE(2390), 1, - aux_sym_with_clause_repeat1, + STATE(2346), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113455] = 4, - ACTIONS(4300), 1, + [113409] = 4, + ACTIONS(2674), 1, + anon_sym_RPAREN, + ACTIONS(4276), 1, anon_sym_COMMA, - ACTIONS(4302), 1, - anon_sym_RBRACE, - STATE(2439), 1, - aux_sym_dict_pattern_repeat1, + STATE(2313), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113469] = 4, - ACTIONS(3045), 1, + [113423] = 4, + ACTIONS(4278), 1, anon_sym_COMMA, - ACTIONS(3100), 1, - anon_sym_RPAREN, - STATE(2322), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4280), 1, + anon_sym_RBRACK, + STATE(2348), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113483] = 4, - ACTIONS(3386), 1, + [113437] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3610), 3, anon_sym_COMMA, - ACTIONS(3388), 1, + anon_sym_as, anon_sym_RBRACE, - STATE(2372), 1, + [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, - [113497] = 4, - ACTIONS(631), 1, - sym__newline, - ACTIONS(4304), 1, - anon_sym_SEMI, - STATE(2321), 1, - aux_sym__simple_statements_repeat1, - ACTIONS(3), 2, + [113461] = 3, + ACTIONS(4284), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [113511] = 2, + 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, - ACTIONS(4011), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [113521] = 4, - ACTIONS(1341), 1, + [113487] = 4, + ACTIONS(1311), 1, anon_sym_RBRACE, - ACTIONS(4306), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - STATE(2427), 1, + STATE(2293), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113535] = 4, - ACTIONS(3020), 1, - anon_sym_RPAREN, - ACTIONS(3045), 1, + [113501] = 4, + ACTIONS(4290), 1, anon_sym_COMMA, - STATE(2322), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4292), 1, + anon_sym_RBRACE, + STATE(2452), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113549] = 4, - ACTIONS(4308), 1, + [113515] = 4, + ACTIONS(3085), 1, anon_sym_RPAREN, - ACTIONS(4310), 1, + ACTIONS(3087), 1, anon_sym_COMMA, - STATE(2379), 1, + STATE(2364), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113563] = 4, - ACTIONS(3294), 1, + [113529] = 4, + ACTIONS(2016), 1, + anon_sym_RPAREN, + ACTIONS(4294), 1, anon_sym_COMMA, - ACTIONS(3296), 1, + STATE(2429), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113543] = 4, + ACTIONS(3260), 1, + anon_sym_COMMA, + ACTIONS(3262), 1, anon_sym_RBRACK, - STATE(2381), 1, + STATE(2369), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113577] = 4, - ACTIONS(2873), 1, + [113557] = 4, + ACTIONS(1203), 1, anon_sym_RPAREN, - ACTIONS(4312), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - STATE(2376), 1, - aux_sym__patterns_repeat1, + STATE(2269), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113591] = 4, - ACTIONS(3043), 1, + [113571] = 4, + ACTIONS(2688), 1, anon_sym_RPAREN, - ACTIONS(3045), 1, + ACTIONS(4298), 1, anon_sym_COMMA, - STATE(2322), 1, - aux_sym__collection_elements_repeat1, + STATE(2313), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113605] = 4, - ACTIONS(1213), 1, + [113585] = 4, + ACTIONS(1205), 1, anon_sym_RPAREN, - ACTIONS(4315), 1, + ACTIONS(4300), 1, anon_sym_COMMA, - STATE(2419), 1, + STATE(2269), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113619] = 4, - ACTIONS(1215), 1, + [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, + [113613] = 4, + ACTIONS(4304), 1, anon_sym_RPAREN, - ACTIONS(4317), 1, + ACTIONS(4306), 1, anon_sym_COMMA, - STATE(2419), 1, + STATE(2382), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113633] = 4, - ACTIONS(4319), 1, + [113627] = 4, + ACTIONS(4308), 1, anon_sym_COMMA, - ACTIONS(4321), 1, + ACTIONS(4310), 1, anon_sym_RBRACK, - STATE(2443), 1, + STATE(2348), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113647] = 4, - ACTIONS(4323), 1, - anon_sym_COMMA, - ACTIONS(4325), 1, + [113641] = 4, + ACTIONS(2652), 1, anon_sym_RBRACK, - STATE(2443), 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, - [113661] = 3, - ACTIONS(3532), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [113655] = 4, + ACTIONS(3964), 1, + anon_sym_RPAREN, + ACTIONS(4314), 1, + anon_sym_COMMA, + STATE(2460), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3534), 2, - anon_sym_LBRACE, + [113669] = 4, + ACTIONS(2975), 1, + anon_sym_COMMA, + ACTIONS(2987), 1, anon_sym_RBRACE, - [113673] = 3, - ACTIONS(3548), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + STATE(2434), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3550), 2, - anon_sym_LBRACE, + [113683] = 4, + ACTIONS(4316), 1, + anon_sym_COMMA, + ACTIONS(4318), 1, anon_sym_RBRACE, - [113685] = 3, - ACTIONS(3558), 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(3560), 2, - anon_sym_LBRACE, + [113697] = 4, + ACTIONS(4320), 1, + anon_sym_COMMA, + ACTIONS(4322), 1, anon_sym_RBRACE, - [113697] = 3, - ACTIONS(3898), 1, - anon_sym_as, + STATE(2326), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3947), 2, + [113711] = 4, + ACTIONS(3964), 1, anon_sym_RPAREN, + ACTIONS(4324), 1, anon_sym_COMMA, - [113709] = 2, + STATE(2460), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 3, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [113719] = 4, - ACTIONS(3542), 1, - anon_sym_RBRACK, - ACTIONS(4327), 1, + [113725] = 4, + ACTIONS(1151), 1, + anon_sym_RPAREN, + ACTIONS(4326), 1, anon_sym_COMMA, - STATE(2387), 1, - aux_sym__collection_elements_repeat1, + STATE(2269), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113733] = 4, - ACTIONS(4170), 1, - sym__newline, - ACTIONS(4172), 1, - sym__indent, - STATE(743), 1, - sym__match_block, + [113739] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113747] = 4, - ACTIONS(3045), 1, + ACTIONS(3993), 3, anon_sym_COMMA, - ACTIONS(3110), 1, + anon_sym_as, + anon_sym_RBRACE, + [113749] = 4, + ACTIONS(3010), 1, + anon_sym_COMMA, + ACTIONS(3093), 1, anon_sym_RPAREN, - STATE(2322), 1, + STATE(2346), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113761] = 4, - ACTIONS(1435), 1, - anon_sym_RPAREN, - ACTIONS(4330), 1, - anon_sym_COMMA, - STATE(2487), 1, - aux_sym_with_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113775] = 4, - ACTIONS(3396), 1, + [113763] = 4, + ACTIONS(3435), 1, anon_sym_COMMA, - ACTIONS(3398), 1, + ACTIONS(3437), 1, anon_sym_RBRACE, - STATE(2393), 1, + STATE(2381), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113789] = 4, - ACTIONS(3505), 1, - anon_sym_PIPE, - ACTIONS(4332), 1, - anon_sym_COLON, - STATE(1957), 1, - aux_sym_union_pattern_repeat1, + [113777] = 4, + ACTIONS(4086), 1, + anon_sym_RPAREN, + ACTIONS(4328), 1, + anon_sym_COMMA, + STATE(2380), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113803] = 4, - ACTIONS(1311), 1, + [113791] = 4, + ACTIONS(1335), 1, anon_sym_RBRACE, - ACTIONS(4334), 1, + ACTIONS(4331), 1, anon_sym_COMMA, - STATE(2427), 1, + STATE(2293), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113817] = 4, - ACTIONS(4336), 1, + [113805] = 4, + ACTIONS(1153), 1, + anon_sym_RPAREN, + ACTIONS(4333), 1, anon_sym_COMMA, - ACTIONS(4338), 1, - anon_sym_RBRACE, - STATE(2360), 1, - aux_sym_dict_pattern_repeat1, + STATE(2269), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113831] = 4, - ACTIONS(3114), 1, + [113819] = 4, + ACTIONS(3095), 1, anon_sym_RPAREN, - ACTIONS(3116), 1, + ACTIONS(3097), 1, anon_sym_COMMA, - STATE(2399), 1, + STATE(2388), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113845] = 4, - ACTIONS(4340), 1, + [113833] = 4, + ACTIONS(4335), 1, anon_sym_RPAREN, - ACTIONS(4342), 1, + ACTIONS(4337), 1, anon_sym_COMMA, - STATE(2400), 1, + STATE(2390), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113859] = 4, - ACTIONS(1451), 1, - anon_sym_COLON, - ACTIONS(4344), 1, + [113847] = 4, + ACTIONS(4339), 1, anon_sym_COMMA, - STATE(2466), 1, - aux_sym_with_clause_repeat1, + ACTIONS(4341), 1, + anon_sym_RBRACK, + STATE(2348), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113873] = 4, - ACTIONS(3223), 1, + [113861] = 4, + ACTIONS(3268), 1, anon_sym_COMMA, - ACTIONS(3227), 1, + ACTIONS(3270), 1, anon_sym_RBRACK, - STATE(2402), 1, + STATE(2393), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113887] = 4, - ACTIONS(1225), 1, + [113875] = 4, + ACTIONS(4343), 1, + anon_sym_COMMA, + ACTIONS(4345), 1, + anon_sym_RBRACK, + STATE(2348), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113889] = 4, + ACTIONS(1215), 1, anon_sym_RPAREN, - ACTIONS(4346), 1, + ACTIONS(4347), 1, anon_sym_COMMA, - STATE(2419), 1, + STATE(2269), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113901] = 4, - ACTIONS(1227), 1, + [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, + [113917] = 4, + ACTIONS(1217), 1, anon_sym_RPAREN, - ACTIONS(4348), 1, + ACTIONS(4351), 1, anon_sym_COMMA, - STATE(2419), 1, + STATE(2269), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113915] = 4, - ACTIONS(4350), 1, + [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, + [113945] = 4, + ACTIONS(4355), 1, anon_sym_COMMA, - ACTIONS(4352), 1, + ACTIONS(4357), 1, anon_sym_RBRACK, - STATE(2443), 1, + STATE(2348), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113929] = 4, - ACTIONS(4354), 1, + [113959] = 4, + ACTIONS(4359), 1, anon_sym_COMMA, - ACTIONS(4356), 1, + ACTIONS(4361), 1, anon_sym_RBRACK, - STATE(2443), 1, + STATE(2348), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113943] = 4, - ACTIONS(1219), 1, - anon_sym_RPAREN, - ACTIONS(4358), 1, + [113973] = 3, + ACTIONS(3918), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3883), 2, anon_sym_COMMA, - STATE(2419), 1, - aux_sym_argument_list_repeat1, + anon_sym_RBRACK, + [113985] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113957] = 4, - ACTIONS(4360), 1, - anon_sym_RPAREN, - ACTIONS(4362), 1, + ACTIONS(3993), 3, anon_sym_COMMA, - STATE(2327), 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, - [113971] = 4, - ACTIONS(3542), 1, - anon_sym_RPAREN, - ACTIONS(4364), 1, + [114009] = 4, + ACTIONS(1263), 1, + anon_sym_RBRACK, + ACTIONS(4363), 1, anon_sym_COMMA, - STATE(2405), 1, + STATE(2471), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113985] = 4, - ACTIONS(4130), 1, - anon_sym_COMMA, - ACTIONS(4367), 1, - anon_sym_in, - STATE(2489), 1, - aux_sym__patterns_repeat1, + [114023] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113999] = 4, - ACTIONS(3045), 1, - anon_sym_COMMA, - ACTIONS(3118), 1, + ACTIONS(2878), 3, anon_sym_RPAREN, - STATE(2322), 1, - aux_sym__collection_elements_repeat1, + anon_sym_COMMA, + anon_sym_EQ, + [114033] = 4, + ACTIONS(2016), 1, + anon_sym_RBRACK, + ACTIONS(4365), 1, + anon_sym_COMMA, + STATE(2463), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114013] = 4, - ACTIONS(4130), 1, + [114047] = 4, + ACTIONS(4367), 1, anon_sym_COMMA, ACTIONS(4369), 1, anon_sym_in, - STATE(2489), 1, + STATE(2465), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114027] = 4, - ACTIONS(619), 1, - sym__newline, - ACTIONS(4371), 1, - anon_sym_SEMI, - STATE(2321), 1, - aux_sym__simple_statements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114041] = 4, - ACTIONS(1263), 1, - anon_sym_RBRACE, - ACTIONS(4373), 1, + [114061] = 4, + ACTIONS(3010), 1, anon_sym_COMMA, - STATE(2253), 1, + ACTIONS(3114), 1, + anon_sym_RPAREN, + STATE(2346), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114055] = 2, + [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, - ACTIONS(3517), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [114065] = 4, - ACTIONS(3045), 1, + [114089] = 4, + ACTIONS(3354), 1, anon_sym_COMMA, - ACTIONS(3124), 1, - anon_sym_RPAREN, - STATE(2322), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(3356), 1, + anon_sym_RBRACE, + STATE(2407), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114079] = 4, - ACTIONS(3404), 1, + [114103] = 4, + ACTIONS(3116), 1, + anon_sym_RPAREN, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(3406), 1, - anon_sym_RBRACE, - STATE(2415), 1, - aux_sym_dictionary_repeat1, + STATE(2336), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114093] = 4, - ACTIONS(3954), 1, + [114117] = 4, + ACTIONS(4373), 1, anon_sym_RPAREN, ACTIONS(4375), 1, anon_sym_COMMA, - STATE(2354), 1, - aux_sym__import_list_repeat1, + STATE(2342), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114107] = 4, - ACTIONS(1323), 1, - anon_sym_RBRACE, + [114131] = 4, ACTIONS(4377), 1, - anon_sym_COMMA, - STATE(2427), 1, - aux_sym_dictionary_repeat1, + anon_sym_SEMI, + ACTIONS(4379), 1, + sym__newline, + STATE(2418), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114121] = 4, - ACTIONS(4379), 1, - anon_sym_COMMA, - ACTIONS(4381), 1, + [114145] = 4, + ACTIONS(1319), 1, anon_sym_RBRACE, - STATE(2446), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(4381), 1, + anon_sym_COMMA, + STATE(2293), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114135] = 4, - ACTIONS(3126), 1, + [114159] = 4, + ACTIONS(3120), 1, anon_sym_RPAREN, - ACTIONS(3128), 1, + ACTIONS(3122), 1, anon_sym_COMMA, - STATE(2422), 1, + STATE(2412), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114149] = 4, + [114173] = 4, ACTIONS(4383), 1, anon_sym_RPAREN, ACTIONS(4385), 1, anon_sym_COMMA, - STATE(2424), 1, + STATE(2413), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114163] = 4, - ACTIONS(3479), 1, - anon_sym_RPAREN, - ACTIONS(4387), 1, + [114187] = 4, + ACTIONS(4367), 1, anon_sym_COMMA, - STATE(2419), 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, - [114177] = 4, - ACTIONS(3231), 1, + [114201] = 4, + ACTIONS(3286), 1, anon_sym_COMMA, - ACTIONS(3233), 1, + ACTIONS(3288), 1, anon_sym_RBRACK, - STATE(2426), 1, + STATE(2416), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114191] = 4, - ACTIONS(3840), 1, - anon_sym_LPAREN, - ACTIONS(4390), 1, - anon_sym_COLON, - STATE(2623), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114205] = 4, - ACTIONS(1235), 1, + [114215] = 4, + ACTIONS(1227), 1, anon_sym_RPAREN, - ACTIONS(4392), 1, + ACTIONS(4389), 1, anon_sym_COMMA, - STATE(2419), 1, + STATE(2269), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114219] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2461), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_in, [114229] = 4, - ACTIONS(1237), 1, + ACTIONS(1229), 1, anon_sym_RPAREN, - ACTIONS(4394), 1, + ACTIONS(4391), 1, anon_sym_COMMA, - STATE(2419), 1, + STATE(2269), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, [114243] = 4, + ACTIONS(3883), 1, + anon_sym_RBRACK, + ACTIONS(4393), 1, + anon_sym_COMMA, + STATE(2414), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114257] = 4, ACTIONS(4396), 1, anon_sym_COMMA, ACTIONS(4398), 1, anon_sym_RBRACK, - STATE(2443), 1, + STATE(2348), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114257] = 4, + [114271] = 4, ACTIONS(4400), 1, anon_sym_COMMA, ACTIONS(4402), 1, anon_sym_RBRACK, - STATE(2443), 1, + STATE(2348), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114271] = 4, - ACTIONS(4404), 1, + [114285] = 4, + ACTIONS(3298), 1, anon_sym_COMMA, - ACTIONS(4407), 1, - anon_sym_RBRACE, - STATE(2427), 1, - aux_sym_dictionary_repeat1, + ACTIONS(3300), 1, + anon_sym_RBRACK, + STATE(2354), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114285] = 4, - ACTIONS(3954), 1, - anon_sym_RPAREN, - ACTIONS(4409), 1, - anon_sym_COMMA, - STATE(2354), 1, - aux_sym__import_list_repeat1, + [114299] = 4, + ACTIONS(609), 1, + sym__newline, + ACTIONS(4404), 1, + anon_sym_SEMI, + STATE(2300), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114299] = 3, - ACTIONS(4413), 1, - anon_sym_as, + [114313] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4411), 2, + ACTIONS(1653), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [114311] = 4, - ACTIONS(3244), 1, + anon_sym_EQ, + [114323] = 4, + ACTIONS(4113), 1, + sym__newline, + ACTIONS(4115), 1, + sym__indent, + STATE(735), 1, + sym__match_block, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114337] = 4, + ACTIONS(3290), 1, anon_sym_COMMA, - ACTIONS(3246), 1, + ACTIONS(3292), 1, anon_sym_RBRACK, - STATE(2432), 1, + STATE(2423), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114325] = 4, - ACTIONS(4415), 1, + [114351] = 4, + ACTIONS(4406), 1, anon_sym_COMMA, - ACTIONS(4417), 1, + ACTIONS(4408), 1, anon_sym_RBRACK, - STATE(2443), 1, + STATE(2348), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114339] = 4, - ACTIONS(4419), 1, + [114365] = 4, + ACTIONS(4410), 1, anon_sym_COMMA, - ACTIONS(4421), 1, + ACTIONS(4412), 1, anon_sym_RBRACK, - STATE(2443), 1, + STATE(2348), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114353] = 4, - ACTIONS(4423), 1, - anon_sym_SEMI, - ACTIONS(4425), 1, - sym__newline, - STATE(2409), 1, - aux_sym__simple_statements_repeat1, + [114379] = 4, + ACTIONS(4414), 1, + anon_sym_COMMA, + ACTIONS(4416), 1, + anon_sym_COLON, + STATE(2256), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114367] = 4, - ACTIONS(1291), 1, - anon_sym_RBRACK, - ACTIONS(4427), 1, + [114393] = 4, + ACTIONS(2947), 1, + anon_sym_RPAREN, + ACTIONS(4418), 1, anon_sym_COMMA, - STATE(2469), 1, - aux_sym_assert_statement_repeat1, + STATE(2257), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114381] = 4, - ACTIONS(3248), 1, + [114407] = 4, + ACTIONS(3294), 1, anon_sym_COMMA, - ACTIONS(3250), 1, + ACTIONS(3296), 1, anon_sym_RBRACK, - STATE(2437), 1, + STATE(2428), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114395] = 4, - ACTIONS(4429), 1, + [114421] = 4, + ACTIONS(4420), 1, anon_sym_COMMA, - ACTIONS(4431), 1, + ACTIONS(4422), 1, anon_sym_RBRACK, - STATE(2443), 1, + STATE(2348), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114409] = 4, - ACTIONS(4433), 1, + [114435] = 4, + ACTIONS(4424), 1, anon_sym_COMMA, - ACTIONS(4435), 1, + ACTIONS(4426), 1, anon_sym_RBRACK, - STATE(2443), 1, + STATE(2348), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114423] = 4, - ACTIONS(1221), 1, + [114449] = 4, + ACTIONS(2871), 1, anon_sym_RPAREN, - ACTIONS(4437), 1, + ACTIONS(4428), 1, anon_sym_COMMA, - STATE(2419), 1, - aux_sym_argument_list_repeat1, + STATE(2429), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114437] = 4, - ACTIONS(4439), 1, - anon_sym_COMMA, - ACTIONS(4442), 1, + [114463] = 4, + ACTIONS(3711), 1, + anon_sym_COLON, + ACTIONS(4431), 1, anon_sym_RBRACE, - STATE(2439), 1, - aux_sym_dict_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114451] = 4, - ACTIONS(1291), 1, - anon_sym_RPAREN, - ACTIONS(4444), 1, - anon_sym_COMMA, - STATE(2478), 1, - aux_sym_assert_statement_repeat1, + STATE(2748), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114465] = 2, + [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, - ACTIONS(3949), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [114475] = 4, - ACTIONS(3382), 1, + [114491] = 4, + ACTIONS(4433), 1, anon_sym_COMMA, - ACTIONS(3384), 1, - anon_sym_RBRACE, - STATE(2270), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4435), 1, + anon_sym_COLON, + STATE(2344), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114489] = 4, - ACTIONS(4446), 1, - anon_sym_COMMA, - ACTIONS(4449), 1, - anon_sym_RBRACK, - STATE(2443), 1, - aux_sym_subscript_repeat1, + [114505] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114503] = 4, - ACTIONS(2652), 1, - anon_sym_RPAREN, - ACTIONS(4451), 1, + ACTIONS(4023), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - STATE(2294), 1, - aux_sym_case_clause_repeat1, + [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, - [114517] = 4, - ACTIONS(2654), 1, - anon_sym_RBRACK, - ACTIONS(4453), 1, - anon_sym_COMMA, - STATE(2333), 1, - aux_sym_case_clause_repeat1, + [114529] = 3, + ACTIONS(4441), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114531] = 4, - ACTIONS(4455), 1, + ACTIONS(4439), 2, + sym__newline, + anon_sym_SEMI, + [114541] = 4, + ACTIONS(4367), 1, anon_sym_COMMA, - ACTIONS(4457), 1, - anon_sym_RBRACE, - STATE(2439), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(4443), 1, + anon_sym_in, + STATE(2465), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114545] = 4, - ACTIONS(2692), 1, - anon_sym_RPAREN, - ACTIONS(4459), 1, + [114555] = 4, + ACTIONS(4367), 1, anon_sym_COMMA, - STATE(2294), 1, - aux_sym_case_clause_repeat1, + ACTIONS(4445), 1, + anon_sym_in, + STATE(2465), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114559] = 4, - ACTIONS(3840), 1, + [114569] = 4, + ACTIONS(3752), 1, anon_sym_LPAREN, - ACTIONS(4461), 1, + ACTIONS(4447), 1, anon_sym_COLON, - STATE(2687), 1, + STATE(2677), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114573] = 4, - ACTIONS(4130), 1, + [114583] = 4, + ACTIONS(4367), 1, anon_sym_COMMA, - ACTIONS(4463), 1, + ACTIONS(4449), 1, anon_sym_in, - STATE(2489), 1, + STATE(2465), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114587] = 4, - ACTIONS(4465), 1, - anon_sym_COMMA, - ACTIONS(4467), 1, - anon_sym_RBRACE, - STATE(2439), 1, - aux_sym_dict_pattern_repeat1, + [114597] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114601] = 4, - ACTIONS(4130), 1, + ACTIONS(4451), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(4469), 1, + [114607] = 4, + ACTIONS(4367), 1, + anon_sym_COMMA, + ACTIONS(4453), 1, anon_sym_in, - STATE(2489), 1, + STATE(2465), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114615] = 3, - ACTIONS(3588), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 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(3590), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [114627] = 4, - ACTIONS(3695), 1, + [114635] = 4, + ACTIONS(4195), 1, + sym__newline, + 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, + STATE(2468), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114663] = 4, + ACTIONS(3681), 1, anon_sym_DOT, - ACTIONS(3699), 1, + ACTIONS(3685), 1, anon_sym_PIPE, - ACTIONS(4471), 1, + ACTIONS(4459), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114641] = 4, - ACTIONS(3695), 1, + [114677] = 4, + ACTIONS(2672), 1, + anon_sym_RBRACK, + ACTIONS(4461), 1, + anon_sym_COMMA, + STATE(2414), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114691] = 4, + ACTIONS(3681), 1, anon_sym_DOT, - ACTIONS(3699), 1, + ACTIONS(3685), 1, anon_sym_PIPE, - ACTIONS(4473), 1, + ACTIONS(4463), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114655] = 4, - ACTIONS(3695), 1, + [114705] = 4, + ACTIONS(3681), 1, anon_sym_DOT, - ACTIONS(3699), 1, + ACTIONS(3685), 1, anon_sym_PIPE, - ACTIONS(4475), 1, + ACTIONS(4465), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114669] = 4, - ACTIONS(3695), 1, + [114719] = 4, + ACTIONS(3681), 1, anon_sym_DOT, - ACTIONS(3699), 1, + ACTIONS(3685), 1, anon_sym_PIPE, - ACTIONS(4477), 1, + ACTIONS(4467), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114683] = 4, - ACTIONS(3045), 1, + [114733] = 4, + ACTIONS(1287), 1, + anon_sym_COLON, + ACTIONS(4469), 1, anon_sym_COMMA, - ACTIONS(4479), 1, - anon_sym_RPAREN, - STATE(2322), 1, - aux_sym__collection_elements_repeat1, + STATE(2462), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114697] = 4, - ACTIONS(1263), 1, - anon_sym_RBRACK, - ACTIONS(4481), 1, - anon_sym_COMMA, - STATE(2387), 1, - aux_sym__collection_elements_repeat1, + [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, - [114711] = 2, + [114761] = 4, + ACTIONS(4475), 1, + anon_sym_COMMA, + ACTIONS(4477), 1, + anon_sym_RBRACE, + STATE(2326), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2882), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [114721] = 4, - ACTIONS(2983), 1, - anon_sym_RPAREN, - ACTIONS(3045), 1, + [114775] = 4, + ACTIONS(4367), 1, anon_sym_COMMA, - STATE(2322), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4479), 1, + anon_sym_in, + STATE(2465), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114735] = 4, - ACTIONS(4066), 1, - sym__newline, - ACTIONS(4068), 1, - sym__indent, - STATE(719), 1, - sym__match_block, + [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, - [114749] = 4, - ACTIONS(2002), 1, - anon_sym_RBRACK, - ACTIONS(4483), 1, + [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, + [114815] = 4, + ACTIONS(3010), 1, anon_sym_COMMA, - STATE(2473), 1, - aux_sym__patterns_repeat1, + ACTIONS(3054), 1, + anon_sym_RPAREN, + STATE(2346), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114763] = 4, - ACTIONS(4130), 1, + [114829] = 4, + ACTIONS(4483), 1, anon_sym_COMMA, ACTIONS(4485), 1, - anon_sym_in, - STATE(2489), 1, - aux_sym__patterns_repeat1, + anon_sym_RBRACE, + STATE(2326), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114777] = 4, - ACTIONS(4130), 1, - anon_sym_COMMA, - ACTIONS(4487), 1, - anon_sym_in, - STATE(2489), 1, - aux_sym__patterns_repeat1, + [114843] = 3, + ACTIONS(3962), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114791] = 4, - ACTIONS(3045), 1, + ACTIONS(4023), 2, + anon_sym_RPAREN, anon_sym_COMMA, + [114855] = 4, + ACTIONS(4487), 1, + anon_sym_SEMI, ACTIONS(4489), 1, - anon_sym_RPAREN, - STATE(2322), 1, - aux_sym__collection_elements_repeat1, + sym__newline, + STATE(2237), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114805] = 4, + [114869] = 4, + ACTIONS(4025), 1, + anon_sym_RPAREN, ACTIONS(4491), 1, anon_sym_COMMA, - ACTIONS(4494), 1, - anon_sym_COLON, - STATE(2466), 1, - aux_sym_with_clause_repeat1, + STATE(2460), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114819] = 4, - ACTIONS(4496), 1, + [114883] = 4, + ACTIONS(3358), 1, anon_sym_COMMA, - ACTIONS(4498), 1, - anon_sym_RBRACK, - STATE(2443), 1, - aux_sym_subscript_repeat1, + ACTIONS(3360), 1, + anon_sym_RBRACE, + STATE(2473), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114833] = 4, - ACTIONS(4500), 1, + [114897] = 4, + ACTIONS(3209), 1, + anon_sym_COLON, + ACTIONS(4494), 1, anon_sym_COMMA, - ACTIONS(4502), 1, - anon_sym_RBRACK, - STATE(2443), 1, - aux_sym_subscript_repeat1, + STATE(2462), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114847] = 4, - ACTIONS(3204), 1, + [114911] = 4, + ACTIONS(2871), 1, anon_sym_RBRACK, - ACTIONS(4504), 1, + ACTIONS(4497), 1, anon_sym_COMMA, - STATE(2469), 1, - aux_sym_assert_statement_repeat1, + STATE(2463), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114861] = 3, - ACTIONS(4509), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [114925] = 4, + ACTIONS(617), 1, + sym__newline, + ACTIONS(4500), 1, + anon_sym_SEMI, + STATE(2300), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4507), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [114873] = 4, - ACTIONS(3064), 1, - anon_sym_RPAREN, - ACTIONS(3066), 1, + [114939] = 4, + ACTIONS(971), 1, + anon_sym_in, + ACTIONS(4502), 1, anon_sym_COMMA, - STATE(2403), 1, - aux_sym_argument_list_repeat1, + STATE(2475), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114887] = 4, - ACTIONS(2686), 1, + [114953] = 4, + ACTIONS(3010), 1, + anon_sym_COMMA, + ACTIONS(4504), 1, anon_sym_RPAREN, - ACTIONS(4511), 1, + STATE(2346), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114967] = 4, + ACTIONS(3010), 1, anon_sym_COMMA, - STATE(2294), 1, - aux_sym_case_clause_repeat1, + ACTIONS(4506), 1, + anon_sym_RPAREN, + STATE(2346), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114901] = 4, - ACTIONS(2873), 1, - anon_sym_RBRACK, - ACTIONS(4513), 1, + [114981] = 4, + ACTIONS(3209), 1, + anon_sym_RPAREN, + ACTIONS(4508), 1, anon_sym_COMMA, - STATE(2473), 1, - aux_sym__patterns_repeat1, + STATE(2468), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114915] = 4, - ACTIONS(4170), 1, + [114995] = 4, + ACTIONS(4195), 1, sym__newline, - ACTIONS(4172), 1, + ACTIONS(4197), 1, sym__indent, - STATE(786), 1, + STATE(782), 1, sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114929] = 4, - ACTIONS(3689), 1, - anon_sym_RPAREN, - ACTIONS(4026), 1, + [115009] = 4, + ACTIONS(4511), 1, anon_sym_COMMA, - STATE(2414), 1, - aux_sym__import_list_repeat1, + ACTIONS(4513), 1, + anon_sym_COLON, + STATE(2344), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114943] = 4, - ACTIONS(3703), 1, - anon_sym_COLON, - ACTIONS(4516), 1, - anon_sym_RBRACE, - STATE(2684), 1, - sym_format_specifier, + [115023] = 4, + ACTIONS(3468), 1, + anon_sym_RBRACK, + ACTIONS(4515), 1, + anon_sym_COMMA, + STATE(2471), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114957] = 4, - ACTIONS(4044), 1, - anon_sym_RPAREN, + [115037] = 4, + ACTIONS(1009), 1, + anon_sym_RBRACK, ACTIONS(4518), 1, anon_sym_COMMA, - STATE(2262), 1, - aux_sym__parameters_repeat1, + STATE(2298), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114971] = 4, - ACTIONS(3204), 1, - anon_sym_RPAREN, + [115051] = 4, + ACTIONS(1295), 1, + anon_sym_RBRACE, ACTIONS(4520), 1, anon_sym_COMMA, - STATE(2478), 1, - aux_sym_assert_statement_repeat1, + STATE(2293), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114985] = 4, - ACTIONS(4523), 1, + [115065] = 4, + ACTIONS(4522), 1, anon_sym_RPAREN, - ACTIONS(4525), 1, + ACTIONS(4524), 1, anon_sym_COMMA, - STATE(2438), 1, - aux_sym_argument_list_repeat1, + STATE(2255), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114999] = 4, - ACTIONS(4360), 1, - anon_sym_RBRACK, - ACTIONS(4527), 1, + [115079] = 4, + ACTIONS(2871), 1, + anon_sym_in, + ACTIONS(4526), 1, anon_sym_COMMA, - STATE(2462), 1, + STATE(2475), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115013] = 4, - ACTIONS(3695), 1, - anon_sym_DOT, - ACTIONS(3699), 1, - anon_sym_PIPE, - ACTIONS(4529), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115027] = 4, - ACTIONS(4170), 1, - sym__newline, - ACTIONS(4172), 1, - sym__indent, - STATE(790), 1, - sym__match_block, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115041] = 4, - ACTIONS(4531), 1, + [115093] = 4, + ACTIONS(3010), 1, anon_sym_COMMA, - ACTIONS(4534), 1, - anon_sym_COLON, - STATE(2483), 1, - aux_sym_match_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115055] = 3, - ACTIONS(4048), 1, - anon_sym_EQ, + ACTIONS(3074), 1, + anon_sym_RPAREN, + STATE(2346), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3964), 2, - anon_sym_COMMA, - anon_sym_COLON, - [115067] = 4, - ACTIONS(2983), 1, - anon_sym_RBRACK, - ACTIONS(3037), 1, + [115107] = 4, + ACTIONS(4367), 1, anon_sym_COMMA, - STATE(2458), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4529), 1, + anon_sym_in, + STATE(2465), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115081] = 4, - ACTIONS(635), 1, - sym__newline, - ACTIONS(4536), 1, - anon_sym_SEMI, - STATE(2321), 1, - aux_sym__simple_statements_repeat1, + [115121] = 4, + ACTIONS(4367), 1, + anon_sym_COMMA, + ACTIONS(4531), 1, + anon_sym_in, + STATE(2465), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115095] = 4, - ACTIONS(4494), 1, + [115135] = 4, + ACTIONS(3079), 1, anon_sym_RPAREN, - ACTIONS(4538), 1, + ACTIONS(3081), 1, anon_sym_COMMA, - STATE(2487), 1, - aux_sym_with_clause_repeat1, + STATE(2376), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115109] = 4, - ACTIONS(4541), 1, - anon_sym_SEMI, - ACTIONS(4543), 1, - sym__newline, - STATE(2242), 1, - aux_sym__simple_statements_repeat1, + [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, - [115123] = 4, - ACTIONS(979), 1, - anon_sym_in, - ACTIONS(4545), 1, - anon_sym_COMMA, - STATE(2277), 1, - aux_sym__patterns_repeat1, + [115163] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115137] = 4, - ACTIONS(4130), 1, - anon_sym_COMMA, - ACTIONS(4547), 1, - anon_sym_in, - STATE(2489), 1, - aux_sym__patterns_repeat1, + ACTIONS(4537), 2, + sym__newline, + anon_sym_SEMI, + [115172] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115151] = 4, - ACTIONS(4130), 1, + ACTIONS(4539), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4549), 1, - anon_sym_in, - STATE(2489), 1, - aux_sym__patterns_repeat1, + [115181] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115165] = 4, - ACTIONS(3102), 1, + ACTIONS(4086), 2, anon_sym_RPAREN, - ACTIONS(3104), 1, anon_sym_COMMA, - STATE(2378), 1, - aux_sym_argument_list_repeat1, + [115190] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115179] = 2, + ACTIONS(4541), 2, + anon_sym__, + sym_identifier, + [115199] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4551), 2, + ACTIONS(4543), 2, sym__newline, anon_sym_SEMI, - [115188] = 2, + [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(3542), 2, + ACTIONS(1581), 2, anon_sym_COMMA, anon_sym_RBRACK, - [115197] = 2, + [115228] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1622), 2, + ACTIONS(1605), 2, sym__dedent, anon_sym_case, - [115206] = 2, + [115237] = 3, + ACTIONS(4549), 1, + sym_integer, + ACTIONS(4551), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4553), 2, + [115248] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3318), 2, sym__newline, anon_sym_SEMI, - [115215] = 2, + [115257] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4553), 2, + sym__dedent, + anon_sym_case, + [115266] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(4555), 2, - anon_sym__, - sym_identifier, - [115224] = 2, + sym__dedent, + anon_sym_case, + [115275] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(4557), 2, - sym__newline, - anon_sym_SEMI, - [115233] = 3, + sym__dedent, + anon_sym_case, + [115284] = 3, ACTIONS(4559), 1, - sym_integer, + anon_sym_COLON, ACTIONS(4561), 1, - sym_float, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115244] = 2, + [115295] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(4563), 2, sym__dedent, anon_sym_case, - [115253] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3074), 2, - sym__newline, - anon_sym_SEMI, - [115262] = 3, + [115304] = 3, ACTIONS(4565), 1, sym_integer, ACTIONS(4567), 1, @@ -122337,106 +122025,123 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115273] = 2, + [115315] = 3, + ACTIONS(3885), 1, + anon_sym_LPAREN, + STATE(2540), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4569), 2, - anon_sym_COLON, - anon_sym_DASH_GT, - [115282] = 2, + [115326] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4571), 2, - sym__newline, - anon_sym_SEMI, - [115291] = 2, + ACTIONS(4140), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [115335] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4573), 2, + ACTIONS(4569), 2, sym__dedent, anon_sym_case, - [115300] = 2, + [115344] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4575), 2, - sym__dedent, - anon_sym_case, - [115309] = 2, + ACTIONS(4571), 2, + anon_sym__, + sym_identifier, + [115353] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4577), 2, - sym__newline, - anon_sym_SEMI, - [115318] = 2, + ACTIONS(4573), 2, + sym__dedent, + anon_sym_case, + [115362] = 3, + ACTIONS(4575), 1, + sym_integer, + ACTIONS(4577), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3542), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [115327] = 3, - ACTIONS(4579), 1, - sym_integer, - ACTIONS(4581), 1, - sym_float, + [115373] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115338] = 2, + ACTIONS(3987), 2, + anon_sym_COMMA, + anon_sym_COLON, + [115382] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1648), 2, + ACTIONS(4579), 2, sym__dedent, anon_sym_case, - [115347] = 2, + [115391] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 2, + ACTIONS(4581), 2, sym__newline, anon_sym_SEMI, - [115356] = 2, + [115400] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4585), 2, - sym__newline, - anon_sym_SEMI, - [115365] = 2, + ACTIONS(4086), 2, + anon_sym_COMMA, + anon_sym_COLON, + [115409] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4201), 2, - sym__newline, - anon_sym_SEMI, - [115374] = 2, + ACTIONS(3468), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115418] = 3, + ACTIONS(4583), 1, + sym_integer, + ACTIONS(4585), 1, + sym_float, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115429] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4587), 2, + ACTIONS(4160), 2, sym__newline, anon_sym_SEMI, - [115383] = 2, + [115438] = 3, + ACTIONS(4587), 1, + sym_integer, + ACTIONS(4589), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4589), 2, - sym__dedent, - anon_sym_case, - [115392] = 2, + [115449] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(4591), 2, anon_sym__, sym_identifier, - [115401] = 3, + [115458] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3626), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115467] = 3, ACTIONS(4593), 1, sym_integer, ACTIONS(4595), 1, @@ -122444,274 +122149,251 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115412] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3479), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [115421] = 2, + [115478] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4597), 2, - anon_sym_RPAREN, + ACTIONS(4074), 2, anon_sym_COMMA, - [115430] = 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, - sym__newline, - anon_sym_SEMI, - [115439] = 2, + [115498] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4601), 2, + ACTIONS(4597), 2, anon_sym_RPAREN, anon_sym_COMMA, - [115448] = 2, + [115507] = 3, + ACTIONS(4599), 1, + sym_integer, + ACTIONS(4601), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3176), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [115457] = 2, + [115518] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3542), 2, - anon_sym_RPAREN, + ACTIONS(3987), 2, anon_sym_COMMA, - [115466] = 2, + anon_sym_COLON, + [115527] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1644), 2, + ACTIONS(1722), 2, sym__dedent, anon_sym_case, - [115475] = 3, - ACTIONS(4603), 1, - sym_integer, - ACTIONS(4605), 1, - sym_float, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115486] = 2, + [115536] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3964), 2, - anon_sym_COMMA, - anon_sym_COLON, - [115495] = 2, + ACTIONS(4603), 2, + sym__dedent, + anon_sym_case, + [115545] = 3, + ACTIONS(4605), 1, + sym_integer, + ACTIONS(4607), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2882), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [115504] = 3, - ACTIONS(4607), 1, - sym_integer, + [115556] = 3, ACTIONS(4609), 1, + sym_integer, + ACTIONS(4611), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115515] = 2, + [115567] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3290), 2, + ACTIONS(3172), 2, sym__newline, anon_sym_SEMI, - [115524] = 2, + [115576] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4611), 2, + ACTIONS(4613), 2, sym__dedent, anon_sym_case, - [115533] = 3, - ACTIONS(4613), 1, - sym_integer, - ACTIONS(4615), 1, - sym_float, + [115585] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115544] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4617), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [115553] = 3, - ACTIONS(4619), 1, + ACTIONS(4539), 2, anon_sym_COMMA, - STATE(1965), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115564] = 2, + anon_sym_RBRACE, + [115594] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3964), 2, - anon_sym_RPAREN, + ACTIONS(4615), 2, anon_sym_COMMA, - [115573] = 2, + anon_sym_RBRACE, + [115603] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4407), 2, + ACTIONS(3172), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [115582] = 2, + anon_sym_RBRACK, + [115612] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4597), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [115591] = 2, + ACTIONS(4617), 2, + sym__dedent, + anon_sym_case, + [115621] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1565), 2, - anon_sym_RPAREN, + ACTIONS(3468), 2, anon_sym_COMMA, - [115600] = 2, + anon_sym_RBRACE, + [115630] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3964), 2, - anon_sym_COMMA, + ACTIONS(4619), 2, anon_sym_COLON, - [115609] = 2, + anon_sym_DASH_GT, + [115639] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4098), 2, + ACTIONS(2880), 2, anon_sym_RPAREN, anon_sym_COMMA, - [115618] = 3, - ACTIONS(4621), 1, - anon_sym_COLON, - ACTIONS(4623), 1, - anon_sym_DASH_GT, + [115648] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115629] = 2, + ACTIONS(4621), 2, + sym__dedent, + anon_sym_case, + [115657] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4625), 2, + ACTIONS(4623), 2, sym__dedent, anon_sym_case, - [115638] = 3, - ACTIONS(4627), 1, - sym_integer, - ACTIONS(4629), 1, - sym_float, + [115666] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115649] = 2, + ACTIONS(4625), 2, + sym__newline, + anon_sym_SEMI, + [115675] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4631), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [115658] = 2, + ACTIONS(3223), 2, + sym__newline, + anon_sym_SEMI, + [115684] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4633), 2, - sym__dedent, - anon_sym_case, - [115667] = 2, + ACTIONS(4627), 2, + sym__newline, + anon_sym_SEMI, + [115693] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4494), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [115676] = 3, - ACTIONS(3916), 1, - anon_sym_LPAREN, - STATE(2573), 1, - sym_parameters, + ACTIONS(1692), 2, + sym__dedent, + anon_sym_case, + [115702] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115687] = 2, + ACTIONS(4629), 2, + sym__newline, + anon_sym_SEMI, + [115711] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3390), 2, + ACTIONS(3429), 2, anon_sym_COMMA, anon_sym_RBRACK, - [115696] = 2, + [115720] = 3, + ACTIONS(4631), 1, + anon_sym_COLON, + ACTIONS(4633), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3176), 2, - sym__newline, - anon_sym_SEMI, - [115705] = 2, + [115731] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(4635), 2, sym__newline, anon_sym_SEMI, - [115714] = 3, + [115740] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2871), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115749] = 3, ACTIONS(4637), 1, - sym_integer, + anon_sym_COLON, ACTIONS(4639), 1, - sym_float, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115725] = 2, + [115760] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4494), 2, + ACTIONS(3987), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - [115734] = 2, + [115769] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4641), 2, - anon_sym__, - sym_identifier, - [115743] = 2, + ACTIONS(2878), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [115778] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2884), 2, + ACTIONS(1581), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [115752] = 2, + [115787] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3176), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [115761] = 3, + ACTIONS(4641), 2, + sym__newline, + anon_sym_SEMI, + [115796] = 3, ACTIONS(4643), 1, anon_sym_COLON, ACTIONS(4645), 1, @@ -122719,7 +122401,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115772] = 3, + [115807] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3172), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115816] = 3, ACTIONS(4647), 1, anon_sym_COLON, ACTIONS(4649), 1, @@ -122727,14 +122416,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115783] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3918), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [115792] = 3, + [115827] = 3, ACTIONS(4651), 1, anon_sym_COLON, ACTIONS(4653), 1, @@ -122742,7 +122424,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115803] = 3, + [115838] = 3, ACTIONS(4655), 1, anon_sym_COLON, ACTIONS(4657), 1, @@ -122750,49 +122432,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115814] = 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(4659), 2, - sym__newline, - anon_sym_SEMI, - [115823] = 2, + [115860] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1565), 2, + ACTIONS(4074), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [115832] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4661), 2, - sym__dedent, - anon_sym_case, - [115841] = 2, + [115869] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(4663), 2, sym__newline, anon_sym_SEMI, - [115850] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4601), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [115859] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4631), 2, - anon_sym_COMMA, - anon_sym_COLON, - [115868] = 3, + [115878] = 3, ACTIONS(4665), 1, sym_integer, ACTIONS(4667), 1, @@ -122800,3981 +122462,3954 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115879] = 2, + [115889] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(4669), 2, - sym__dedent, - anon_sym_case, - [115888] = 2, + sym__newline, + anon_sym_SEMI, + [115898] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 2, - sym__dedent, - anon_sym_case, - [115897] = 2, + ACTIONS(2880), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [115907] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(4671), 2, - sym__dedent, - anon_sym_case, - [115906] = 2, + sym__newline, + anon_sym_SEMI, + [115916] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2873), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [115915] = 2, + ACTIONS(1712), 2, + sym__dedent, + anon_sym_case, + [115925] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(4673), 2, anon_sym_COLON, anon_sym_DASH_GT, - [115924] = 2, + [115934] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4287), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [115933] = 3, - ACTIONS(4675), 1, - anon_sym_COLON, - ACTIONS(4677), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115944] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4679), 2, + ACTIONS(1625), 2, sym__dedent, anon_sym_case, - [115953] = 2, + [115943] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4681), 2, + ACTIONS(4675), 2, sym__newline, anon_sym_SEMI, - [115962] = 2, + [115952] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2873), 2, + ACTIONS(4023), 2, anon_sym_RPAREN, anon_sym_COMMA, - [115971] = 2, + [115961] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4683), 2, - sym__dedent, - anon_sym_case, - [115980] = 2, + ACTIONS(2871), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [115970] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4685), 2, - sym__dedent, - anon_sym_case, - [115989] = 3, - ACTIONS(4687), 1, + ACTIONS(3068), 2, + sym__newline, + anon_sym_SEMI, + [115979] = 3, + ACTIONS(4677), 1, sym_integer, - ACTIONS(4689), 1, + ACTIONS(4679), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116000] = 3, - ACTIONS(4691), 1, - anon_sym_COLON, - ACTIONS(4693), 1, - anon_sym_DASH_GT, + [115990] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116011] = 2, + ACTIONS(4451), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115999] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4597), 2, + ACTIONS(4681), 2, anon_sym_COMMA, anon_sym_RBRACK, - [116020] = 2, + [116008] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4098), 2, + ACTIONS(4539), 2, anon_sym_COMMA, - anon_sym_COLON, - [116029] = 2, + anon_sym_RBRACK, + [116017] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4695), 2, - anon_sym__, - sym_identifier, - [116038] = 2, + ACTIONS(4681), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [116026] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3282), 2, - sym__newline, - anon_sym_SEMI, - [116047] = 2, + ACTIONS(4683), 2, + anon_sym_COMMA, + anon_sym_COLON, + [116035] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 2, - sym__dedent, - anon_sym_case, - [116056] = 2, + ACTIONS(4685), 2, + sym__newline, + anon_sym_SEMI, + [116044] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4601), 2, + ACTIONS(3468), 2, anon_sym_COMMA, anon_sym_RBRACK, - [116065] = 3, - ACTIONS(3916), 1, + [116053] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4687), 2, + sym__dedent, + anon_sym_case, + [116062] = 3, + ACTIONS(3885), 1, anon_sym_LPAREN, - STATE(2558), 1, + STATE(2551), 1, sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116076] = 3, - ACTIONS(3916), 1, + [116073] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4681), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [116082] = 3, + ACTIONS(3885), 1, anon_sym_LPAREN, - STATE(2559), 1, + STATE(2553), 1, sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116087] = 3, - ACTIONS(4697), 1, - sym_integer, - ACTIONS(4699), 1, - sym_float, + [116093] = 3, + ACTIONS(4689), 1, + anon_sym_COMMA, + STATE(1890), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116098] = 3, - ACTIONS(4701), 1, - anon_sym_COLON, - ACTIONS(4703), 1, - anon_sym_DASH_GT, + [116104] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116109] = 3, - ACTIONS(3916), 1, - anon_sym_LPAREN, - STATE(2580), 1, - sym_parameters, + ACTIONS(4691), 2, + anon_sym__, + sym_identifier, + [116113] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116120] = 2, + 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, - ACTIONS(2884), 2, + [116130] = 2, + ACTIONS(4695), 1, anon_sym_RPAREN, - anon_sym_COMMA, - [116129] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4705), 2, - anon_sym_COMMA, - anon_sym_RBRACE, [116138] = 2, - ACTIONS(3064), 1, + ACTIONS(3116), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116146] = 2, - ACTIONS(4707), 1, + ACTIONS(4697), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116154] = 2, - ACTIONS(4709), 1, + ACTIONS(4699), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116162] = 2, - ACTIONS(4711), 1, - anon_sym_RBRACE, + ACTIONS(4369), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116170] = 2, - ACTIONS(4713), 1, - anon_sym_RPAREN, + ACTIONS(4701), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116178] = 2, - ACTIONS(4715), 1, + ACTIONS(4703), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116186] = 2, - ACTIONS(4717), 1, - anon_sym_COLON, + ACTIONS(4705), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116194] = 2, - ACTIONS(4719), 1, - sym_identifier, + ACTIONS(4707), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116202] = 2, - ACTIONS(4721), 1, + ACTIONS(4709), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116210] = 2, - ACTIONS(3406), 1, + ACTIONS(3356), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116218] = 2, - ACTIONS(4723), 1, - anon_sym_RBRACE, + ACTIONS(4711), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116226] = 2, - ACTIONS(4725), 1, - anon_sym_COLON, + ACTIONS(3050), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116234] = 2, - ACTIONS(4727), 1, + ACTIONS(4713), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116242] = 2, - ACTIONS(4729), 1, + ACTIONS(4715), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116250] = 2, - ACTIONS(4731), 1, + ACTIONS(4717), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116258] = 2, - ACTIONS(4733), 1, - anon_sym_RBRACK, + ACTIONS(3034), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116266] = 2, - ACTIONS(4735), 1, + ACTIONS(4719), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116274] = 2, - ACTIONS(4737), 1, + ACTIONS(4721), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116282] = 2, - ACTIONS(4739), 1, - anon_sym_RBRACK, + ACTIONS(4723), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116290] = 2, - ACTIONS(4741), 1, - anon_sym_COLON, + ACTIONS(4725), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116298] = 2, - ACTIONS(4743), 1, + ACTIONS(4727), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116306] = 2, - ACTIONS(4745), 1, + ACTIONS(4729), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116314] = 2, - ACTIONS(4747), 1, - anon_sym_RPAREN, + ACTIONS(4731), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116322] = 2, - ACTIONS(3126), 1, + ACTIONS(3120), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116330] = 2, - ACTIONS(4749), 1, + ACTIONS(4733), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116338] = 2, - ACTIONS(3416), 1, + ACTIONS(3419), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116346] = 2, - ACTIONS(3402), 1, - anon_sym_RBRACE, + ACTIONS(4735), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116354] = 2, - ACTIONS(4751), 1, + ACTIONS(4737), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116362] = 2, - ACTIONS(4753), 1, + ACTIONS(4739), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116370] = 2, - ACTIONS(4755), 1, - anon_sym_COLON, + ACTIONS(4387), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116378] = 2, - ACTIONS(4757), 1, - ts_builtin_sym_end, + ACTIONS(4741), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116386] = 2, - ACTIONS(4759), 1, - anon_sym_RBRACE, + ACTIONS(4743), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116394] = 2, - ACTIONS(4761), 1, + ACTIONS(4745), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116402] = 2, - ACTIONS(4763), 1, - anon_sym_COLON, + ACTIONS(4747), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116410] = 2, - ACTIONS(3082), 1, - anon_sym_RPAREN, + ACTIONS(4749), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116418] = 2, - ACTIONS(4765), 1, - anon_sym_RPAREN, + ACTIONS(4751), 1, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116426] = 2, - ACTIONS(4767), 1, + ACTIONS(4753), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116434] = 2, - ACTIONS(4769), 1, - anon_sym_RPAREN, + ACTIONS(3409), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116442] = 2, - ACTIONS(4771), 1, - anon_sym_RBRACE, + ACTIONS(4755), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116450] = 2, - ACTIONS(4773), 1, - sym_identifier, + ACTIONS(4757), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116458] = 2, - ACTIONS(4775), 1, + ACTIONS(4759), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116466] = 2, - ACTIONS(4777), 1, - anon_sym_RBRACE, + ACTIONS(4761), 1, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116474] = 2, - ACTIONS(4779), 1, + ACTIONS(4763), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116482] = 2, - ACTIONS(4781), 1, - anon_sym_for, + ACTIONS(4765), 1, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116490] = 2, - ACTIONS(1437), 1, - anon_sym_COLON, + ACTIONS(4767), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116498] = 2, - ACTIONS(4783), 1, - anon_sym_COLON_EQ, + ACTIONS(4769), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116506] = 2, - ACTIONS(4785), 1, + ACTIONS(4771), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116514] = 2, - ACTIONS(4787), 1, - sym_identifier, + ACTIONS(3335), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116522] = 2, - ACTIONS(4789), 1, - anon_sym_RPAREN, + ACTIONS(4773), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116530] = 2, - ACTIONS(4791), 1, - sym_identifier, + ACTIONS(4775), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116538] = 2, - ACTIONS(4194), 1, - anon_sym_in, + ACTIONS(1495), 1, + anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116546] = 2, - ACTIONS(4793), 1, + ACTIONS(4777), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116554] = 2, - ACTIONS(4795), 1, - anon_sym_COLON_EQ, + [116554] = 2, + ACTIONS(4779), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116562] = 2, - ACTIONS(4797), 1, + ACTIONS(4781), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116570] = 2, - ACTIONS(4799), 1, - sym_identifier, + ACTIONS(4783), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116578] = 2, - ACTIONS(4801), 1, - anon_sym_in, + ACTIONS(4785), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116586] = 2, - ACTIONS(4803), 1, + ACTIONS(4787), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116594] = 2, - ACTIONS(4805), 1, - anon_sym_RBRACE, + ACTIONS(4789), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116602] = 2, - ACTIONS(4807), 1, - anon_sym_RBRACE, + ACTIONS(4791), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116610] = 2, - ACTIONS(4809), 1, - anon_sym_RPAREN, + ACTIONS(4793), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116618] = 2, - ACTIONS(4811), 1, - anon_sym_RPAREN, + ACTIONS(4795), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116626] = 2, - ACTIONS(4813), 1, - anon_sym_import, + ACTIONS(4797), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116634] = 2, - ACTIONS(4815), 1, - anon_sym_RPAREN, + ACTIONS(4799), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116642] = 2, - ACTIONS(4817), 1, + ACTIONS(4801), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116650] = 2, - ACTIONS(4819), 1, + ACTIONS(4803), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116658] = 2, - ACTIONS(4821), 1, + ACTIONS(4805), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116666] = 2, - ACTIONS(3384), 1, - anon_sym_RBRACE, + ACTIONS(4807), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116674] = 2, - ACTIONS(4823), 1, + ACTIONS(4809), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116682] = 2, - ACTIONS(4825), 1, - anon_sym_RBRACK, + ACTIONS(4811), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116690] = 2, - ACTIONS(4827), 1, - anon_sym_RBRACK, + ACTIONS(4813), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116698] = 2, - ACTIONS(4829), 1, + ACTIONS(4815), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116706] = 2, - ACTIONS(4831), 1, - anon_sym_COLON, + ACTIONS(4817), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116714] = 2, - ACTIONS(4833), 1, + ACTIONS(4819), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116722] = 2, - ACTIONS(3374), 1, - anon_sym_RBRACE, + ACTIONS(4821), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116730] = 2, - ACTIONS(4835), 1, - anon_sym_RPAREN, + ACTIONS(4823), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116738] = 2, - ACTIONS(4837), 1, - anon_sym_RBRACK, + ACTIONS(4825), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116746] = 2, - ACTIONS(3436), 1, - anon_sym_COLON, + ACTIONS(3437), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116754] = 2, - ACTIONS(4839), 1, - sym_identifier, + ACTIONS(4827), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116762] = 2, - ACTIONS(4841), 1, - anon_sym_RBRACK, + ACTIONS(3405), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116770] = 2, - ACTIONS(4843), 1, + ACTIONS(4829), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116778] = 2, - ACTIONS(4845), 1, - anon_sym_import, + ACTIONS(4831), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116786] = 2, - ACTIONS(3398), 1, + ACTIONS(4833), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116794] = 2, - ACTIONS(4847), 1, - anon_sym_RBRACE, + ACTIONS(4835), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116802] = 2, - ACTIONS(4849), 1, - anon_sym_RBRACE, + ACTIONS(4837), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116810] = 2, - ACTIONS(4851), 1, + ACTIONS(4839), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116818] = 2, - ACTIONS(4853), 1, - anon_sym_COLON, + ACTIONS(4449), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116826] = 2, - ACTIONS(4463), 1, - anon_sym_in, + ACTIONS(4841), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116834] = 2, - ACTIONS(4855), 1, - anon_sym_RPAREN, + ACTIONS(3390), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116842] = 2, - ACTIONS(3422), 1, - anon_sym_COLON, + ACTIONS(3433), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116850] = 2, - ACTIONS(4857), 1, - anon_sym_RBRACE, + ACTIONS(4843), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116858] = 2, - ACTIONS(4859), 1, - anon_sym_RBRACE, + ACTIONS(4443), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116866] = 2, - ACTIONS(4861), 1, + ACTIONS(4845), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116874] = 2, - ACTIONS(4863), 1, - anon_sym_COLON, + ACTIONS(4847), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116882] = 2, - ACTIONS(4865), 1, + ACTIONS(4849), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116890] = 2, - ACTIONS(4867), 1, - sym_identifier, + ACTIONS(4851), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116898] = 2, - ACTIONS(4469), 1, + ACTIONS(4453), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116906] = 2, - ACTIONS(4869), 1, + ACTIONS(3392), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116914] = 2, - ACTIONS(3424), 1, - anon_sym_COLON, + ACTIONS(4853), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116922] = 2, - ACTIONS(4871), 1, - sym_identifier, + ACTIONS(4855), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116930] = 2, - ACTIONS(4873), 1, - sym_identifier, + ACTIONS(4857), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116938] = 2, - ACTIONS(4875), 1, - sym_identifier, + ACTIONS(4859), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116946] = 2, - ACTIONS(4877), 1, - anon_sym_RBRACE, + ACTIONS(4861), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116954] = 2, - ACTIONS(4879), 1, - anon_sym_RBRACE, + ACTIONS(4863), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116962] = 2, - ACTIONS(4881), 1, - anon_sym_RPAREN, + ACTIONS(3342), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116970] = 2, - ACTIONS(4883), 1, + ACTIONS(4865), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116978] = 2, - ACTIONS(4885), 1, - sym_identifier, + ACTIONS(4867), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116986] = 2, - ACTIONS(4887), 1, - anon_sym_RPAREN, + ACTIONS(4869), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [116994] = 2, - ACTIONS(4889), 1, - anon_sym_COLON, + ACTIONS(4871), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117002] = 2, - ACTIONS(4891), 1, + ACTIONS(4873), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117010] = 2, - ACTIONS(4893), 1, - anon_sym_RBRACK, + ACTIONS(4875), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117018] = 2, - ACTIONS(4367), 1, - anon_sym_in, + ACTIONS(4877), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117026] = 2, - ACTIONS(4895), 1, - anon_sym_RBRACK, + ACTIONS(4445), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117034] = 2, - ACTIONS(4897), 1, - anon_sym_RBRACK, + ACTIONS(4879), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117042] = 2, - ACTIONS(4899), 1, - anon_sym_RBRACE, + ACTIONS(4881), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117050] = 2, - ACTIONS(4901), 1, - sym_identifier, + ACTIONS(4883), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117058] = 2, - ACTIONS(4903), 1, + ACTIONS(3413), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117066] = 2, - ACTIONS(4905), 1, - sym_identifier, + ACTIONS(4885), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117074] = 2, - ACTIONS(4907), 1, - anon_sym_RBRACE, + ACTIONS(3095), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117082] = 2, - ACTIONS(4909), 1, - anon_sym_COLON_EQ, + ACTIONS(4887), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117090] = 2, - ACTIONS(3092), 1, - anon_sym_RPAREN, + ACTIONS(4479), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117098] = 2, - ACTIONS(4485), 1, - anon_sym_in, + ACTIONS(4889), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117106] = 2, - ACTIONS(3361), 1, - anon_sym_RBRACE, + ACTIONS(4481), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117114] = 2, - ACTIONS(4487), 1, - anon_sym_in, + ACTIONS(4891), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117122] = 2, - ACTIONS(4911), 1, - anon_sym_RBRACE, + ACTIONS(4893), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117130] = 2, - ACTIONS(4913), 1, - anon_sym_COLON, + ACTIONS(4895), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117138] = 2, - ACTIONS(4915), 1, - anon_sym_RBRACE, + ACTIONS(4897), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117146] = 2, - ACTIONS(3114), 1, - anon_sym_RPAREN, + ACTIONS(4899), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117154] = 2, - ACTIONS(4917), 1, - anon_sym_RPAREN, + ACTIONS(1469), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117162] = 2, - ACTIONS(4919), 1, - anon_sym_RBRACE, + ACTIONS(4901), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117170] = 2, - ACTIONS(4921), 1, + ACTIONS(4903), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117178] = 2, - ACTIONS(4923), 1, - anon_sym_COLON_EQ, + ACTIONS(4905), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117186] = 2, - ACTIONS(4925), 1, - anon_sym_RBRACK, + ACTIONS(3064), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117194] = 2, - ACTIONS(4927), 1, - sym_identifier, + ACTIONS(4907), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117202] = 2, - ACTIONS(4929), 1, + ACTIONS(4909), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117210] = 2, - ACTIONS(1465), 1, - anon_sym_def, + ACTIONS(4911), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117218] = 2, - ACTIONS(4931), 1, - anon_sym_RPAREN, + ACTIONS(4913), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117226] = 2, - ACTIONS(3102), 1, - anon_sym_RPAREN, + ACTIONS(4915), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117234] = 2, - ACTIONS(4933), 1, - anon_sym_RBRACK, + ACTIONS(3360), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117242] = 2, - ACTIONS(4935), 1, + ACTIONS(4917), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117250] = 2, - ACTIONS(4937), 1, - anon_sym_RBRACK, + ACTIONS(4919), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117258] = 2, - ACTIONS(4939), 1, - anon_sym_RBRACK, + ACTIONS(4921), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117266] = 2, - ACTIONS(4941), 1, - anon_sym_COLON, + ACTIONS(4923), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117274] = 2, - ACTIONS(4943), 1, - sym_identifier, + ACTIONS(4925), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117282] = 2, - ACTIONS(4945), 1, - anon_sym_RBRACE, + ACTIONS(4927), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117290] = 2, - ACTIONS(4947), 1, - anon_sym_RPAREN, + ACTIONS(4929), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117298] = 2, - ACTIONS(4949), 1, - anon_sym_COLON, + ACTIONS(4931), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117306] = 2, - ACTIONS(4951), 1, - sym_identifier, + ACTIONS(4933), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117314] = 2, - ACTIONS(4953), 1, - anon_sym_RPAREN, + ACTIONS(4935), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117322] = 2, - ACTIONS(4955), 1, + ACTIONS(4937), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117330] = 2, - ACTIONS(4957), 1, - anon_sym_RBRACE, + ACTIONS(3085), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117338] = 2, - ACTIONS(3058), 1, - anon_sym_RPAREN, + ACTIONS(4939), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117346] = 2, - ACTIONS(3388), 1, - anon_sym_RBRACE, + ACTIONS(4941), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117354] = 2, - ACTIONS(4959), 1, - anon_sym_RPAREN, + ACTIONS(4943), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117362] = 2, - ACTIONS(4961), 1, - anon_sym_RBRACK, + ACTIONS(4945), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117370] = 2, - ACTIONS(4963), 1, - anon_sym_COLON, + ACTIONS(4947), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117378] = 2, - ACTIONS(4965), 1, - anon_sym_COLON, + ACTIONS(4949), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117386] = 2, - ACTIONS(4967), 1, - anon_sym_RBRACK, + ACTIONS(4951), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117394] = 2, - ACTIONS(4969), 1, - anon_sym_COLON, + ACTIONS(4953), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117402] = 2, - ACTIONS(4971), 1, - anon_sym_COLON, + ACTIONS(4955), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117410] = 2, - ACTIONS(4132), 1, - anon_sym_in, + ACTIONS(4957), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117418] = 2, - ACTIONS(4973), 1, - sym_identifier, + ACTIONS(4959), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117426] = 2, - ACTIONS(4975), 1, - sym_identifier, + ACTIONS(4961), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117434] = 2, - ACTIONS(4977), 1, + ACTIONS(4963), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117442] = 2, - ACTIONS(4979), 1, - anon_sym_RBRACE, + ACTIONS(4965), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117450] = 2, - ACTIONS(4981), 1, - sym_identifier, + ACTIONS(4967), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117458] = 2, - ACTIONS(4983), 1, - anon_sym_COLON, + ACTIONS(4969), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117466] = 2, - ACTIONS(4985), 1, - anon_sym_import, + ACTIONS(4971), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117474] = 2, - ACTIONS(4987), 1, - sym_identifier, + ACTIONS(4973), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117482] = 2, - ACTIONS(4989), 1, + ACTIONS(4975), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117490] = 2, - ACTIONS(4991), 1, - anon_sym_COLON, + ACTIONS(4977), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117498] = 2, - ACTIONS(4369), 1, - anon_sym_in, + ACTIONS(4979), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117506] = 2, - ACTIONS(4993), 1, - sym_identifier, + ACTIONS(4981), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117514] = 2, - ACTIONS(4995), 1, + ACTIONS(4983), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117522] = 2, - ACTIONS(4997), 1, - anon_sym_RBRACK, + ACTIONS(4985), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117530] = 2, - ACTIONS(4999), 1, - sym_identifier, + ACTIONS(4987), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117538] = 2, - ACTIONS(3394), 1, - anon_sym_COLON, + ACTIONS(4989), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117546] = 2, - ACTIONS(5001), 1, - sym_identifier, + ACTIONS(4991), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117554] = 2, - ACTIONS(5003), 1, - anon_sym_RBRACK, + ACTIONS(4993), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117562] = 2, - ACTIONS(5005), 1, - anon_sym_COLON_EQ, + ACTIONS(4995), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117570] = 2, - ACTIONS(5007), 1, - anon_sym_RBRACE, + ACTIONS(3079), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117578] = 2, - ACTIONS(5009), 1, - anon_sym_RBRACE, + ACTIONS(4997), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117586] = 2, - ACTIONS(5011), 1, - anon_sym_COLON, + ACTIONS(4999), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117594] = 2, - ACTIONS(5013), 1, - anon_sym_RPAREN, + ACTIONS(5001), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117602] = 2, - ACTIONS(5015), 1, - sym_identifier, + ACTIONS(5003), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117610] = 2, - ACTIONS(5017), 1, - sym_identifier, + ACTIONS(4529), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117618] = 2, - ACTIONS(5019), 1, - anon_sym_COLON, + ACTIONS(1503), 1, + anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117626] = 2, - ACTIONS(4547), 1, - anon_sym_in, + ACTIONS(5005), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117634] = 2, - ACTIONS(1457), 1, - anon_sym_def, + ACTIONS(5007), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117642] = 2, - ACTIONS(5021), 1, - anon_sym_for, + ACTIONS(4531), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117650] = 2, - ACTIONS(3070), 1, - anon_sym_RPAREN, + ACTIONS(5009), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117658] = 2, - ACTIONS(4549), 1, - anon_sym_in, + ACTIONS(5011), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117666] = 2, - ACTIONS(5023), 1, - anon_sym_for, + ACTIONS(5013), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, [117674] = 2, - ACTIONS(5025), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117682] = 2, - ACTIONS(5027), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117690] = 2, - ACTIONS(5029), 1, - anon_sym_RBRACK, + 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(184)] = 0, - [SMALL_STATE(185)] = 124, - [SMALL_STATE(186)] = 248, - [SMALL_STATE(187)] = 372, - [SMALL_STATE(188)] = 498, - [SMALL_STATE(189)] = 622, - [SMALL_STATE(190)] = 746, - [SMALL_STATE(191)] = 872, - [SMALL_STATE(192)] = 996, - [SMALL_STATE(193)] = 1122, - [SMALL_STATE(194)] = 1246, - [SMALL_STATE(195)] = 1370, - [SMALL_STATE(196)] = 1494, - [SMALL_STATE(197)] = 1614, - [SMALL_STATE(198)] = 1742, - [SMALL_STATE(199)] = 1868, - [SMALL_STATE(200)] = 1992, - [SMALL_STATE(201)] = 2116, - [SMALL_STATE(202)] = 2240, - [SMALL_STATE(203)] = 2366, - [SMALL_STATE(204)] = 2492, - [SMALL_STATE(205)] = 2616, - [SMALL_STATE(206)] = 2742, - [SMALL_STATE(207)] = 2866, - [SMALL_STATE(208)] = 2990, - [SMALL_STATE(209)] = 3116, - [SMALL_STATE(210)] = 3240, - [SMALL_STATE(211)] = 3364, - [SMALL_STATE(212)] = 3488, - [SMALL_STATE(213)] = 3608, - [SMALL_STATE(214)] = 3728, - [SMALL_STATE(215)] = 3854, - [SMALL_STATE(216)] = 3978, - [SMALL_STATE(217)] = 4106, - [SMALL_STATE(218)] = 4213, - [SMALL_STATE(219)] = 4320, - [SMALL_STATE(220)] = 4436, - [SMALL_STATE(221)] = 4552, - [SMALL_STATE(222)] = 4668, - [SMALL_STATE(223)] = 4784, - [SMALL_STATE(224)] = 4900, - [SMALL_STATE(225)] = 5016, - [SMALL_STATE(226)] = 5132, - [SMALL_STATE(227)] = 5248, - [SMALL_STATE(228)] = 5364, - [SMALL_STATE(229)] = 5480, - [SMALL_STATE(230)] = 5593, - [SMALL_STATE(231)] = 5706, - [SMALL_STATE(232)] = 5819, - [SMALL_STATE(233)] = 5934, - [SMALL_STATE(234)] = 6047, - [SMALL_STATE(235)] = 6160, - [SMALL_STATE(236)] = 6273, - [SMALL_STATE(237)] = 6388, - [SMALL_STATE(238)] = 6501, - [SMALL_STATE(239)] = 6614, - [SMALL_STATE(240)] = 6729, - [SMALL_STATE(241)] = 6842, - [SMALL_STATE(242)] = 6955, - [SMALL_STATE(243)] = 7070, - [SMALL_STATE(244)] = 7183, - [SMALL_STATE(245)] = 7296, - [SMALL_STATE(246)] = 7409, - [SMALL_STATE(247)] = 7524, - [SMALL_STATE(248)] = 7639, - [SMALL_STATE(249)] = 7752, - [SMALL_STATE(250)] = 7857, - [SMALL_STATE(251)] = 7972, - [SMALL_STATE(252)] = 8085, - [SMALL_STATE(253)] = 8202, - [SMALL_STATE(254)] = 8315, - [SMALL_STATE(255)] = 8430, - [SMALL_STATE(256)] = 8543, - [SMALL_STATE(257)] = 8654, - [SMALL_STATE(258)] = 8767, - [SMALL_STATE(259)] = 8880, - [SMALL_STATE(260)] = 8993, - [SMALL_STATE(261)] = 9106, - [SMALL_STATE(262)] = 9221, - [SMALL_STATE(263)] = 9334, - [SMALL_STATE(264)] = 9447, - [SMALL_STATE(265)] = 9560, - [SMALL_STATE(266)] = 9673, - [SMALL_STATE(267)] = 9778, - [SMALL_STATE(268)] = 9890, - [SMALL_STATE(269)] = 10004, - [SMALL_STATE(270)] = 10116, - [SMALL_STATE(271)] = 10230, - [SMALL_STATE(272)] = 10342, - [SMALL_STATE(273)] = 10458, - [SMALL_STATE(274)] = 10574, - [SMALL_STATE(275)] = 10686, - [SMALL_STATE(276)] = 10798, - [SMALL_STATE(277)] = 10910, - [SMALL_STATE(278)] = 11022, - [SMALL_STATE(279)] = 11134, - [SMALL_STATE(280)] = 11246, - [SMALL_STATE(281)] = 11360, - [SMALL_STATE(282)] = 11472, - [SMALL_STATE(283)] = 11588, - [SMALL_STATE(284)] = 11700, - [SMALL_STATE(285)] = 11812, - [SMALL_STATE(286)] = 11924, - [SMALL_STATE(287)] = 12036, - [SMALL_STATE(288)] = 12150, - [SMALL_STATE(289)] = 12262, - [SMALL_STATE(290)] = 12378, - [SMALL_STATE(291)] = 12490, - [SMALL_STATE(292)] = 12606, - [SMALL_STATE(293)] = 12718, - [SMALL_STATE(294)] = 12830, - [SMALL_STATE(295)] = 12942, - [SMALL_STATE(296)] = 13054, - [SMALL_STATE(297)] = 13166, - [SMALL_STATE(298)] = 13278, - [SMALL_STATE(299)] = 13392, - [SMALL_STATE(300)] = 13504, - [SMALL_STATE(301)] = 13620, - [SMALL_STATE(302)] = 13732, - [SMALL_STATE(303)] = 13844, - [SMALL_STATE(304)] = 13956, - [SMALL_STATE(305)] = 14068, - [SMALL_STATE(306)] = 14180, - [SMALL_STATE(307)] = 14294, - [SMALL_STATE(308)] = 14406, - [SMALL_STATE(309)] = 14518, - [SMALL_STATE(310)] = 14630, - [SMALL_STATE(311)] = 14742, - [SMALL_STATE(312)] = 14854, - [SMALL_STATE(313)] = 14968, - [SMALL_STATE(314)] = 15080, - [SMALL_STATE(315)] = 15192, - [SMALL_STATE(316)] = 15304, - [SMALL_STATE(317)] = 15416, - [SMALL_STATE(318)] = 15528, - [SMALL_STATE(319)] = 15642, - [SMALL_STATE(320)] = 15754, - [SMALL_STATE(321)] = 15866, - [SMALL_STATE(322)] = 15963, - [SMALL_STATE(323)] = 16072, - [SMALL_STATE(324)] = 16181, - [SMALL_STATE(325)] = 16290, - [SMALL_STATE(326)] = 16399, - [SMALL_STATE(327)] = 16508, - [SMALL_STATE(328)] = 16617, - [SMALL_STATE(329)] = 16726, - [SMALL_STATE(330)] = 16835, - [SMALL_STATE(331)] = 16944, - [SMALL_STATE(332)] = 17053, - [SMALL_STATE(333)] = 17162, - [SMALL_STATE(334)] = 17267, - [SMALL_STATE(335)] = 17376, - [SMALL_STATE(336)] = 17485, - [SMALL_STATE(337)] = 17594, - [SMALL_STATE(338)] = 17699, - [SMALL_STATE(339)] = 17808, - [SMALL_STATE(340)] = 17917, - [SMALL_STATE(341)] = 18026, - [SMALL_STATE(342)] = 18135, - [SMALL_STATE(343)] = 18244, - [SMALL_STATE(344)] = 18352, - [SMALL_STATE(345)] = 18460, - [SMALL_STATE(346)] = 18568, - [SMALL_STATE(347)] = 18676, - [SMALL_STATE(348)] = 18782, - [SMALL_STATE(349)] = 18890, - [SMALL_STATE(350)] = 18998, - [SMALL_STATE(351)] = 19106, - [SMALL_STATE(352)] = 19214, - [SMALL_STATE(353)] = 19322, - [SMALL_STATE(354)] = 19430, - [SMALL_STATE(355)] = 19536, - [SMALL_STATE(356)] = 19644, - [SMALL_STATE(357)] = 19752, - [SMALL_STATE(358)] = 19860, - [SMALL_STATE(359)] = 19968, - [SMALL_STATE(360)] = 20076, - [SMALL_STATE(361)] = 20182, - [SMALL_STATE(362)] = 20290, - [SMALL_STATE(363)] = 20398, - [SMALL_STATE(364)] = 20506, - [SMALL_STATE(365)] = 20614, - [SMALL_STATE(366)] = 20722, - [SMALL_STATE(367)] = 20829, - [SMALL_STATE(368)] = 20936, - [SMALL_STATE(369)] = 21043, - [SMALL_STATE(370)] = 21148, - [SMALL_STATE(371)] = 21253, - [SMALL_STATE(372)] = 21360, - [SMALL_STATE(373)] = 21467, - [SMALL_STATE(374)] = 21574, - [SMALL_STATE(375)] = 21681, - [SMALL_STATE(376)] = 21788, - [SMALL_STATE(377)] = 21893, - [SMALL_STATE(378)] = 22000, - [SMALL_STATE(379)] = 22107, - [SMALL_STATE(380)] = 22214, - [SMALL_STATE(381)] = 22321, - [SMALL_STATE(382)] = 22428, - [SMALL_STATE(383)] = 22535, - [SMALL_STATE(384)] = 22630, - [SMALL_STATE(385)] = 22737, - [SMALL_STATE(386)] = 22844, - [SMALL_STATE(387)] = 22951, - [SMALL_STATE(388)] = 23058, - [SMALL_STATE(389)] = 23165, - [SMALL_STATE(390)] = 23272, - [SMALL_STATE(391)] = 23379, - [SMALL_STATE(392)] = 23486, - [SMALL_STATE(393)] = 23593, - [SMALL_STATE(394)] = 23698, - [SMALL_STATE(395)] = 23805, - [SMALL_STATE(396)] = 23910, - [SMALL_STATE(397)] = 24017, - [SMALL_STATE(398)] = 24124, - [SMALL_STATE(399)] = 24231, - [SMALL_STATE(400)] = 24338, - [SMALL_STATE(401)] = 24445, - [SMALL_STATE(402)] = 24552, - [SMALL_STATE(403)] = 24657, - [SMALL_STATE(404)] = 24752, - [SMALL_STATE(405)] = 24854, - [SMALL_STATE(406)] = 24948, - [SMALL_STATE(407)] = 25050, - [SMALL_STATE(408)] = 25152, - [SMALL_STATE(409)] = 25254, - [SMALL_STATE(410)] = 25356, - [SMALL_STATE(411)] = 25458, - [SMALL_STATE(412)] = 25552, - [SMALL_STATE(413)] = 25646, - [SMALL_STATE(414)] = 25750, - [SMALL_STATE(415)] = 25852, - [SMALL_STATE(416)] = 25954, - [SMALL_STATE(417)] = 26050, - [SMALL_STATE(418)] = 26154, - [SMALL_STATE(419)] = 26258, - [SMALL_STATE(420)] = 26360, - [SMALL_STATE(421)] = 26462, - [SMALL_STATE(422)] = 26564, - [SMALL_STATE(423)] = 26666, - [SMALL_STATE(424)] = 26770, - [SMALL_STATE(425)] = 26872, - [SMALL_STATE(426)] = 26974, - [SMALL_STATE(427)] = 27076, - [SMALL_STATE(428)] = 27178, - [SMALL_STATE(429)] = 27272, - [SMALL_STATE(430)] = 27374, - [SMALL_STATE(431)] = 27478, - [SMALL_STATE(432)] = 27580, - [SMALL_STATE(433)] = 27682, - [SMALL_STATE(434)] = 27784, - [SMALL_STATE(435)] = 27886, - [SMALL_STATE(436)] = 27988, - [SMALL_STATE(437)] = 28092, - [SMALL_STATE(438)] = 28194, - [SMALL_STATE(439)] = 28296, - [SMALL_STATE(440)] = 28398, - [SMALL_STATE(441)] = 28500, - [SMALL_STATE(442)] = 28604, - [SMALL_STATE(443)] = 28708, - [SMALL_STATE(444)] = 28810, - [SMALL_STATE(445)] = 28914, - [SMALL_STATE(446)] = 29018, - [SMALL_STATE(447)] = 29122, - [SMALL_STATE(448)] = 29226, - [SMALL_STATE(449)] = 29330, - [SMALL_STATE(450)] = 29434, - [SMALL_STATE(451)] = 29538, - [SMALL_STATE(452)] = 29642, - [SMALL_STATE(453)] = 29746, - [SMALL_STATE(454)] = 29850, - [SMALL_STATE(455)] = 29954, - [SMALL_STATE(456)] = 30056, - [SMALL_STATE(457)] = 30131, - [SMALL_STATE(458)] = 30232, - [SMALL_STATE(459)] = 30333, - [SMALL_STATE(460)] = 30434, - [SMALL_STATE(461)] = 30535, - [SMALL_STATE(462)] = 30636, - [SMALL_STATE(463)] = 30737, - [SMALL_STATE(464)] = 30812, - [SMALL_STATE(465)] = 30889, - [SMALL_STATE(466)] = 30990, - [SMALL_STATE(467)] = 31091, - [SMALL_STATE(468)] = 31192, - [SMALL_STATE(469)] = 31293, - [SMALL_STATE(470)] = 31368, - [SMALL_STATE(471)] = 31469, - [SMALL_STATE(472)] = 31570, - [SMALL_STATE(473)] = 31671, - [SMALL_STATE(474)] = 31772, - [SMALL_STATE(475)] = 31873, - [SMALL_STATE(476)] = 31971, - [SMALL_STATE(477)] = 32069, - [SMALL_STATE(478)] = 32167, - [SMALL_STATE(479)] = 32265, - [SMALL_STATE(480)] = 32363, - [SMALL_STATE(481)] = 32461, - [SMALL_STATE(482)] = 32559, - [SMALL_STATE(483)] = 32657, - [SMALL_STATE(484)] = 32755, - [SMALL_STATE(485)] = 32853, - [SMALL_STATE(486)] = 32951, - [SMALL_STATE(487)] = 33049, - [SMALL_STATE(488)] = 33147, - [SMALL_STATE(489)] = 33245, - [SMALL_STATE(490)] = 33343, - [SMALL_STATE(491)] = 33441, - [SMALL_STATE(492)] = 33539, - [SMALL_STATE(493)] = 33637, - [SMALL_STATE(494)] = 33735, - [SMALL_STATE(495)] = 33835, - [SMALL_STATE(496)] = 33933, - [SMALL_STATE(497)] = 34031, - [SMALL_STATE(498)] = 34129, - [SMALL_STATE(499)] = 34227, - [SMALL_STATE(500)] = 34299, - [SMALL_STATE(501)] = 34397, - [SMALL_STATE(502)] = 34495, - [SMALL_STATE(503)] = 34593, - [SMALL_STATE(504)] = 34691, - [SMALL_STATE(505)] = 34789, - [SMALL_STATE(506)] = 34861, - [SMALL_STATE(507)] = 34959, - [SMALL_STATE(508)] = 35057, - [SMALL_STATE(509)] = 35155, - [SMALL_STATE(510)] = 35253, - [SMALL_STATE(511)] = 35351, - [SMALL_STATE(512)] = 35449, - [SMALL_STATE(513)] = 35547, - [SMALL_STATE(514)] = 35645, - [SMALL_STATE(515)] = 35717, - [SMALL_STATE(516)] = 35789, - [SMALL_STATE(517)] = 35861, - [SMALL_STATE(518)] = 35933, - [SMALL_STATE(519)] = 36031, - [SMALL_STATE(520)] = 36129, - [SMALL_STATE(521)] = 36227, - [SMALL_STATE(522)] = 36325, - [SMALL_STATE(523)] = 36423, - [SMALL_STATE(524)] = 36521, - [SMALL_STATE(525)] = 36619, - [SMALL_STATE(526)] = 36717, - [SMALL_STATE(527)] = 36815, - [SMALL_STATE(528)] = 36913, - [SMALL_STATE(529)] = 37011, - [SMALL_STATE(530)] = 37109, - [SMALL_STATE(531)] = 37207, - [SMALL_STATE(532)] = 37305, - [SMALL_STATE(533)] = 37403, - [SMALL_STATE(534)] = 37501, - [SMALL_STATE(535)] = 37599, - [SMALL_STATE(536)] = 37699, - [SMALL_STATE(537)] = 37797, - [SMALL_STATE(538)] = 37895, - [SMALL_STATE(539)] = 37993, - [SMALL_STATE(540)] = 38091, - [SMALL_STATE(541)] = 38189, - [SMALL_STATE(542)] = 38287, - [SMALL_STATE(543)] = 38385, - [SMALL_STATE(544)] = 38483, - [SMALL_STATE(545)] = 38581, - [SMALL_STATE(546)] = 38679, - [SMALL_STATE(547)] = 38777, - [SMALL_STATE(548)] = 38849, - [SMALL_STATE(549)] = 38949, - [SMALL_STATE(550)] = 39047, - [SMALL_STATE(551)] = 39145, - [SMALL_STATE(552)] = 39243, - [SMALL_STATE(553)] = 39341, - [SMALL_STATE(554)] = 39439, - [SMALL_STATE(555)] = 39539, - [SMALL_STATE(556)] = 39637, - [SMALL_STATE(557)] = 39737, - [SMALL_STATE(558)] = 39835, - [SMALL_STATE(559)] = 39933, - [SMALL_STATE(560)] = 40031, - [SMALL_STATE(561)] = 40129, - [SMALL_STATE(562)] = 40227, - [SMALL_STATE(563)] = 40325, - [SMALL_STATE(564)] = 40423, - [SMALL_STATE(565)] = 40521, - [SMALL_STATE(566)] = 40619, - [SMALL_STATE(567)] = 40717, - [SMALL_STATE(568)] = 40817, - [SMALL_STATE(569)] = 40915, - [SMALL_STATE(570)] = 41013, - [SMALL_STATE(571)] = 41111, - [SMALL_STATE(572)] = 41209, - [SMALL_STATE(573)] = 41307, - [SMALL_STATE(574)] = 41405, - [SMALL_STATE(575)] = 41503, - [SMALL_STATE(576)] = 41601, - [SMALL_STATE(577)] = 41699, - [SMALL_STATE(578)] = 41797, - [SMALL_STATE(579)] = 41895, - [SMALL_STATE(580)] = 41993, - [SMALL_STATE(581)] = 42093, - [SMALL_STATE(582)] = 42191, - [SMALL_STATE(583)] = 42289, - [SMALL_STATE(584)] = 42387, - [SMALL_STATE(585)] = 42485, - [SMALL_STATE(586)] = 42583, - [SMALL_STATE(587)] = 42681, - [SMALL_STATE(588)] = 42779, - [SMALL_STATE(589)] = 42877, - [SMALL_STATE(590)] = 42975, - [SMALL_STATE(591)] = 43073, - [SMALL_STATE(592)] = 43171, - [SMALL_STATE(593)] = 43269, - [SMALL_STATE(594)] = 43367, - [SMALL_STATE(595)] = 43465, - [SMALL_STATE(596)] = 43537, - [SMALL_STATE(597)] = 43635, - [SMALL_STATE(598)] = 43733, - [SMALL_STATE(599)] = 43831, - [SMALL_STATE(600)] = 43929, - [SMALL_STATE(601)] = 44027, - [SMALL_STATE(602)] = 44125, - [SMALL_STATE(603)] = 44223, - [SMALL_STATE(604)] = 44321, - [SMALL_STATE(605)] = 44419, - [SMALL_STATE(606)] = 44492, - [SMALL_STATE(607)] = 44560, - [SMALL_STATE(608)] = 44626, - [SMALL_STATE(609)] = 44694, - [SMALL_STATE(610)] = 44762, - [SMALL_STATE(611)] = 44830, - [SMALL_STATE(612)] = 44898, - [SMALL_STATE(613)] = 44960, - [SMALL_STATE(614)] = 45022, - [SMALL_STATE(615)] = 45090, - [SMALL_STATE(616)] = 45158, - [SMALL_STATE(617)] = 45220, - [SMALL_STATE(618)] = 45282, - [SMALL_STATE(619)] = 45348, - [SMALL_STATE(620)] = 45416, - [SMALL_STATE(621)] = 45484, - [SMALL_STATE(622)] = 45550, - [SMALL_STATE(623)] = 45618, - [SMALL_STATE(624)] = 45675, - [SMALL_STATE(625)] = 45738, - [SMALL_STATE(626)] = 45795, - [SMALL_STATE(627)] = 45852, - [SMALL_STATE(628)] = 45917, - [SMALL_STATE(629)] = 45974, - [SMALL_STATE(630)] = 46031, - [SMALL_STATE(631)] = 46094, - [SMALL_STATE(632)] = 46157, - [SMALL_STATE(633)] = 46220, - [SMALL_STATE(634)] = 46277, - [SMALL_STATE(635)] = 46334, - [SMALL_STATE(636)] = 46397, - [SMALL_STATE(637)] = 46454, - [SMALL_STATE(638)] = 46517, - [SMALL_STATE(639)] = 46574, - [SMALL_STATE(640)] = 46631, - [SMALL_STATE(641)] = 46688, - [SMALL_STATE(642)] = 46745, - [SMALL_STATE(643)] = 46802, - [SMALL_STATE(644)] = 46859, - [SMALL_STATE(645)] = 46916, - [SMALL_STATE(646)] = 46979, - [SMALL_STATE(647)] = 47042, - [SMALL_STATE(648)] = 47099, - [SMALL_STATE(649)] = 47156, - [SMALL_STATE(650)] = 47217, - [SMALL_STATE(651)] = 47278, - [SMALL_STATE(652)] = 47339, - [SMALL_STATE(653)] = 47402, - [SMALL_STATE(654)] = 47465, - [SMALL_STATE(655)] = 47521, - [SMALL_STATE(656)] = 47577, - [SMALL_STATE(657)] = 47633, - [SMALL_STATE(658)] = 47689, - [SMALL_STATE(659)] = 47745, - [SMALL_STATE(660)] = 47801, - [SMALL_STATE(661)] = 47857, - [SMALL_STATE(662)] = 47913, - [SMALL_STATE(663)] = 47969, - [SMALL_STATE(664)] = 48025, - [SMALL_STATE(665)] = 48081, - [SMALL_STATE(666)] = 48137, - [SMALL_STATE(667)] = 48193, - [SMALL_STATE(668)] = 48249, - [SMALL_STATE(669)] = 48341, - [SMALL_STATE(670)] = 48397, - [SMALL_STATE(671)] = 48453, - [SMALL_STATE(672)] = 48509, - [SMALL_STATE(673)] = 48565, - [SMALL_STATE(674)] = 48657, - [SMALL_STATE(675)] = 48713, - [SMALL_STATE(676)] = 48769, - [SMALL_STATE(677)] = 48825, - [SMALL_STATE(678)] = 48881, - [SMALL_STATE(679)] = 48937, - [SMALL_STATE(680)] = 48993, - [SMALL_STATE(681)] = 49049, - [SMALL_STATE(682)] = 49105, - [SMALL_STATE(683)] = 49161, - [SMALL_STATE(684)] = 49217, - [SMALL_STATE(685)] = 49273, - [SMALL_STATE(686)] = 49329, - [SMALL_STATE(687)] = 49388, - [SMALL_STATE(688)] = 49447, - [SMALL_STATE(689)] = 49506, - [SMALL_STATE(690)] = 49561, - [SMALL_STATE(691)] = 49616, - [SMALL_STATE(692)] = 49675, - [SMALL_STATE(693)] = 49734, - [SMALL_STATE(694)] = 49793, - [SMALL_STATE(695)] = 49852, - [SMALL_STATE(696)] = 49911, - [SMALL_STATE(697)] = 49966, - [SMALL_STATE(698)] = 50021, - [SMALL_STATE(699)] = 50080, - [SMALL_STATE(700)] = 50139, - [SMALL_STATE(701)] = 50194, - [SMALL_STATE(702)] = 50253, - [SMALL_STATE(703)] = 50312, - [SMALL_STATE(704)] = 50371, - [SMALL_STATE(705)] = 50430, - [SMALL_STATE(706)] = 50489, - [SMALL_STATE(707)] = 50544, - [SMALL_STATE(708)] = 50603, - [SMALL_STATE(709)] = 50657, - [SMALL_STATE(710)] = 50749, - [SMALL_STATE(711)] = 50803, - [SMALL_STATE(712)] = 50895, - [SMALL_STATE(713)] = 50949, - [SMALL_STATE(714)] = 51003, - [SMALL_STATE(715)] = 51056, - [SMALL_STATE(716)] = 51109, - [SMALL_STATE(717)] = 51162, - [SMALL_STATE(718)] = 51215, - [SMALL_STATE(719)] = 51268, - [SMALL_STATE(720)] = 51321, - [SMALL_STATE(721)] = 51374, - [SMALL_STATE(722)] = 51427, - [SMALL_STATE(723)] = 51480, - [SMALL_STATE(724)] = 51533, - [SMALL_STATE(725)] = 51586, - [SMALL_STATE(726)] = 51639, - [SMALL_STATE(727)] = 51692, - [SMALL_STATE(728)] = 51745, - [SMALL_STATE(729)] = 51798, - [SMALL_STATE(730)] = 51851, - [SMALL_STATE(731)] = 51904, - [SMALL_STATE(732)] = 51957, - [SMALL_STATE(733)] = 52010, - [SMALL_STATE(734)] = 52063, - [SMALL_STATE(735)] = 52116, - [SMALL_STATE(736)] = 52169, - [SMALL_STATE(737)] = 52222, - [SMALL_STATE(738)] = 52275, - [SMALL_STATE(739)] = 52328, - [SMALL_STATE(740)] = 52381, - [SMALL_STATE(741)] = 52434, - [SMALL_STATE(742)] = 52487, - [SMALL_STATE(743)] = 52540, - [SMALL_STATE(744)] = 52593, - [SMALL_STATE(745)] = 52646, - [SMALL_STATE(746)] = 52699, - [SMALL_STATE(747)] = 52752, - [SMALL_STATE(748)] = 52805, - [SMALL_STATE(749)] = 52858, - [SMALL_STATE(750)] = 52911, - [SMALL_STATE(751)] = 53000, - [SMALL_STATE(752)] = 53089, - [SMALL_STATE(753)] = 53142, - [SMALL_STATE(754)] = 53195, - [SMALL_STATE(755)] = 53248, - [SMALL_STATE(756)] = 53301, - [SMALL_STATE(757)] = 53354, - [SMALL_STATE(758)] = 53407, - [SMALL_STATE(759)] = 53460, - [SMALL_STATE(760)] = 53513, - [SMALL_STATE(761)] = 53566, - [SMALL_STATE(762)] = 53619, - [SMALL_STATE(763)] = 53672, - [SMALL_STATE(764)] = 53725, - [SMALL_STATE(765)] = 53778, - [SMALL_STATE(766)] = 53831, - [SMALL_STATE(767)] = 53884, - [SMALL_STATE(768)] = 53937, - [SMALL_STATE(769)] = 54026, - [SMALL_STATE(770)] = 54079, - [SMALL_STATE(771)] = 54132, - [SMALL_STATE(772)] = 54221, - [SMALL_STATE(773)] = 54274, - [SMALL_STATE(774)] = 54327, - [SMALL_STATE(775)] = 54380, - [SMALL_STATE(776)] = 54433, - [SMALL_STATE(777)] = 54486, - [SMALL_STATE(778)] = 54575, - [SMALL_STATE(779)] = 54628, - [SMALL_STATE(780)] = 54681, - [SMALL_STATE(781)] = 54734, - [SMALL_STATE(782)] = 54787, - [SMALL_STATE(783)] = 54840, - [SMALL_STATE(784)] = 54893, - [SMALL_STATE(785)] = 54946, - [SMALL_STATE(786)] = 54999, - [SMALL_STATE(787)] = 55052, - [SMALL_STATE(788)] = 55105, - [SMALL_STATE(789)] = 55194, - [SMALL_STATE(790)] = 55283, - [SMALL_STATE(791)] = 55336, - [SMALL_STATE(792)] = 55389, - [SMALL_STATE(793)] = 55442, - [SMALL_STATE(794)] = 55495, - [SMALL_STATE(795)] = 55548, - [SMALL_STATE(796)] = 55601, - [SMALL_STATE(797)] = 55654, - [SMALL_STATE(798)] = 55707, - [SMALL_STATE(799)] = 55760, - [SMALL_STATE(800)] = 55813, - [SMALL_STATE(801)] = 55866, - [SMALL_STATE(802)] = 55919, - [SMALL_STATE(803)] = 55972, - [SMALL_STATE(804)] = 56025, - [SMALL_STATE(805)] = 56078, - [SMALL_STATE(806)] = 56131, - [SMALL_STATE(807)] = 56184, - [SMALL_STATE(808)] = 56237, - [SMALL_STATE(809)] = 56290, - [SMALL_STATE(810)] = 56343, - [SMALL_STATE(811)] = 56396, - [SMALL_STATE(812)] = 56449, - [SMALL_STATE(813)] = 56502, - [SMALL_STATE(814)] = 56555, - [SMALL_STATE(815)] = 56608, - [SMALL_STATE(816)] = 56697, - [SMALL_STATE(817)] = 56750, - [SMALL_STATE(818)] = 56839, - [SMALL_STATE(819)] = 56892, - [SMALL_STATE(820)] = 56945, - [SMALL_STATE(821)] = 56998, - [SMALL_STATE(822)] = 57087, - [SMALL_STATE(823)] = 57140, - [SMALL_STATE(824)] = 57193, - [SMALL_STATE(825)] = 57246, - [SMALL_STATE(826)] = 57299, - [SMALL_STATE(827)] = 57352, - [SMALL_STATE(828)] = 57405, - [SMALL_STATE(829)] = 57458, - [SMALL_STATE(830)] = 57511, - [SMALL_STATE(831)] = 57600, - [SMALL_STATE(832)] = 57689, - [SMALL_STATE(833)] = 57778, - [SMALL_STATE(834)] = 57867, - [SMALL_STATE(835)] = 57920, - [SMALL_STATE(836)] = 58009, - [SMALL_STATE(837)] = 58098, - [SMALL_STATE(838)] = 58151, - [SMALL_STATE(839)] = 58237, - [SMALL_STATE(840)] = 58323, - [SMALL_STATE(841)] = 58409, - [SMALL_STATE(842)] = 58495, - [SMALL_STATE(843)] = 58581, - [SMALL_STATE(844)] = 58667, - [SMALL_STATE(845)] = 58750, - [SMALL_STATE(846)] = 58833, - [SMALL_STATE(847)] = 58911, - [SMALL_STATE(848)] = 58989, - [SMALL_STATE(849)] = 59067, - [SMALL_STATE(850)] = 59145, - [SMALL_STATE(851)] = 59223, - [SMALL_STATE(852)] = 59301, - [SMALL_STATE(853)] = 59379, - [SMALL_STATE(854)] = 59465, - [SMALL_STATE(855)] = 59543, - [SMALL_STATE(856)] = 59622, - [SMALL_STATE(857)] = 59697, - [SMALL_STATE(858)] = 59772, - [SMALL_STATE(859)] = 59847, - [SMALL_STATE(860)] = 59922, - [SMALL_STATE(861)] = 60001, - [SMALL_STATE(862)] = 60076, - [SMALL_STATE(863)] = 60151, - [SMALL_STATE(864)] = 60226, - [SMALL_STATE(865)] = 60301, - [SMALL_STATE(866)] = 60376, - [SMALL_STATE(867)] = 60455, - [SMALL_STATE(868)] = 60530, - [SMALL_STATE(869)] = 60605, - [SMALL_STATE(870)] = 60680, - [SMALL_STATE(871)] = 60755, - [SMALL_STATE(872)] = 60830, - [SMALL_STATE(873)] = 60905, - [SMALL_STATE(874)] = 60984, - [SMALL_STATE(875)] = 61059, - [SMALL_STATE(876)] = 61138, - [SMALL_STATE(877)] = 61213, - [SMALL_STATE(878)] = 61288, - [SMALL_STATE(879)] = 61363, - [SMALL_STATE(880)] = 61442, - [SMALL_STATE(881)] = 61527, - [SMALL_STATE(882)] = 61602, - [SMALL_STATE(883)] = 61677, - [SMALL_STATE(884)] = 61756, - [SMALL_STATE(885)] = 61831, - [SMALL_STATE(886)] = 61906, - [SMALL_STATE(887)] = 61985, - [SMALL_STATE(888)] = 62060, - [SMALL_STATE(889)] = 62145, - [SMALL_STATE(890)] = 62220, - [SMALL_STATE(891)] = 62295, - [SMALL_STATE(892)] = 62370, - [SMALL_STATE(893)] = 62445, - [SMALL_STATE(894)] = 62520, - [SMALL_STATE(895)] = 62599, - [SMALL_STATE(896)] = 62674, - [SMALL_STATE(897)] = 62749, - [SMALL_STATE(898)] = 62828, - [SMALL_STATE(899)] = 62903, - [SMALL_STATE(900)] = 62978, - [SMALL_STATE(901)] = 63053, - [SMALL_STATE(902)] = 63132, - [SMALL_STATE(903)] = 63207, - [SMALL_STATE(904)] = 63282, - [SMALL_STATE(905)] = 63357, - [SMALL_STATE(906)] = 63432, - [SMALL_STATE(907)] = 63511, - [SMALL_STATE(908)] = 63590, - [SMALL_STATE(909)] = 63665, - [SMALL_STATE(910)] = 63740, - [SMALL_STATE(911)] = 63819, - [SMALL_STATE(912)] = 63894, - [SMALL_STATE(913)] = 63969, - [SMALL_STATE(914)] = 64044, - [SMALL_STATE(915)] = 64119, - [SMALL_STATE(916)] = 64194, - [SMALL_STATE(917)] = 64269, - [SMALL_STATE(918)] = 64344, - [SMALL_STATE(919)] = 64419, - [SMALL_STATE(920)] = 64504, - [SMALL_STATE(921)] = 64579, - [SMALL_STATE(922)] = 64658, - [SMALL_STATE(923)] = 64733, - [SMALL_STATE(924)] = 64808, - [SMALL_STATE(925)] = 64883, - [SMALL_STATE(926)] = 64958, - [SMALL_STATE(927)] = 65033, - [SMALL_STATE(928)] = 65108, - [SMALL_STATE(929)] = 65183, - [SMALL_STATE(930)] = 65262, - [SMALL_STATE(931)] = 65337, - [SMALL_STATE(932)] = 65412, - [SMALL_STATE(933)] = 65487, - [SMALL_STATE(934)] = 65562, - [SMALL_STATE(935)] = 65637, - [SMALL_STATE(936)] = 65712, - [SMALL_STATE(937)] = 65787, - [SMALL_STATE(938)] = 65862, - [SMALL_STATE(939)] = 65937, - [SMALL_STATE(940)] = 66012, - [SMALL_STATE(941)] = 66087, - [SMALL_STATE(942)] = 66166, - [SMALL_STATE(943)] = 66245, - [SMALL_STATE(944)] = 66324, - [SMALL_STATE(945)] = 66399, - [SMALL_STATE(946)] = 66474, - [SMALL_STATE(947)] = 66549, - [SMALL_STATE(948)] = 66628, - [SMALL_STATE(949)] = 66703, - [SMALL_STATE(950)] = 66778, - [SMALL_STATE(951)] = 66830, - [SMALL_STATE(952)] = 66912, - [SMALL_STATE(953)] = 66996, - [SMALL_STATE(954)] = 67048, - [SMALL_STATE(955)] = 67100, - [SMALL_STATE(956)] = 67184, - [SMALL_STATE(957)] = 67268, - [SMALL_STATE(958)] = 67325, - [SMALL_STATE(959)] = 67388, - [SMALL_STATE(960)] = 67449, - [SMALL_STATE(961)] = 67506, - [SMALL_STATE(962)] = 67557, - [SMALL_STATE(963)] = 67608, - [SMALL_STATE(964)] = 67659, - [SMALL_STATE(965)] = 67724, - [SMALL_STATE(966)] = 67781, - [SMALL_STATE(967)] = 67850, - [SMALL_STATE(968)] = 67901, - [SMALL_STATE(969)] = 67972, - [SMALL_STATE(970)] = 68023, - [SMALL_STATE(971)] = 68074, - [SMALL_STATE(972)] = 68125, - [SMALL_STATE(973)] = 68206, - [SMALL_STATE(974)] = 68257, - [SMALL_STATE(975)] = 68308, - [SMALL_STATE(976)] = 68375, - [SMALL_STATE(977)] = 68432, - [SMALL_STATE(978)] = 68482, - [SMALL_STATE(979)] = 68528, - [SMALL_STATE(980)] = 68574, - [SMALL_STATE(981)] = 68620, - [SMALL_STATE(982)] = 68666, - [SMALL_STATE(983)] = 68712, - [SMALL_STATE(984)] = 68758, - [SMALL_STATE(985)] = 68838, - [SMALL_STATE(986)] = 68888, - [SMALL_STATE(987)] = 68938, - [SMALL_STATE(988)] = 68988, - [SMALL_STATE(989)] = 69068, - [SMALL_STATE(990)] = 69118, - [SMALL_STATE(991)] = 69166, - [SMALL_STATE(992)] = 69216, - [SMALL_STATE(993)] = 69272, - [SMALL_STATE(994)] = 69328, - [SMALL_STATE(995)] = 69378, - [SMALL_STATE(996)] = 69434, - [SMALL_STATE(997)] = 69496, - [SMALL_STATE(998)] = 69566, - [SMALL_STATE(999)] = 69622, - [SMALL_STATE(1000)] = 69682, - [SMALL_STATE(1001)] = 69750, - [SMALL_STATE(1002)] = 69816, - [SMALL_STATE(1003)] = 69880, - [SMALL_STATE(1004)] = 69930, - [SMALL_STATE(1005)] = 69982, - [SMALL_STATE(1006)] = 70034, - [SMALL_STATE(1007)] = 70090, - [SMALL_STATE(1008)] = 70146, - [SMALL_STATE(1009)] = 70192, - [SMALL_STATE(1010)] = 70240, - [SMALL_STATE(1011)] = 70286, - [SMALL_STATE(1012)] = 70342, - [SMALL_STATE(1013)] = 70404, - [SMALL_STATE(1014)] = 70474, - [SMALL_STATE(1015)] = 70530, - [SMALL_STATE(1016)] = 70590, - [SMALL_STATE(1017)] = 70658, - [SMALL_STATE(1018)] = 70724, - [SMALL_STATE(1019)] = 70788, - [SMALL_STATE(1020)] = 70844, - [SMALL_STATE(1021)] = 70900, - [SMALL_STATE(1022)] = 70980, - [SMALL_STATE(1023)] = 71028, - [SMALL_STATE(1024)] = 71078, - [SMALL_STATE(1025)] = 71124, - [SMALL_STATE(1026)] = 71180, - [SMALL_STATE(1027)] = 71242, - [SMALL_STATE(1028)] = 71312, - [SMALL_STATE(1029)] = 71368, - [SMALL_STATE(1030)] = 71428, - [SMALL_STATE(1031)] = 71496, - [SMALL_STATE(1032)] = 71562, - [SMALL_STATE(1033)] = 71626, - [SMALL_STATE(1034)] = 71671, - [SMALL_STATE(1035)] = 71716, - [SMALL_STATE(1036)] = 71761, - [SMALL_STATE(1037)] = 71806, - [SMALL_STATE(1038)] = 71851, - [SMALL_STATE(1039)] = 71906, - [SMALL_STATE(1040)] = 71967, - [SMALL_STATE(1041)] = 72016, - [SMALL_STATE(1042)] = 72061, - [SMALL_STATE(1043)] = 72116, - [SMALL_STATE(1044)] = 72161, - [SMALL_STATE(1045)] = 72210, - [SMALL_STATE(1046)] = 72261, - [SMALL_STATE(1047)] = 72312, - [SMALL_STATE(1048)] = 72381, - [SMALL_STATE(1049)] = 72436, - [SMALL_STATE(1050)] = 72481, - [SMALL_STATE(1051)] = 72526, - [SMALL_STATE(1052)] = 72571, - [SMALL_STATE(1053)] = 72616, - [SMALL_STATE(1054)] = 72667, - [SMALL_STATE(1055)] = 72712, - [SMALL_STATE(1056)] = 72757, - [SMALL_STATE(1057)] = 72802, - [SMALL_STATE(1058)] = 72853, - [SMALL_STATE(1059)] = 72904, - [SMALL_STATE(1060)] = 72959, - [SMALL_STATE(1061)] = 73020, - [SMALL_STATE(1062)] = 73089, - [SMALL_STATE(1063)] = 73144, - [SMALL_STATE(1064)] = 73189, - [SMALL_STATE(1065)] = 73234, - [SMALL_STATE(1066)] = 73293, - [SMALL_STATE(1067)] = 73348, - [SMALL_STATE(1068)] = 73399, - [SMALL_STATE(1069)] = 73444, - [SMALL_STATE(1070)] = 73489, - [SMALL_STATE(1071)] = 73534, - [SMALL_STATE(1072)] = 73579, - [SMALL_STATE(1073)] = 73640, - [SMALL_STATE(1074)] = 73689, - [SMALL_STATE(1075)] = 73738, - [SMALL_STATE(1076)] = 73807, - [SMALL_STATE(1077)] = 73852, - [SMALL_STATE(1078)] = 73907, - [SMALL_STATE(1079)] = 73956, - [SMALL_STATE(1080)] = 74015, - [SMALL_STATE(1081)] = 74064, - [SMALL_STATE(1082)] = 74131, - [SMALL_STATE(1083)] = 74176, - [SMALL_STATE(1084)] = 74241, - [SMALL_STATE(1085)] = 74286, - [SMALL_STATE(1086)] = 74331, - [SMALL_STATE(1087)] = 74378, - [SMALL_STATE(1088)] = 74425, - [SMALL_STATE(1089)] = 74472, - [SMALL_STATE(1090)] = 74521, - [SMALL_STATE(1091)] = 74566, - [SMALL_STATE(1092)] = 74611, - [SMALL_STATE(1093)] = 74656, - [SMALL_STATE(1094)] = 74701, - [SMALL_STATE(1095)] = 74756, - [SMALL_STATE(1096)] = 74801, - [SMALL_STATE(1097)] = 74868, - [SMALL_STATE(1098)] = 74923, - [SMALL_STATE(1099)] = 74972, - [SMALL_STATE(1100)] = 75017, - [SMALL_STATE(1101)] = 75064, - [SMALL_STATE(1102)] = 75111, - [SMALL_STATE(1103)] = 75158, - [SMALL_STATE(1104)] = 75203, - [SMALL_STATE(1105)] = 75252, - [SMALL_STATE(1106)] = 75307, - [SMALL_STATE(1107)] = 75356, - [SMALL_STATE(1108)] = 75401, - [SMALL_STATE(1109)] = 75448, - [SMALL_STATE(1110)] = 75495, - [SMALL_STATE(1111)] = 75542, - [SMALL_STATE(1112)] = 75607, - [SMALL_STATE(1113)] = 75652, - [SMALL_STATE(1114)] = 75715, - [SMALL_STATE(1115)] = 75770, - [SMALL_STATE(1116)] = 75829, - [SMALL_STATE(1117)] = 75884, - [SMALL_STATE(1118)] = 75937, - [SMALL_STATE(1119)] = 76004, - [SMALL_STATE(1120)] = 76055, - [SMALL_STATE(1121)] = 76106, - [SMALL_STATE(1122)] = 76157, - [SMALL_STATE(1123)] = 76202, - [SMALL_STATE(1124)] = 76247, - [SMALL_STATE(1125)] = 76312, - [SMALL_STATE(1126)] = 76375, - [SMALL_STATE(1127)] = 76424, - [SMALL_STATE(1128)] = 76473, - [SMALL_STATE(1129)] = 76518, - [SMALL_STATE(1130)] = 76563, - [SMALL_STATE(1131)] = 76608, - [SMALL_STATE(1132)] = 76653, - [SMALL_STATE(1133)] = 76716, - [SMALL_STATE(1134)] = 76760, - [SMALL_STATE(1135)] = 76808, - [SMALL_STATE(1136)] = 76856, - [SMALL_STATE(1137)] = 76900, - [SMALL_STATE(1138)] = 76944, - [SMALL_STATE(1139)] = 76992, - [SMALL_STATE(1140)] = 77040, - [SMALL_STATE(1141)] = 77088, - [SMALL_STATE(1142)] = 77136, - [SMALL_STATE(1143)] = 77180, - [SMALL_STATE(1144)] = 77224, - [SMALL_STATE(1145)] = 77268, - [SMALL_STATE(1146)] = 77312, - [SMALL_STATE(1147)] = 77356, - [SMALL_STATE(1148)] = 77400, - [SMALL_STATE(1149)] = 77444, - [SMALL_STATE(1150)] = 77488, - [SMALL_STATE(1151)] = 77536, - [SMALL_STATE(1152)] = 77582, - [SMALL_STATE(1153)] = 77628, - [SMALL_STATE(1154)] = 77674, - [SMALL_STATE(1155)] = 77722, - [SMALL_STATE(1156)] = 77766, - [SMALL_STATE(1157)] = 77810, - [SMALL_STATE(1158)] = 77854, - [SMALL_STATE(1159)] = 77898, - [SMALL_STATE(1160)] = 77946, - [SMALL_STATE(1161)] = 77990, - [SMALL_STATE(1162)] = 78036, - [SMALL_STATE(1163)] = 78082, - [SMALL_STATE(1164)] = 78128, - [SMALL_STATE(1165)] = 78172, - [SMALL_STATE(1166)] = 78216, - [SMALL_STATE(1167)] = 78260, - [SMALL_STATE(1168)] = 78304, - [SMALL_STATE(1169)] = 78348, - [SMALL_STATE(1170)] = 78392, - [SMALL_STATE(1171)] = 78442, - [SMALL_STATE(1172)] = 78486, - [SMALL_STATE(1173)] = 78530, - [SMALL_STATE(1174)] = 78574, - [SMALL_STATE(1175)] = 78618, - [SMALL_STATE(1176)] = 78662, - [SMALL_STATE(1177)] = 78710, - [SMALL_STATE(1178)] = 78754, - [SMALL_STATE(1179)] = 78798, - [SMALL_STATE(1180)] = 78842, - [SMALL_STATE(1181)] = 78886, - [SMALL_STATE(1182)] = 78930, - [SMALL_STATE(1183)] = 78974, - [SMALL_STATE(1184)] = 79018, - [SMALL_STATE(1185)] = 79062, - [SMALL_STATE(1186)] = 79106, - [SMALL_STATE(1187)] = 79150, - [SMALL_STATE(1188)] = 79194, - [SMALL_STATE(1189)] = 79238, - [SMALL_STATE(1190)] = 79282, - [SMALL_STATE(1191)] = 79326, - [SMALL_STATE(1192)] = 79372, - [SMALL_STATE(1193)] = 79420, - [SMALL_STATE(1194)] = 79466, - [SMALL_STATE(1195)] = 79510, - [SMALL_STATE(1196)] = 79554, - [SMALL_STATE(1197)] = 79600, - [SMALL_STATE(1198)] = 79648, - [SMALL_STATE(1199)] = 79696, - [SMALL_STATE(1200)] = 79742, - [SMALL_STATE(1201)] = 79786, - [SMALL_STATE(1202)] = 79832, - [SMALL_STATE(1203)] = 79878, - [SMALL_STATE(1204)] = 79924, - [SMALL_STATE(1205)] = 79968, - [SMALL_STATE(1206)] = 80012, - [SMALL_STATE(1207)] = 80058, - [SMALL_STATE(1208)] = 80102, - [SMALL_STATE(1209)] = 80146, - [SMALL_STATE(1210)] = 80190, - [SMALL_STATE(1211)] = 80234, - [SMALL_STATE(1212)] = 80282, - [SMALL_STATE(1213)] = 80326, - [SMALL_STATE(1214)] = 80370, - [SMALL_STATE(1215)] = 80414, - [SMALL_STATE(1216)] = 80462, - [SMALL_STATE(1217)] = 80510, - [SMALL_STATE(1218)] = 80572, - [SMALL_STATE(1219)] = 80620, - [SMALL_STATE(1220)] = 80670, - [SMALL_STATE(1221)] = 80714, - [SMALL_STATE(1222)] = 80768, - [SMALL_STATE(1223)] = 80812, - [SMALL_STATE(1224)] = 80856, - [SMALL_STATE(1225)] = 80910, - [SMALL_STATE(1226)] = 80954, - [SMALL_STATE(1227)] = 80998, - [SMALL_STATE(1228)] = 81042, - [SMALL_STATE(1229)] = 81086, - [SMALL_STATE(1230)] = 81130, - [SMALL_STATE(1231)] = 81174, - [SMALL_STATE(1232)] = 81218, - [SMALL_STATE(1233)] = 81262, - [SMALL_STATE(1234)] = 81306, - [SMALL_STATE(1235)] = 81350, - [SMALL_STATE(1236)] = 81394, - [SMALL_STATE(1237)] = 81438, - [SMALL_STATE(1238)] = 81482, - [SMALL_STATE(1239)] = 81526, - [SMALL_STATE(1240)] = 81570, - [SMALL_STATE(1241)] = 81614, - [SMALL_STATE(1242)] = 81658, - [SMALL_STATE(1243)] = 81702, - [SMALL_STATE(1244)] = 81746, - [SMALL_STATE(1245)] = 81790, - [SMALL_STATE(1246)] = 81834, - [SMALL_STATE(1247)] = 81882, - [SMALL_STATE(1248)] = 81926, - [SMALL_STATE(1249)] = 81970, - [SMALL_STATE(1250)] = 82014, - [SMALL_STATE(1251)] = 82058, - [SMALL_STATE(1252)] = 82102, - [SMALL_STATE(1253)] = 82150, - [SMALL_STATE(1254)] = 82196, - [SMALL_STATE(1255)] = 82240, - [SMALL_STATE(1256)] = 82284, - [SMALL_STATE(1257)] = 82328, - [SMALL_STATE(1258)] = 82372, - [SMALL_STATE(1259)] = 82416, - [SMALL_STATE(1260)] = 82460, - [SMALL_STATE(1261)] = 82510, - [SMALL_STATE(1262)] = 82554, - [SMALL_STATE(1263)] = 82598, - [SMALL_STATE(1264)] = 82642, - [SMALL_STATE(1265)] = 82686, - [SMALL_STATE(1266)] = 82730, - [SMALL_STATE(1267)] = 82774, - [SMALL_STATE(1268)] = 82818, - [SMALL_STATE(1269)] = 82872, - [SMALL_STATE(1270)] = 82916, - [SMALL_STATE(1271)] = 82960, - [SMALL_STATE(1272)] = 83020, - [SMALL_STATE(1273)] = 83064, - [SMALL_STATE(1274)] = 83108, - [SMALL_STATE(1275)] = 83152, - [SMALL_STATE(1276)] = 83196, - [SMALL_STATE(1277)] = 83240, - [SMALL_STATE(1278)] = 83284, - [SMALL_STATE(1279)] = 83328, - [SMALL_STATE(1280)] = 83396, - [SMALL_STATE(1281)] = 83450, - [SMALL_STATE(1282)] = 83494, - [SMALL_STATE(1283)] = 83552, - [SMALL_STATE(1284)] = 83618, - [SMALL_STATE(1285)] = 83682, - [SMALL_STATE(1286)] = 83732, - [SMALL_STATE(1287)] = 83775, - [SMALL_STATE(1288)] = 83818, - [SMALL_STATE(1289)] = 83861, - [SMALL_STATE(1290)] = 83904, - [SMALL_STATE(1291)] = 83949, - [SMALL_STATE(1292)] = 83992, - [SMALL_STATE(1293)] = 84035, - [SMALL_STATE(1294)] = 84082, - [SMALL_STATE(1295)] = 84125, - [SMALL_STATE(1296)] = 84168, - [SMALL_STATE(1297)] = 84215, - [SMALL_STATE(1298)] = 84258, - [SMALL_STATE(1299)] = 84301, - [SMALL_STATE(1300)] = 84344, - [SMALL_STATE(1301)] = 84387, - [SMALL_STATE(1302)] = 84430, - [SMALL_STATE(1303)] = 84473, - [SMALL_STATE(1304)] = 84516, - [SMALL_STATE(1305)] = 84559, - [SMALL_STATE(1306)] = 84610, - [SMALL_STATE(1307)] = 84657, - [SMALL_STATE(1308)] = 84700, - [SMALL_STATE(1309)] = 84743, - [SMALL_STATE(1310)] = 84786, - [SMALL_STATE(1311)] = 84829, - [SMALL_STATE(1312)] = 84876, - [SMALL_STATE(1313)] = 84919, - [SMALL_STATE(1314)] = 84962, - [SMALL_STATE(1315)] = 85007, - [SMALL_STATE(1316)] = 85058, - [SMALL_STATE(1317)] = 85101, - [SMALL_STATE(1318)] = 85144, - [SMALL_STATE(1319)] = 85187, - [SMALL_STATE(1320)] = 85234, - [SMALL_STATE(1321)] = 85277, - [SMALL_STATE(1322)] = 85324, - [SMALL_STATE(1323)] = 85369, - [SMALL_STATE(1324)] = 85412, - [SMALL_STATE(1325)] = 85455, - [SMALL_STATE(1326)] = 85498, - [SMALL_STATE(1327)] = 85541, - [SMALL_STATE(1328)] = 85586, - [SMALL_STATE(1329)] = 85629, - [SMALL_STATE(1330)] = 85674, - [SMALL_STATE(1331)] = 85717, - [SMALL_STATE(1332)] = 85760, - [SMALL_STATE(1333)] = 85803, - [SMALL_STATE(1334)] = 85846, - [SMALL_STATE(1335)] = 85889, - [SMALL_STATE(1336)] = 85932, - [SMALL_STATE(1337)] = 85975, - [SMALL_STATE(1338)] = 86018, - [SMALL_STATE(1339)] = 86061, - [SMALL_STATE(1340)] = 86104, - [SMALL_STATE(1341)] = 86147, - [SMALL_STATE(1342)] = 86192, - [SMALL_STATE(1343)] = 86235, - [SMALL_STATE(1344)] = 86278, - [SMALL_STATE(1345)] = 86321, - [SMALL_STATE(1346)] = 86364, - [SMALL_STATE(1347)] = 86409, - [SMALL_STATE(1348)] = 86452, - [SMALL_STATE(1349)] = 86495, - [SMALL_STATE(1350)] = 86538, - [SMALL_STATE(1351)] = 86581, - [SMALL_STATE(1352)] = 86626, - [SMALL_STATE(1353)] = 86669, - [SMALL_STATE(1354)] = 86712, - [SMALL_STATE(1355)] = 86755, - [SMALL_STATE(1356)] = 86800, - [SMALL_STATE(1357)] = 86843, - [SMALL_STATE(1358)] = 86886, - [SMALL_STATE(1359)] = 86931, - [SMALL_STATE(1360)] = 86976, - [SMALL_STATE(1361)] = 87019, - [SMALL_STATE(1362)] = 87062, - [SMALL_STATE(1363)] = 87105, - [SMALL_STATE(1364)] = 87148, - [SMALL_STATE(1365)] = 87195, - [SMALL_STATE(1366)] = 87242, - [SMALL_STATE(1367)] = 87287, - [SMALL_STATE(1368)] = 87330, - [SMALL_STATE(1369)] = 87375, - [SMALL_STATE(1370)] = 87418, - [SMALL_STATE(1371)] = 87461, - [SMALL_STATE(1372)] = 87504, - [SMALL_STATE(1373)] = 87549, - [SMALL_STATE(1374)] = 87594, - [SMALL_STATE(1375)] = 87637, - [SMALL_STATE(1376)] = 87680, - [SMALL_STATE(1377)] = 87723, - [SMALL_STATE(1378)] = 87766, - [SMALL_STATE(1379)] = 87809, - [SMALL_STATE(1380)] = 87852, - [SMALL_STATE(1381)] = 87895, - [SMALL_STATE(1382)] = 87942, - [SMALL_STATE(1383)] = 87985, - [SMALL_STATE(1384)] = 88028, - [SMALL_STATE(1385)] = 88071, - [SMALL_STATE(1386)] = 88114, - [SMALL_STATE(1387)] = 88157, - [SMALL_STATE(1388)] = 88200, - [SMALL_STATE(1389)] = 88243, - [SMALL_STATE(1390)] = 88288, - [SMALL_STATE(1391)] = 88331, - [SMALL_STATE(1392)] = 88374, - [SMALL_STATE(1393)] = 88417, - [SMALL_STATE(1394)] = 88464, - [SMALL_STATE(1395)] = 88511, - [SMALL_STATE(1396)] = 88554, - [SMALL_STATE(1397)] = 88599, - [SMALL_STATE(1398)] = 88642, - [SMALL_STATE(1399)] = 88685, - [SMALL_STATE(1400)] = 88728, - [SMALL_STATE(1401)] = 88771, - [SMALL_STATE(1402)] = 88818, - [SMALL_STATE(1403)] = 88861, - [SMALL_STATE(1404)] = 88904, - [SMALL_STATE(1405)] = 88947, - [SMALL_STATE(1406)] = 88990, - [SMALL_STATE(1407)] = 89035, - [SMALL_STATE(1408)] = 89078, - [SMALL_STATE(1409)] = 89121, - [SMALL_STATE(1410)] = 89164, - [SMALL_STATE(1411)] = 89207, - [SMALL_STATE(1412)] = 89250, - [SMALL_STATE(1413)] = 89292, - [SMALL_STATE(1414)] = 89336, - [SMALL_STATE(1415)] = 89380, - [SMALL_STATE(1416)] = 89422, - [SMALL_STATE(1417)] = 89464, - [SMALL_STATE(1418)] = 89506, - [SMALL_STATE(1419)] = 89548, - [SMALL_STATE(1420)] = 89590, - [SMALL_STATE(1421)] = 89632, - [SMALL_STATE(1422)] = 89674, - [SMALL_STATE(1423)] = 89716, - [SMALL_STATE(1424)] = 89758, - [SMALL_STATE(1425)] = 89800, - [SMALL_STATE(1426)] = 89842, - [SMALL_STATE(1427)] = 89890, - [SMALL_STATE(1428)] = 89940, - [SMALL_STATE(1429)] = 89982, - [SMALL_STATE(1430)] = 90024, - [SMALL_STATE(1431)] = 90066, - [SMALL_STATE(1432)] = 90112, - [SMALL_STATE(1433)] = 90156, - [SMALL_STATE(1434)] = 90198, - [SMALL_STATE(1435)] = 90240, - [SMALL_STATE(1436)] = 90286, - [SMALL_STATE(1437)] = 90328, - [SMALL_STATE(1438)] = 90370, - [SMALL_STATE(1439)] = 90412, - [SMALL_STATE(1440)] = 90454, - [SMALL_STATE(1441)] = 90496, - [SMALL_STATE(1442)] = 90538, - [SMALL_STATE(1443)] = 90580, - [SMALL_STATE(1444)] = 90622, - [SMALL_STATE(1445)] = 90664, - [SMALL_STATE(1446)] = 90708, - [SMALL_STATE(1447)] = 90752, - [SMALL_STATE(1448)] = 90796, - [SMALL_STATE(1449)] = 90838, - [SMALL_STATE(1450)] = 90880, - [SMALL_STATE(1451)] = 90922, - [SMALL_STATE(1452)] = 90964, - [SMALL_STATE(1453)] = 91008, - [SMALL_STATE(1454)] = 91052, - [SMALL_STATE(1455)] = 91096, - [SMALL_STATE(1456)] = 91138, - [SMALL_STATE(1457)] = 91180, - [SMALL_STATE(1458)] = 91222, - [SMALL_STATE(1459)] = 91268, - [SMALL_STATE(1460)] = 91311, - [SMALL_STATE(1461)] = 91352, - [SMALL_STATE(1462)] = 91395, - [SMALL_STATE(1463)] = 91438, - [SMALL_STATE(1464)] = 91479, - [SMALL_STATE(1465)] = 91522, - [SMALL_STATE(1466)] = 91563, - [SMALL_STATE(1467)] = 91606, - [SMALL_STATE(1468)] = 91649, - [SMALL_STATE(1469)] = 91692, - [SMALL_STATE(1470)] = 91735, - [SMALL_STATE(1471)] = 91776, - [SMALL_STATE(1472)] = 91819, - [SMALL_STATE(1473)] = 91860, - [SMALL_STATE(1474)] = 91901, - [SMALL_STATE(1475)] = 91942, - [SMALL_STATE(1476)] = 91983, - [SMALL_STATE(1477)] = 92024, - [SMALL_STATE(1478)] = 92065, - [SMALL_STATE(1479)] = 92139, - [SMALL_STATE(1480)] = 92213, - [SMALL_STATE(1481)] = 92281, - [SMALL_STATE(1482)] = 92349, - [SMALL_STATE(1483)] = 92417, - [SMALL_STATE(1484)] = 92485, - [SMALL_STATE(1485)] = 92553, - [SMALL_STATE(1486)] = 92621, - [SMALL_STATE(1487)] = 92689, - [SMALL_STATE(1488)] = 92757, - [SMALL_STATE(1489)] = 92825, - [SMALL_STATE(1490)] = 92893, - [SMALL_STATE(1491)] = 92961, - [SMALL_STATE(1492)] = 93029, - [SMALL_STATE(1493)] = 93097, - [SMALL_STATE(1494)] = 93165, - [SMALL_STATE(1495)] = 93233, - [SMALL_STATE(1496)] = 93301, - [SMALL_STATE(1497)] = 93369, - [SMALL_STATE(1498)] = 93437, - [SMALL_STATE(1499)] = 93505, - [SMALL_STATE(1500)] = 93573, - [SMALL_STATE(1501)] = 93641, - [SMALL_STATE(1502)] = 93709, - [SMALL_STATE(1503)] = 93777, - [SMALL_STATE(1504)] = 93845, - [SMALL_STATE(1505)] = 93913, - [SMALL_STATE(1506)] = 93981, - [SMALL_STATE(1507)] = 94049, - [SMALL_STATE(1508)] = 94117, - [SMALL_STATE(1509)] = 94185, - [SMALL_STATE(1510)] = 94253, - [SMALL_STATE(1511)] = 94321, - [SMALL_STATE(1512)] = 94389, - [SMALL_STATE(1513)] = 94457, - [SMALL_STATE(1514)] = 94525, - [SMALL_STATE(1515)] = 94593, - [SMALL_STATE(1516)] = 94661, - [SMALL_STATE(1517)] = 94726, - [SMALL_STATE(1518)] = 94791, - [SMALL_STATE(1519)] = 94856, - [SMALL_STATE(1520)] = 94921, - [SMALL_STATE(1521)] = 94986, - [SMALL_STATE(1522)] = 95052, - [SMALL_STATE(1523)] = 95118, - [SMALL_STATE(1524)] = 95184, - [SMALL_STATE(1525)] = 95250, - [SMALL_STATE(1526)] = 95316, - [SMALL_STATE(1527)] = 95382, - [SMALL_STATE(1528)] = 95448, - [SMALL_STATE(1529)] = 95514, - [SMALL_STATE(1530)] = 95580, - [SMALL_STATE(1531)] = 95646, - [SMALL_STATE(1532)] = 95712, - [SMALL_STATE(1533)] = 95778, - [SMALL_STATE(1534)] = 95844, - [SMALL_STATE(1535)] = 95910, - [SMALL_STATE(1536)] = 95976, - [SMALL_STATE(1537)] = 96042, - [SMALL_STATE(1538)] = 96108, - [SMALL_STATE(1539)] = 96174, - [SMALL_STATE(1540)] = 96240, - [SMALL_STATE(1541)] = 96306, - [SMALL_STATE(1542)] = 96369, - [SMALL_STATE(1543)] = 96427, - [SMALL_STATE(1544)] = 96485, - [SMALL_STATE(1545)] = 96531, - [SMALL_STATE(1546)] = 96589, - [SMALL_STATE(1547)] = 96647, - [SMALL_STATE(1548)] = 96705, - [SMALL_STATE(1549)] = 96763, - [SMALL_STATE(1550)] = 96821, - [SMALL_STATE(1551)] = 96867, - [SMALL_STATE(1552)] = 96925, - [SMALL_STATE(1553)] = 96970, - [SMALL_STATE(1554)] = 97015, - [SMALL_STATE(1555)] = 97059, - [SMALL_STATE(1556)] = 97103, - [SMALL_STATE(1557)] = 97147, - [SMALL_STATE(1558)] = 97191, - [SMALL_STATE(1559)] = 97234, - [SMALL_STATE(1560)] = 97277, - [SMALL_STATE(1561)] = 97318, - [SMALL_STATE(1562)] = 97361, - [SMALL_STATE(1563)] = 97402, - [SMALL_STATE(1564)] = 97445, - [SMALL_STATE(1565)] = 97487, - [SMALL_STATE(1566)] = 97519, - [SMALL_STATE(1567)] = 97551, - [SMALL_STATE(1568)] = 97583, - [SMALL_STATE(1569)] = 97615, - [SMALL_STATE(1570)] = 97647, - [SMALL_STATE(1571)] = 97679, - [SMALL_STATE(1572)] = 97709, - [SMALL_STATE(1573)] = 97751, - [SMALL_STATE(1574)] = 97781, - [SMALL_STATE(1575)] = 97811, - [SMALL_STATE(1576)] = 97841, - [SMALL_STATE(1577)] = 97871, - [SMALL_STATE(1578)] = 97901, - [SMALL_STATE(1579)] = 97931, - [SMALL_STATE(1580)] = 97961, - [SMALL_STATE(1581)] = 97991, - [SMALL_STATE(1582)] = 98021, - [SMALL_STATE(1583)] = 98050, - [SMALL_STATE(1584)] = 98079, - [SMALL_STATE(1585)] = 98108, - [SMALL_STATE(1586)] = 98137, - [SMALL_STATE(1587)] = 98162, - [SMALL_STATE(1588)] = 98187, - [SMALL_STATE(1589)] = 98212, - [SMALL_STATE(1590)] = 98241, - [SMALL_STATE(1591)] = 98270, - [SMALL_STATE(1592)] = 98299, - [SMALL_STATE(1593)] = 98324, - [SMALL_STATE(1594)] = 98353, - [SMALL_STATE(1595)] = 98382, - [SMALL_STATE(1596)] = 98411, - [SMALL_STATE(1597)] = 98440, - [SMALL_STATE(1598)] = 98469, - [SMALL_STATE(1599)] = 98516, - [SMALL_STATE(1600)] = 98545, - [SMALL_STATE(1601)] = 98574, - [SMALL_STATE(1602)] = 98603, - [SMALL_STATE(1603)] = 98632, - [SMALL_STATE(1604)] = 98661, - [SMALL_STATE(1605)] = 98690, - [SMALL_STATE(1606)] = 98719, - [SMALL_STATE(1607)] = 98748, - [SMALL_STATE(1608)] = 98777, - [SMALL_STATE(1609)] = 98806, - [SMALL_STATE(1610)] = 98853, - [SMALL_STATE(1611)] = 98900, - [SMALL_STATE(1612)] = 98947, - [SMALL_STATE(1613)] = 98994, - [SMALL_STATE(1614)] = 99041, - [SMALL_STATE(1615)] = 99088, - [SMALL_STATE(1616)] = 99135, - [SMALL_STATE(1617)] = 99182, - [SMALL_STATE(1618)] = 99229, - [SMALL_STATE(1619)] = 99258, - [SMALL_STATE(1620)] = 99287, - [SMALL_STATE(1621)] = 99319, - [SMALL_STATE(1622)] = 99347, - [SMALL_STATE(1623)] = 99393, - [SMALL_STATE(1624)] = 99425, - [SMALL_STATE(1625)] = 99471, - [SMALL_STATE(1626)] = 99517, - [SMALL_STATE(1627)] = 99563, - [SMALL_STATE(1628)] = 99609, - [SMALL_STATE(1629)] = 99633, - [SMALL_STATE(1630)] = 99679, - [SMALL_STATE(1631)] = 99725, - [SMALL_STATE(1632)] = 99755, - [SMALL_STATE(1633)] = 99801, - [SMALL_STATE(1634)] = 99825, - [SMALL_STATE(1635)] = 99871, - [SMALL_STATE(1636)] = 99895, - [SMALL_STATE(1637)] = 99941, - [SMALL_STATE(1638)] = 99969, - [SMALL_STATE(1639)] = 99993, - [SMALL_STATE(1640)] = 100039, - [SMALL_STATE(1641)] = 100082, - [SMALL_STATE(1642)] = 100122, - [SMALL_STATE(1643)] = 100162, - [SMALL_STATE(1644)] = 100202, - [SMALL_STATE(1645)] = 100242, - [SMALL_STATE(1646)] = 100268, - [SMALL_STATE(1647)] = 100307, - [SMALL_STATE(1648)] = 100344, - [SMALL_STATE(1649)] = 100381, - [SMALL_STATE(1650)] = 100400, - [SMALL_STATE(1651)] = 100441, - [SMALL_STATE(1652)] = 100468, - [SMALL_STATE(1653)] = 100495, - [SMALL_STATE(1654)] = 100522, - [SMALL_STATE(1655)] = 100563, - [SMALL_STATE(1656)] = 100588, - [SMALL_STATE(1657)] = 100611, - [SMALL_STATE(1658)] = 100632, - [SMALL_STATE(1659)] = 100651, - [SMALL_STATE(1660)] = 100670, - [SMALL_STATE(1661)] = 100711, - [SMALL_STATE(1662)] = 100752, - [SMALL_STATE(1663)] = 100793, - [SMALL_STATE(1664)] = 100834, - [SMALL_STATE(1665)] = 100875, - [SMALL_STATE(1666)] = 100916, - [SMALL_STATE(1667)] = 100946, - [SMALL_STATE(1668)] = 100972, - [SMALL_STATE(1669)] = 101010, - [SMALL_STATE(1670)] = 101048, - [SMALL_STATE(1671)] = 101078, - [SMALL_STATE(1672)] = 101108, - [SMALL_STATE(1673)] = 101146, - [SMALL_STATE(1674)] = 101176, - [SMALL_STATE(1675)] = 101214, - [SMALL_STATE(1676)] = 101244, - [SMALL_STATE(1677)] = 101270, - [SMALL_STATE(1678)] = 101308, - [SMALL_STATE(1679)] = 101338, - [SMALL_STATE(1680)] = 101376, - [SMALL_STATE(1681)] = 101414, - [SMALL_STATE(1682)] = 101446, - [SMALL_STATE(1683)] = 101476, - [SMALL_STATE(1684)] = 101506, - [SMALL_STATE(1685)] = 101544, - [SMALL_STATE(1686)] = 101574, - [SMALL_STATE(1687)] = 101604, - [SMALL_STATE(1688)] = 101642, - [SMALL_STATE(1689)] = 101680, - [SMALL_STATE(1690)] = 101700, - [SMALL_STATE(1691)] = 101730, - [SMALL_STATE(1692)] = 101760, - [SMALL_STATE(1693)] = 101798, - [SMALL_STATE(1694)] = 101836, - [SMALL_STATE(1695)] = 101866, - [SMALL_STATE(1696)] = 101896, - [SMALL_STATE(1697)] = 101934, - [SMALL_STATE(1698)] = 101954, - [SMALL_STATE(1699)] = 101992, - [SMALL_STATE(1700)] = 102030, - [SMALL_STATE(1701)] = 102060, - [SMALL_STATE(1702)] = 102090, - [SMALL_STATE(1703)] = 102128, - [SMALL_STATE(1704)] = 102166, - [SMALL_STATE(1705)] = 102196, - [SMALL_STATE(1706)] = 102226, - [SMALL_STATE(1707)] = 102264, - [SMALL_STATE(1708)] = 102290, - [SMALL_STATE(1709)] = 102314, - [SMALL_STATE(1710)] = 102352, - [SMALL_STATE(1711)] = 102376, - [SMALL_STATE(1712)] = 102396, - [SMALL_STATE(1713)] = 102434, - [SMALL_STATE(1714)] = 102456, - [SMALL_STATE(1715)] = 102494, - [SMALL_STATE(1716)] = 102532, - [SMALL_STATE(1717)] = 102570, - [SMALL_STATE(1718)] = 102608, - [SMALL_STATE(1719)] = 102638, - [SMALL_STATE(1720)] = 102676, - [SMALL_STATE(1721)] = 102701, - [SMALL_STATE(1722)] = 102718, - [SMALL_STATE(1723)] = 102735, - [SMALL_STATE(1724)] = 102752, - [SMALL_STATE(1725)] = 102777, - [SMALL_STATE(1726)] = 102800, - [SMALL_STATE(1727)] = 102821, - [SMALL_STATE(1728)] = 102838, - [SMALL_STATE(1729)] = 102857, - [SMALL_STATE(1730)] = 102882, - [SMALL_STATE(1731)] = 102907, - [SMALL_STATE(1732)] = 102932, - [SMALL_STATE(1733)] = 102957, - [SMALL_STATE(1734)] = 102982, - [SMALL_STATE(1735)] = 103011, - [SMALL_STATE(1736)] = 103040, - [SMALL_STATE(1737)] = 103065, - [SMALL_STATE(1738)] = 103082, - [SMALL_STATE(1739)] = 103105, - [SMALL_STATE(1740)] = 103126, - [SMALL_STATE(1741)] = 103143, - [SMALL_STATE(1742)] = 103162, - [SMALL_STATE(1743)] = 103186, - [SMALL_STATE(1744)] = 103202, - [SMALL_STATE(1745)] = 103218, - [SMALL_STATE(1746)] = 103234, - [SMALL_STATE(1747)] = 103258, - [SMALL_STATE(1748)] = 103280, - [SMALL_STATE(1749)] = 103300, - [SMALL_STATE(1750)] = 103316, - [SMALL_STATE(1751)] = 103334, - [SMALL_STATE(1752)] = 103356, - [SMALL_STATE(1753)] = 103374, - [SMALL_STATE(1754)] = 103394, - [SMALL_STATE(1755)] = 103418, - [SMALL_STATE(1756)] = 103436, - [SMALL_STATE(1757)] = 103456, - [SMALL_STATE(1758)] = 103480, - [SMALL_STATE(1759)] = 103502, - [SMALL_STATE(1760)] = 103526, - [SMALL_STATE(1761)] = 103556, - [SMALL_STATE(1762)] = 103580, - [SMALL_STATE(1763)] = 103604, - [SMALL_STATE(1764)] = 103628, - [SMALL_STATE(1765)] = 103652, - [SMALL_STATE(1766)] = 103672, - [SMALL_STATE(1767)] = 103696, - [SMALL_STATE(1768)] = 103714, - [SMALL_STATE(1769)] = 103736, - [SMALL_STATE(1770)] = 103760, - [SMALL_STATE(1771)] = 103784, - [SMALL_STATE(1772)] = 103806, - [SMALL_STATE(1773)] = 103826, - [SMALL_STATE(1774)] = 103842, - [SMALL_STATE(1775)] = 103862, - [SMALL_STATE(1776)] = 103880, - [SMALL_STATE(1777)] = 103896, - [SMALL_STATE(1778)] = 103920, - [SMALL_STATE(1779)] = 103941, - [SMALL_STATE(1780)] = 103962, - [SMALL_STATE(1781)] = 103991, - [SMALL_STATE(1782)] = 104014, - [SMALL_STATE(1783)] = 104033, - [SMALL_STATE(1784)] = 104054, - [SMALL_STATE(1785)] = 104069, - [SMALL_STATE(1786)] = 104086, - [SMALL_STATE(1787)] = 104107, - [SMALL_STATE(1788)] = 104124, - [SMALL_STATE(1789)] = 104153, - [SMALL_STATE(1790)] = 104174, - [SMALL_STATE(1791)] = 104195, - [SMALL_STATE(1792)] = 104220, - [SMALL_STATE(1793)] = 104249, - [SMALL_STATE(1794)] = 104278, - [SMALL_STATE(1795)] = 104299, - [SMALL_STATE(1796)] = 104320, - [SMALL_STATE(1797)] = 104343, - [SMALL_STATE(1798)] = 104364, - [SMALL_STATE(1799)] = 104393, - [SMALL_STATE(1800)] = 104420, - [SMALL_STATE(1801)] = 104443, - [SMALL_STATE(1802)] = 104472, - [SMALL_STATE(1803)] = 104499, - [SMALL_STATE(1804)] = 104520, - [SMALL_STATE(1805)] = 104543, - [SMALL_STATE(1806)] = 104564, - [SMALL_STATE(1807)] = 104587, - [SMALL_STATE(1808)] = 104604, - [SMALL_STATE(1809)] = 104623, - [SMALL_STATE(1810)] = 104650, - [SMALL_STATE(1811)] = 104671, - [SMALL_STATE(1812)] = 104696, - [SMALL_STATE(1813)] = 104723, - [SMALL_STATE(1814)] = 104750, - [SMALL_STATE(1815)] = 104775, - [SMALL_STATE(1816)] = 104804, - [SMALL_STATE(1817)] = 104831, - [SMALL_STATE(1818)] = 104860, - [SMALL_STATE(1819)] = 104887, - [SMALL_STATE(1820)] = 104912, - [SMALL_STATE(1821)] = 104933, - [SMALL_STATE(1822)] = 104956, - [SMALL_STATE(1823)] = 104977, - [SMALL_STATE(1824)] = 105006, - [SMALL_STATE(1825)] = 105031, - [SMALL_STATE(1826)] = 105058, - [SMALL_STATE(1827)] = 105087, - [SMALL_STATE(1828)] = 105112, - [SMALL_STATE(1829)] = 105135, - [SMALL_STATE(1830)] = 105157, - [SMALL_STATE(1831)] = 105175, - [SMALL_STATE(1832)] = 105191, - [SMALL_STATE(1833)] = 105217, - [SMALL_STATE(1834)] = 105239, - [SMALL_STATE(1835)] = 105257, - [SMALL_STATE(1836)] = 105277, - [SMALL_STATE(1837)] = 105299, - [SMALL_STATE(1838)] = 105317, - [SMALL_STATE(1839)] = 105337, - [SMALL_STATE(1840)] = 105355, - [SMALL_STATE(1841)] = 105381, - [SMALL_STATE(1842)] = 105403, - [SMALL_STATE(1843)] = 105429, - [SMALL_STATE(1844)] = 105447, - [SMALL_STATE(1845)] = 105469, - [SMALL_STATE(1846)] = 105487, - [SMALL_STATE(1847)] = 105513, - [SMALL_STATE(1848)] = 105531, - [SMALL_STATE(1849)] = 105557, - [SMALL_STATE(1850)] = 105583, - [SMALL_STATE(1851)] = 105607, - [SMALL_STATE(1852)] = 105625, - [SMALL_STATE(1853)] = 105643, - [SMALL_STATE(1854)] = 105669, - [SMALL_STATE(1855)] = 105695, - [SMALL_STATE(1856)] = 105721, - [SMALL_STATE(1857)] = 105743, - [SMALL_STATE(1858)] = 105769, - [SMALL_STATE(1859)] = 105791, - [SMALL_STATE(1860)] = 105809, - [SMALL_STATE(1861)] = 105831, - [SMALL_STATE(1862)] = 105857, - [SMALL_STATE(1863)] = 105883, - [SMALL_STATE(1864)] = 105909, - [SMALL_STATE(1865)] = 105933, - [SMALL_STATE(1866)] = 105959, - [SMALL_STATE(1867)] = 105985, - [SMALL_STATE(1868)] = 106011, - [SMALL_STATE(1869)] = 106029, - [SMALL_STATE(1870)] = 106045, - [SMALL_STATE(1871)] = 106067, - [SMALL_STATE(1872)] = 106089, - [SMALL_STATE(1873)] = 106115, - [SMALL_STATE(1874)] = 106135, - [SMALL_STATE(1875)] = 106157, - [SMALL_STATE(1876)] = 106183, - [SMALL_STATE(1877)] = 106207, - [SMALL_STATE(1878)] = 106225, - [SMALL_STATE(1879)] = 106249, - [SMALL_STATE(1880)] = 106270, - [SMALL_STATE(1881)] = 106283, - [SMALL_STATE(1882)] = 106306, - [SMALL_STATE(1883)] = 106323, - [SMALL_STATE(1884)] = 106338, - [SMALL_STATE(1885)] = 106359, - [SMALL_STATE(1886)] = 106374, - [SMALL_STATE(1887)] = 106395, - [SMALL_STATE(1888)] = 106412, - [SMALL_STATE(1889)] = 106425, - [SMALL_STATE(1890)] = 106444, - [SMALL_STATE(1891)] = 106465, - [SMALL_STATE(1892)] = 106488, - [SMALL_STATE(1893)] = 106505, - [SMALL_STATE(1894)] = 106522, - [SMALL_STATE(1895)] = 106539, - [SMALL_STATE(1896)] = 106556, - [SMALL_STATE(1897)] = 106573, - [SMALL_STATE(1898)] = 106586, - [SMALL_STATE(1899)] = 106601, - [SMALL_STATE(1900)] = 106614, - [SMALL_STATE(1901)] = 106629, - [SMALL_STATE(1902)] = 106646, - [SMALL_STATE(1903)] = 106659, - [SMALL_STATE(1904)] = 106680, - [SMALL_STATE(1905)] = 106701, - [SMALL_STATE(1906)] = 106718, - [SMALL_STATE(1907)] = 106735, - [SMALL_STATE(1908)] = 106748, - [SMALL_STATE(1909)] = 106769, - [SMALL_STATE(1910)] = 106786, - [SMALL_STATE(1911)] = 106807, - [SMALL_STATE(1912)] = 106830, - [SMALL_STATE(1913)] = 106847, - [SMALL_STATE(1914)] = 106860, - [SMALL_STATE(1915)] = 106877, - [SMALL_STATE(1916)] = 106892, - [SMALL_STATE(1917)] = 106909, - [SMALL_STATE(1918)] = 106922, - [SMALL_STATE(1919)] = 106935, - [SMALL_STATE(1920)] = 106956, - [SMALL_STATE(1921)] = 106969, - [SMALL_STATE(1922)] = 106990, - [SMALL_STATE(1923)] = 107011, - [SMALL_STATE(1924)] = 107032, - [SMALL_STATE(1925)] = 107045, - [SMALL_STATE(1926)] = 107058, - [SMALL_STATE(1927)] = 107075, - [SMALL_STATE(1928)] = 107088, - [SMALL_STATE(1929)] = 107109, - [SMALL_STATE(1930)] = 107122, - [SMALL_STATE(1931)] = 107135, - [SMALL_STATE(1932)] = 107152, - [SMALL_STATE(1933)] = 107165, - [SMALL_STATE(1934)] = 107182, - [SMALL_STATE(1935)] = 107199, - [SMALL_STATE(1936)] = 107212, - [SMALL_STATE(1937)] = 107233, - [SMALL_STATE(1938)] = 107254, - [SMALL_STATE(1939)] = 107271, - [SMALL_STATE(1940)] = 107292, - [SMALL_STATE(1941)] = 107309, - [SMALL_STATE(1942)] = 107330, - [SMALL_STATE(1943)] = 107353, - [SMALL_STATE(1944)] = 107368, - [SMALL_STATE(1945)] = 107385, - [SMALL_STATE(1946)] = 107402, - [SMALL_STATE(1947)] = 107425, - [SMALL_STATE(1948)] = 107446, - [SMALL_STATE(1949)] = 107467, - [SMALL_STATE(1950)] = 107482, - [SMALL_STATE(1951)] = 107505, - [SMALL_STATE(1952)] = 107522, - [SMALL_STATE(1953)] = 107543, - [SMALL_STATE(1954)] = 107560, - [SMALL_STATE(1955)] = 107577, - [SMALL_STATE(1956)] = 107594, - [SMALL_STATE(1957)] = 107617, - [SMALL_STATE(1958)] = 107634, - [SMALL_STATE(1959)] = 107651, - [SMALL_STATE(1960)] = 107672, - [SMALL_STATE(1961)] = 107693, - [SMALL_STATE(1962)] = 107714, - [SMALL_STATE(1963)] = 107735, - [SMALL_STATE(1964)] = 107756, - [SMALL_STATE(1965)] = 107769, - [SMALL_STATE(1966)] = 107786, - [SMALL_STATE(1967)] = 107807, - [SMALL_STATE(1968)] = 107824, - [SMALL_STATE(1969)] = 107837, - [SMALL_STATE(1970)] = 107854, - [SMALL_STATE(1971)] = 107871, - [SMALL_STATE(1972)] = 107892, - [SMALL_STATE(1973)] = 107909, - [SMALL_STATE(1974)] = 107930, - [SMALL_STATE(1975)] = 107951, - [SMALL_STATE(1976)] = 107972, - [SMALL_STATE(1977)] = 107985, - [SMALL_STATE(1978)] = 108006, - [SMALL_STATE(1979)] = 108027, - [SMALL_STATE(1980)] = 108040, - [SMALL_STATE(1981)] = 108059, - [SMALL_STATE(1982)] = 108072, - [SMALL_STATE(1983)] = 108089, - [SMALL_STATE(1984)] = 108106, - [SMALL_STATE(1985)] = 108123, - [SMALL_STATE(1986)] = 108138, - [SMALL_STATE(1987)] = 108151, - [SMALL_STATE(1988)] = 108164, - [SMALL_STATE(1989)] = 108176, - [SMALL_STATE(1990)] = 108188, - [SMALL_STATE(1991)] = 108204, - [SMALL_STATE(1992)] = 108218, - [SMALL_STATE(1993)] = 108234, - [SMALL_STATE(1994)] = 108246, - [SMALL_STATE(1995)] = 108264, - [SMALL_STATE(1996)] = 108282, - [SMALL_STATE(1997)] = 108300, - [SMALL_STATE(1998)] = 108312, - [SMALL_STATE(1999)] = 108332, - [SMALL_STATE(2000)] = 108348, - [SMALL_STATE(2001)] = 108362, - [SMALL_STATE(2002)] = 108382, - [SMALL_STATE(2003)] = 108398, - [SMALL_STATE(2004)] = 108416, - [SMALL_STATE(2005)] = 108436, - [SMALL_STATE(2006)] = 108448, - [SMALL_STATE(2007)] = 108468, - [SMALL_STATE(2008)] = 108488, - [SMALL_STATE(2009)] = 108504, - [SMALL_STATE(2010)] = 108516, - [SMALL_STATE(2011)] = 108528, - [SMALL_STATE(2012)] = 108540, - [SMALL_STATE(2013)] = 108552, - [SMALL_STATE(2014)] = 108570, - [SMALL_STATE(2015)] = 108588, - [SMALL_STATE(2016)] = 108600, - [SMALL_STATE(2017)] = 108612, - [SMALL_STATE(2018)] = 108624, - [SMALL_STATE(2019)] = 108644, - [SMALL_STATE(2020)] = 108664, - [SMALL_STATE(2021)] = 108684, - [SMALL_STATE(2022)] = 108700, - [SMALL_STATE(2023)] = 108720, - [SMALL_STATE(2024)] = 108740, - [SMALL_STATE(2025)] = 108752, - [SMALL_STATE(2026)] = 108770, - [SMALL_STATE(2027)] = 108782, - [SMALL_STATE(2028)] = 108800, - [SMALL_STATE(2029)] = 108818, - [SMALL_STATE(2030)] = 108838, - [SMALL_STATE(2031)] = 108850, - [SMALL_STATE(2032)] = 108862, - [SMALL_STATE(2033)] = 108874, - [SMALL_STATE(2034)] = 108890, - [SMALL_STATE(2035)] = 108904, - [SMALL_STATE(2036)] = 108920, - [SMALL_STATE(2037)] = 108932, - [SMALL_STATE(2038)] = 108944, - [SMALL_STATE(2039)] = 108964, - [SMALL_STATE(2040)] = 108976, - [SMALL_STATE(2041)] = 108996, - [SMALL_STATE(2042)] = 109012, - [SMALL_STATE(2043)] = 109024, - [SMALL_STATE(2044)] = 109036, - [SMALL_STATE(2045)] = 109048, - [SMALL_STATE(2046)] = 109060, - [SMALL_STATE(2047)] = 109078, - [SMALL_STATE(2048)] = 109094, - [SMALL_STATE(2049)] = 109108, - [SMALL_STATE(2050)] = 109124, - [SMALL_STATE(2051)] = 109136, - [SMALL_STATE(2052)] = 109156, - [SMALL_STATE(2053)] = 109168, - [SMALL_STATE(2054)] = 109186, - [SMALL_STATE(2055)] = 109198, - [SMALL_STATE(2056)] = 109210, - [SMALL_STATE(2057)] = 109222, - [SMALL_STATE(2058)] = 109234, - [SMALL_STATE(2059)] = 109254, - [SMALL_STATE(2060)] = 109266, - [SMALL_STATE(2061)] = 109284, - [SMALL_STATE(2062)] = 109304, - [SMALL_STATE(2063)] = 109322, - [SMALL_STATE(2064)] = 109334, - [SMALL_STATE(2065)] = 109354, - [SMALL_STATE(2066)] = 109368, - [SMALL_STATE(2067)] = 109380, - [SMALL_STATE(2068)] = 109396, - [SMALL_STATE(2069)] = 109408, - [SMALL_STATE(2070)] = 109420, - [SMALL_STATE(2071)] = 109440, - [SMALL_STATE(2072)] = 109452, - [SMALL_STATE(2073)] = 109464, - [SMALL_STATE(2074)] = 109476, - [SMALL_STATE(2075)] = 109488, - [SMALL_STATE(2076)] = 109500, - [SMALL_STATE(2077)] = 109520, - [SMALL_STATE(2078)] = 109532, - [SMALL_STATE(2079)] = 109544, - [SMALL_STATE(2080)] = 109564, - [SMALL_STATE(2081)] = 109584, - [SMALL_STATE(2082)] = 109596, - [SMALL_STATE(2083)] = 109616, - [SMALL_STATE(2084)] = 109628, - [SMALL_STATE(2085)] = 109640, - [SMALL_STATE(2086)] = 109660, - [SMALL_STATE(2087)] = 109680, - [SMALL_STATE(2088)] = 109700, - [SMALL_STATE(2089)] = 109720, - [SMALL_STATE(2090)] = 109740, - [SMALL_STATE(2091)] = 109752, - [SMALL_STATE(2092)] = 109768, - [SMALL_STATE(2093)] = 109780, - [SMALL_STATE(2094)] = 109800, - [SMALL_STATE(2095)] = 109814, - [SMALL_STATE(2096)] = 109834, - [SMALL_STATE(2097)] = 109846, - [SMALL_STATE(2098)] = 109858, - [SMALL_STATE(2099)] = 109874, - [SMALL_STATE(2100)] = 109886, - [SMALL_STATE(2101)] = 109898, - [SMALL_STATE(2102)] = 109918, - [SMALL_STATE(2103)] = 109930, - [SMALL_STATE(2104)] = 109942, - [SMALL_STATE(2105)] = 109954, - [SMALL_STATE(2106)] = 109974, - [SMALL_STATE(2107)] = 109986, - [SMALL_STATE(2108)] = 110002, - [SMALL_STATE(2109)] = 110017, - [SMALL_STATE(2110)] = 110034, - [SMALL_STATE(2111)] = 110049, - [SMALL_STATE(2112)] = 110060, - [SMALL_STATE(2113)] = 110071, - [SMALL_STATE(2114)] = 110082, - [SMALL_STATE(2115)] = 110093, - [SMALL_STATE(2116)] = 110110, - [SMALL_STATE(2117)] = 110121, - [SMALL_STATE(2118)] = 110138, - [SMALL_STATE(2119)] = 110149, - [SMALL_STATE(2120)] = 110160, - [SMALL_STATE(2121)] = 110177, - [SMALL_STATE(2122)] = 110194, - [SMALL_STATE(2123)] = 110205, - [SMALL_STATE(2124)] = 110216, - [SMALL_STATE(2125)] = 110227, - [SMALL_STATE(2126)] = 110238, - [SMALL_STATE(2127)] = 110249, - [SMALL_STATE(2128)] = 110260, - [SMALL_STATE(2129)] = 110277, - [SMALL_STATE(2130)] = 110288, - [SMALL_STATE(2131)] = 110299, - [SMALL_STATE(2132)] = 110316, - [SMALL_STATE(2133)] = 110327, - [SMALL_STATE(2134)] = 110338, - [SMALL_STATE(2135)] = 110349, - [SMALL_STATE(2136)] = 110360, - [SMALL_STATE(2137)] = 110371, - [SMALL_STATE(2138)] = 110386, - [SMALL_STATE(2139)] = 110397, - [SMALL_STATE(2140)] = 110408, - [SMALL_STATE(2141)] = 110419, - [SMALL_STATE(2142)] = 110436, - [SMALL_STATE(2143)] = 110449, - [SMALL_STATE(2144)] = 110460, - [SMALL_STATE(2145)] = 110471, - [SMALL_STATE(2146)] = 110482, - [SMALL_STATE(2147)] = 110493, - [SMALL_STATE(2148)] = 110504, - [SMALL_STATE(2149)] = 110515, - [SMALL_STATE(2150)] = 110526, - [SMALL_STATE(2151)] = 110543, - [SMALL_STATE(2152)] = 110554, - [SMALL_STATE(2153)] = 110571, - [SMALL_STATE(2154)] = 110586, - [SMALL_STATE(2155)] = 110597, - [SMALL_STATE(2156)] = 110612, - [SMALL_STATE(2157)] = 110629, - [SMALL_STATE(2158)] = 110646, - [SMALL_STATE(2159)] = 110663, - [SMALL_STATE(2160)] = 110674, - [SMALL_STATE(2161)] = 110691, - [SMALL_STATE(2162)] = 110702, - [SMALL_STATE(2163)] = 110713, - [SMALL_STATE(2164)] = 110726, - [SMALL_STATE(2165)] = 110737, - [SMALL_STATE(2166)] = 110754, - [SMALL_STATE(2167)] = 110771, - [SMALL_STATE(2168)] = 110786, - [SMALL_STATE(2169)] = 110797, - [SMALL_STATE(2170)] = 110808, - [SMALL_STATE(2171)] = 110823, - [SMALL_STATE(2172)] = 110834, - [SMALL_STATE(2173)] = 110851, - [SMALL_STATE(2174)] = 110866, - [SMALL_STATE(2175)] = 110881, - [SMALL_STATE(2176)] = 110898, - [SMALL_STATE(2177)] = 110909, - [SMALL_STATE(2178)] = 110926, - [SMALL_STATE(2179)] = 110937, - [SMALL_STATE(2180)] = 110948, - [SMALL_STATE(2181)] = 110959, - [SMALL_STATE(2182)] = 110976, - [SMALL_STATE(2183)] = 110987, - [SMALL_STATE(2184)] = 111002, - [SMALL_STATE(2185)] = 111013, - [SMALL_STATE(2186)] = 111024, - [SMALL_STATE(2187)] = 111035, - [SMALL_STATE(2188)] = 111048, - [SMALL_STATE(2189)] = 111059, - [SMALL_STATE(2190)] = 111070, - [SMALL_STATE(2191)] = 111081, - [SMALL_STATE(2192)] = 111092, - [SMALL_STATE(2193)] = 111107, - [SMALL_STATE(2194)] = 111122, - [SMALL_STATE(2195)] = 111133, - [SMALL_STATE(2196)] = 111148, - [SMALL_STATE(2197)] = 111159, - [SMALL_STATE(2198)] = 111170, - [SMALL_STATE(2199)] = 111181, - [SMALL_STATE(2200)] = 111198, - [SMALL_STATE(2201)] = 111215, - [SMALL_STATE(2202)] = 111232, - [SMALL_STATE(2203)] = 111243, - [SMALL_STATE(2204)] = 111254, - [SMALL_STATE(2205)] = 111265, - [SMALL_STATE(2206)] = 111276, - [SMALL_STATE(2207)] = 111291, - [SMALL_STATE(2208)] = 111302, - [SMALL_STATE(2209)] = 111313, - [SMALL_STATE(2210)] = 111328, - [SMALL_STATE(2211)] = 111339, - [SMALL_STATE(2212)] = 111350, - [SMALL_STATE(2213)] = 111361, - [SMALL_STATE(2214)] = 111376, - [SMALL_STATE(2215)] = 111391, - [SMALL_STATE(2216)] = 111408, - [SMALL_STATE(2217)] = 111425, - [SMALL_STATE(2218)] = 111442, - [SMALL_STATE(2219)] = 111453, - [SMALL_STATE(2220)] = 111464, - [SMALL_STATE(2221)] = 111479, - [SMALL_STATE(2222)] = 111496, - [SMALL_STATE(2223)] = 111513, - [SMALL_STATE(2224)] = 111530, - [SMALL_STATE(2225)] = 111547, - [SMALL_STATE(2226)] = 111564, - [SMALL_STATE(2227)] = 111575, - [SMALL_STATE(2228)] = 111592, - [SMALL_STATE(2229)] = 111603, - [SMALL_STATE(2230)] = 111618, - [SMALL_STATE(2231)] = 111633, - [SMALL_STATE(2232)] = 111644, - [SMALL_STATE(2233)] = 111655, - [SMALL_STATE(2234)] = 111666, - [SMALL_STATE(2235)] = 111677, - [SMALL_STATE(2236)] = 111688, - [SMALL_STATE(2237)] = 111699, - [SMALL_STATE(2238)] = 111709, - [SMALL_STATE(2239)] = 111723, - [SMALL_STATE(2240)] = 111737, - [SMALL_STATE(2241)] = 111749, - [SMALL_STATE(2242)] = 111763, - [SMALL_STATE(2243)] = 111777, - [SMALL_STATE(2244)] = 111791, - [SMALL_STATE(2245)] = 111805, - [SMALL_STATE(2246)] = 111819, - [SMALL_STATE(2247)] = 111833, - [SMALL_STATE(2248)] = 111847, - [SMALL_STATE(2249)] = 111861, - [SMALL_STATE(2250)] = 111875, - [SMALL_STATE(2251)] = 111889, - [SMALL_STATE(2252)] = 111903, - [SMALL_STATE(2253)] = 111917, - [SMALL_STATE(2254)] = 111931, - [SMALL_STATE(2255)] = 111945, - [SMALL_STATE(2256)] = 111959, - [SMALL_STATE(2257)] = 111971, - [SMALL_STATE(2258)] = 111985, - [SMALL_STATE(2259)] = 111999, - [SMALL_STATE(2260)] = 112013, - [SMALL_STATE(2261)] = 112027, - [SMALL_STATE(2262)] = 112041, - [SMALL_STATE(2263)] = 112055, - [SMALL_STATE(2264)] = 112067, - [SMALL_STATE(2265)] = 112081, - [SMALL_STATE(2266)] = 112093, - [SMALL_STATE(2267)] = 112105, - [SMALL_STATE(2268)] = 112119, - [SMALL_STATE(2269)] = 112133, - [SMALL_STATE(2270)] = 112143, - [SMALL_STATE(2271)] = 112157, - [SMALL_STATE(2272)] = 112171, - [SMALL_STATE(2273)] = 112185, - [SMALL_STATE(2274)] = 112199, - [SMALL_STATE(2275)] = 112213, - [SMALL_STATE(2276)] = 112227, - [SMALL_STATE(2277)] = 112241, - [SMALL_STATE(2278)] = 112255, - [SMALL_STATE(2279)] = 112267, - [SMALL_STATE(2280)] = 112281, - [SMALL_STATE(2281)] = 112293, - [SMALL_STATE(2282)] = 112307, - [SMALL_STATE(2283)] = 112319, - [SMALL_STATE(2284)] = 112333, - [SMALL_STATE(2285)] = 112347, - [SMALL_STATE(2286)] = 112361, - [SMALL_STATE(2287)] = 112371, - [SMALL_STATE(2288)] = 112383, - [SMALL_STATE(2289)] = 112397, - [SMALL_STATE(2290)] = 112409, - [SMALL_STATE(2291)] = 112423, - [SMALL_STATE(2292)] = 112437, - [SMALL_STATE(2293)] = 112451, - [SMALL_STATE(2294)] = 112465, - [SMALL_STATE(2295)] = 112479, - [SMALL_STATE(2296)] = 112493, - [SMALL_STATE(2297)] = 112507, - [SMALL_STATE(2298)] = 112521, - [SMALL_STATE(2299)] = 112535, - [SMALL_STATE(2300)] = 112545, - [SMALL_STATE(2301)] = 112559, - [SMALL_STATE(2302)] = 112573, - [SMALL_STATE(2303)] = 112587, - [SMALL_STATE(2304)] = 112601, - [SMALL_STATE(2305)] = 112615, - [SMALL_STATE(2306)] = 112629, - [SMALL_STATE(2307)] = 112641, - [SMALL_STATE(2308)] = 112655, - [SMALL_STATE(2309)] = 112669, - [SMALL_STATE(2310)] = 112683, - [SMALL_STATE(2311)] = 112697, - [SMALL_STATE(2312)] = 112711, - [SMALL_STATE(2313)] = 112725, - [SMALL_STATE(2314)] = 112739, - [SMALL_STATE(2315)] = 112753, - [SMALL_STATE(2316)] = 112767, - [SMALL_STATE(2317)] = 112781, - [SMALL_STATE(2318)] = 112795, - [SMALL_STATE(2319)] = 112805, - [SMALL_STATE(2320)] = 112819, - [SMALL_STATE(2321)] = 112833, - [SMALL_STATE(2322)] = 112847, - [SMALL_STATE(2323)] = 112861, - [SMALL_STATE(2324)] = 112875, - [SMALL_STATE(2325)] = 112889, - [SMALL_STATE(2326)] = 112903, - [SMALL_STATE(2327)] = 112917, - [SMALL_STATE(2328)] = 112931, - [SMALL_STATE(2329)] = 112945, - [SMALL_STATE(2330)] = 112959, - [SMALL_STATE(2331)] = 112973, - [SMALL_STATE(2332)] = 112985, - [SMALL_STATE(2333)] = 112995, - [SMALL_STATE(2334)] = 113009, - [SMALL_STATE(2335)] = 113023, - [SMALL_STATE(2336)] = 113037, - [SMALL_STATE(2337)] = 113051, - [SMALL_STATE(2338)] = 113065, - [SMALL_STATE(2339)] = 113079, - [SMALL_STATE(2340)] = 113093, - [SMALL_STATE(2341)] = 113105, - [SMALL_STATE(2342)] = 113119, - [SMALL_STATE(2343)] = 113131, - [SMALL_STATE(2344)] = 113145, - [SMALL_STATE(2345)] = 113159, - [SMALL_STATE(2346)] = 113173, - [SMALL_STATE(2347)] = 113187, - [SMALL_STATE(2348)] = 113201, - [SMALL_STATE(2349)] = 113215, - [SMALL_STATE(2350)] = 113229, - [SMALL_STATE(2351)] = 113241, - [SMALL_STATE(2352)] = 113255, - [SMALL_STATE(2353)] = 113269, - [SMALL_STATE(2354)] = 113283, - [SMALL_STATE(2355)] = 113297, - [SMALL_STATE(2356)] = 113311, - [SMALL_STATE(2357)] = 113325, - [SMALL_STATE(2358)] = 113339, - [SMALL_STATE(2359)] = 113353, - [SMALL_STATE(2360)] = 113367, - [SMALL_STATE(2361)] = 113381, - [SMALL_STATE(2362)] = 113391, - [SMALL_STATE(2363)] = 113401, - [SMALL_STATE(2364)] = 113413, - [SMALL_STATE(2365)] = 113427, - [SMALL_STATE(2366)] = 113441, - [SMALL_STATE(2367)] = 113455, - [SMALL_STATE(2368)] = 113469, - [SMALL_STATE(2369)] = 113483, - [SMALL_STATE(2370)] = 113497, - [SMALL_STATE(2371)] = 113511, - [SMALL_STATE(2372)] = 113521, - [SMALL_STATE(2373)] = 113535, - [SMALL_STATE(2374)] = 113549, - [SMALL_STATE(2375)] = 113563, - [SMALL_STATE(2376)] = 113577, - [SMALL_STATE(2377)] = 113591, - [SMALL_STATE(2378)] = 113605, - [SMALL_STATE(2379)] = 113619, - [SMALL_STATE(2380)] = 113633, - [SMALL_STATE(2381)] = 113647, - [SMALL_STATE(2382)] = 113661, - [SMALL_STATE(2383)] = 113673, - [SMALL_STATE(2384)] = 113685, - [SMALL_STATE(2385)] = 113697, - [SMALL_STATE(2386)] = 113709, - [SMALL_STATE(2387)] = 113719, - [SMALL_STATE(2388)] = 113733, - [SMALL_STATE(2389)] = 113747, - [SMALL_STATE(2390)] = 113761, - [SMALL_STATE(2391)] = 113775, - [SMALL_STATE(2392)] = 113789, - [SMALL_STATE(2393)] = 113803, - [SMALL_STATE(2394)] = 113817, - [SMALL_STATE(2395)] = 113831, - [SMALL_STATE(2396)] = 113845, - [SMALL_STATE(2397)] = 113859, - [SMALL_STATE(2398)] = 113873, - [SMALL_STATE(2399)] = 113887, - [SMALL_STATE(2400)] = 113901, - [SMALL_STATE(2401)] = 113915, - [SMALL_STATE(2402)] = 113929, - [SMALL_STATE(2403)] = 113943, - [SMALL_STATE(2404)] = 113957, - [SMALL_STATE(2405)] = 113971, - [SMALL_STATE(2406)] = 113985, - [SMALL_STATE(2407)] = 113999, - [SMALL_STATE(2408)] = 114013, - [SMALL_STATE(2409)] = 114027, - [SMALL_STATE(2410)] = 114041, - [SMALL_STATE(2411)] = 114055, - [SMALL_STATE(2412)] = 114065, - [SMALL_STATE(2413)] = 114079, - [SMALL_STATE(2414)] = 114093, - [SMALL_STATE(2415)] = 114107, - [SMALL_STATE(2416)] = 114121, - [SMALL_STATE(2417)] = 114135, - [SMALL_STATE(2418)] = 114149, - [SMALL_STATE(2419)] = 114163, - [SMALL_STATE(2420)] = 114177, - [SMALL_STATE(2421)] = 114191, - [SMALL_STATE(2422)] = 114205, - [SMALL_STATE(2423)] = 114219, - [SMALL_STATE(2424)] = 114229, - [SMALL_STATE(2425)] = 114243, - [SMALL_STATE(2426)] = 114257, - [SMALL_STATE(2427)] = 114271, - [SMALL_STATE(2428)] = 114285, - [SMALL_STATE(2429)] = 114299, - [SMALL_STATE(2430)] = 114311, - [SMALL_STATE(2431)] = 114325, - [SMALL_STATE(2432)] = 114339, - [SMALL_STATE(2433)] = 114353, - [SMALL_STATE(2434)] = 114367, - [SMALL_STATE(2435)] = 114381, - [SMALL_STATE(2436)] = 114395, - [SMALL_STATE(2437)] = 114409, - [SMALL_STATE(2438)] = 114423, - [SMALL_STATE(2439)] = 114437, - [SMALL_STATE(2440)] = 114451, - [SMALL_STATE(2441)] = 114465, - [SMALL_STATE(2442)] = 114475, - [SMALL_STATE(2443)] = 114489, - [SMALL_STATE(2444)] = 114503, - [SMALL_STATE(2445)] = 114517, - [SMALL_STATE(2446)] = 114531, - [SMALL_STATE(2447)] = 114545, - [SMALL_STATE(2448)] = 114559, - [SMALL_STATE(2449)] = 114573, - [SMALL_STATE(2450)] = 114587, - [SMALL_STATE(2451)] = 114601, - [SMALL_STATE(2452)] = 114615, - [SMALL_STATE(2453)] = 114627, - [SMALL_STATE(2454)] = 114641, - [SMALL_STATE(2455)] = 114655, - [SMALL_STATE(2456)] = 114669, - [SMALL_STATE(2457)] = 114683, - [SMALL_STATE(2458)] = 114697, - [SMALL_STATE(2459)] = 114711, - [SMALL_STATE(2460)] = 114721, - [SMALL_STATE(2461)] = 114735, - [SMALL_STATE(2462)] = 114749, - [SMALL_STATE(2463)] = 114763, - [SMALL_STATE(2464)] = 114777, - [SMALL_STATE(2465)] = 114791, - [SMALL_STATE(2466)] = 114805, - [SMALL_STATE(2467)] = 114819, - [SMALL_STATE(2468)] = 114833, - [SMALL_STATE(2469)] = 114847, - [SMALL_STATE(2470)] = 114861, - [SMALL_STATE(2471)] = 114873, - [SMALL_STATE(2472)] = 114887, - [SMALL_STATE(2473)] = 114901, - [SMALL_STATE(2474)] = 114915, - [SMALL_STATE(2475)] = 114929, - [SMALL_STATE(2476)] = 114943, - [SMALL_STATE(2477)] = 114957, - [SMALL_STATE(2478)] = 114971, - [SMALL_STATE(2479)] = 114985, - [SMALL_STATE(2480)] = 114999, - [SMALL_STATE(2481)] = 115013, - [SMALL_STATE(2482)] = 115027, - [SMALL_STATE(2483)] = 115041, - [SMALL_STATE(2484)] = 115055, - [SMALL_STATE(2485)] = 115067, - [SMALL_STATE(2486)] = 115081, - [SMALL_STATE(2487)] = 115095, - [SMALL_STATE(2488)] = 115109, - [SMALL_STATE(2489)] = 115123, - [SMALL_STATE(2490)] = 115137, - [SMALL_STATE(2491)] = 115151, - [SMALL_STATE(2492)] = 115165, - [SMALL_STATE(2493)] = 115179, - [SMALL_STATE(2494)] = 115188, - [SMALL_STATE(2495)] = 115197, - [SMALL_STATE(2496)] = 115206, - [SMALL_STATE(2497)] = 115215, - [SMALL_STATE(2498)] = 115224, - [SMALL_STATE(2499)] = 115233, - [SMALL_STATE(2500)] = 115244, - [SMALL_STATE(2501)] = 115253, - [SMALL_STATE(2502)] = 115262, - [SMALL_STATE(2503)] = 115273, - [SMALL_STATE(2504)] = 115282, - [SMALL_STATE(2505)] = 115291, - [SMALL_STATE(2506)] = 115300, - [SMALL_STATE(2507)] = 115309, - [SMALL_STATE(2508)] = 115318, - [SMALL_STATE(2509)] = 115327, - [SMALL_STATE(2510)] = 115338, - [SMALL_STATE(2511)] = 115347, - [SMALL_STATE(2512)] = 115356, - [SMALL_STATE(2513)] = 115365, - [SMALL_STATE(2514)] = 115374, - [SMALL_STATE(2515)] = 115383, - [SMALL_STATE(2516)] = 115392, - [SMALL_STATE(2517)] = 115401, - [SMALL_STATE(2518)] = 115412, - [SMALL_STATE(2519)] = 115421, - [SMALL_STATE(2520)] = 115430, - [SMALL_STATE(2521)] = 115439, - [SMALL_STATE(2522)] = 115448, - [SMALL_STATE(2523)] = 115457, - [SMALL_STATE(2524)] = 115466, - [SMALL_STATE(2525)] = 115475, - [SMALL_STATE(2526)] = 115486, - [SMALL_STATE(2527)] = 115495, - [SMALL_STATE(2528)] = 115504, - [SMALL_STATE(2529)] = 115515, - [SMALL_STATE(2530)] = 115524, - [SMALL_STATE(2531)] = 115533, - [SMALL_STATE(2532)] = 115544, - [SMALL_STATE(2533)] = 115553, - [SMALL_STATE(2534)] = 115564, - [SMALL_STATE(2535)] = 115573, - [SMALL_STATE(2536)] = 115582, - [SMALL_STATE(2537)] = 115591, - [SMALL_STATE(2538)] = 115600, - [SMALL_STATE(2539)] = 115609, - [SMALL_STATE(2540)] = 115618, - [SMALL_STATE(2541)] = 115629, - [SMALL_STATE(2542)] = 115638, - [SMALL_STATE(2543)] = 115649, - [SMALL_STATE(2544)] = 115658, - [SMALL_STATE(2545)] = 115667, - [SMALL_STATE(2546)] = 115676, - [SMALL_STATE(2547)] = 115687, - [SMALL_STATE(2548)] = 115696, - [SMALL_STATE(2549)] = 115705, - [SMALL_STATE(2550)] = 115714, - [SMALL_STATE(2551)] = 115725, - [SMALL_STATE(2552)] = 115734, - [SMALL_STATE(2553)] = 115743, - [SMALL_STATE(2554)] = 115752, - [SMALL_STATE(2555)] = 115761, - [SMALL_STATE(2556)] = 115772, - [SMALL_STATE(2557)] = 115783, - [SMALL_STATE(2558)] = 115792, - [SMALL_STATE(2559)] = 115803, - [SMALL_STATE(2560)] = 115814, - [SMALL_STATE(2561)] = 115823, - [SMALL_STATE(2562)] = 115832, - [SMALL_STATE(2563)] = 115841, - [SMALL_STATE(2564)] = 115850, - [SMALL_STATE(2565)] = 115859, - [SMALL_STATE(2566)] = 115868, - [SMALL_STATE(2567)] = 115879, - [SMALL_STATE(2568)] = 115888, - [SMALL_STATE(2569)] = 115897, - [SMALL_STATE(2570)] = 115906, - [SMALL_STATE(2571)] = 115915, - [SMALL_STATE(2572)] = 115924, - [SMALL_STATE(2573)] = 115933, - [SMALL_STATE(2574)] = 115944, - [SMALL_STATE(2575)] = 115953, - [SMALL_STATE(2576)] = 115962, - [SMALL_STATE(2577)] = 115971, - [SMALL_STATE(2578)] = 115980, - [SMALL_STATE(2579)] = 115989, - [SMALL_STATE(2580)] = 116000, - [SMALL_STATE(2581)] = 116011, - [SMALL_STATE(2582)] = 116020, - [SMALL_STATE(2583)] = 116029, - [SMALL_STATE(2584)] = 116038, - [SMALL_STATE(2585)] = 116047, - [SMALL_STATE(2586)] = 116056, - [SMALL_STATE(2587)] = 116065, - [SMALL_STATE(2588)] = 116076, - [SMALL_STATE(2589)] = 116087, - [SMALL_STATE(2590)] = 116098, - [SMALL_STATE(2591)] = 116109, - [SMALL_STATE(2592)] = 116120, - [SMALL_STATE(2593)] = 116129, - [SMALL_STATE(2594)] = 116138, - [SMALL_STATE(2595)] = 116146, - [SMALL_STATE(2596)] = 116154, - [SMALL_STATE(2597)] = 116162, - [SMALL_STATE(2598)] = 116170, - [SMALL_STATE(2599)] = 116178, - [SMALL_STATE(2600)] = 116186, - [SMALL_STATE(2601)] = 116194, - [SMALL_STATE(2602)] = 116202, - [SMALL_STATE(2603)] = 116210, - [SMALL_STATE(2604)] = 116218, - [SMALL_STATE(2605)] = 116226, - [SMALL_STATE(2606)] = 116234, - [SMALL_STATE(2607)] = 116242, - [SMALL_STATE(2608)] = 116250, - [SMALL_STATE(2609)] = 116258, - [SMALL_STATE(2610)] = 116266, - [SMALL_STATE(2611)] = 116274, - [SMALL_STATE(2612)] = 116282, - [SMALL_STATE(2613)] = 116290, - [SMALL_STATE(2614)] = 116298, - [SMALL_STATE(2615)] = 116306, - [SMALL_STATE(2616)] = 116314, - [SMALL_STATE(2617)] = 116322, - [SMALL_STATE(2618)] = 116330, - [SMALL_STATE(2619)] = 116338, - [SMALL_STATE(2620)] = 116346, - [SMALL_STATE(2621)] = 116354, - [SMALL_STATE(2622)] = 116362, - [SMALL_STATE(2623)] = 116370, - [SMALL_STATE(2624)] = 116378, - [SMALL_STATE(2625)] = 116386, - [SMALL_STATE(2626)] = 116394, - [SMALL_STATE(2627)] = 116402, - [SMALL_STATE(2628)] = 116410, - [SMALL_STATE(2629)] = 116418, - [SMALL_STATE(2630)] = 116426, - [SMALL_STATE(2631)] = 116434, - [SMALL_STATE(2632)] = 116442, - [SMALL_STATE(2633)] = 116450, - [SMALL_STATE(2634)] = 116458, - [SMALL_STATE(2635)] = 116466, - [SMALL_STATE(2636)] = 116474, - [SMALL_STATE(2637)] = 116482, - [SMALL_STATE(2638)] = 116490, - [SMALL_STATE(2639)] = 116498, - [SMALL_STATE(2640)] = 116506, - [SMALL_STATE(2641)] = 116514, - [SMALL_STATE(2642)] = 116522, - [SMALL_STATE(2643)] = 116530, - [SMALL_STATE(2644)] = 116538, - [SMALL_STATE(2645)] = 116546, - [SMALL_STATE(2646)] = 116554, - [SMALL_STATE(2647)] = 116562, - [SMALL_STATE(2648)] = 116570, - [SMALL_STATE(2649)] = 116578, - [SMALL_STATE(2650)] = 116586, - [SMALL_STATE(2651)] = 116594, - [SMALL_STATE(2652)] = 116602, - [SMALL_STATE(2653)] = 116610, - [SMALL_STATE(2654)] = 116618, - [SMALL_STATE(2655)] = 116626, - [SMALL_STATE(2656)] = 116634, - [SMALL_STATE(2657)] = 116642, - [SMALL_STATE(2658)] = 116650, - [SMALL_STATE(2659)] = 116658, - [SMALL_STATE(2660)] = 116666, - [SMALL_STATE(2661)] = 116674, - [SMALL_STATE(2662)] = 116682, - [SMALL_STATE(2663)] = 116690, - [SMALL_STATE(2664)] = 116698, - [SMALL_STATE(2665)] = 116706, - [SMALL_STATE(2666)] = 116714, - [SMALL_STATE(2667)] = 116722, - [SMALL_STATE(2668)] = 116730, - [SMALL_STATE(2669)] = 116738, - [SMALL_STATE(2670)] = 116746, - [SMALL_STATE(2671)] = 116754, - [SMALL_STATE(2672)] = 116762, - [SMALL_STATE(2673)] = 116770, - [SMALL_STATE(2674)] = 116778, - [SMALL_STATE(2675)] = 116786, - [SMALL_STATE(2676)] = 116794, - [SMALL_STATE(2677)] = 116802, - [SMALL_STATE(2678)] = 116810, - [SMALL_STATE(2679)] = 116818, - [SMALL_STATE(2680)] = 116826, - [SMALL_STATE(2681)] = 116834, - [SMALL_STATE(2682)] = 116842, - [SMALL_STATE(2683)] = 116850, - [SMALL_STATE(2684)] = 116858, - [SMALL_STATE(2685)] = 116866, - [SMALL_STATE(2686)] = 116874, - [SMALL_STATE(2687)] = 116882, - [SMALL_STATE(2688)] = 116890, - [SMALL_STATE(2689)] = 116898, - [SMALL_STATE(2690)] = 116906, - [SMALL_STATE(2691)] = 116914, - [SMALL_STATE(2692)] = 116922, - [SMALL_STATE(2693)] = 116930, - [SMALL_STATE(2694)] = 116938, - [SMALL_STATE(2695)] = 116946, - [SMALL_STATE(2696)] = 116954, - [SMALL_STATE(2697)] = 116962, - [SMALL_STATE(2698)] = 116970, - [SMALL_STATE(2699)] = 116978, - [SMALL_STATE(2700)] = 116986, - [SMALL_STATE(2701)] = 116994, - [SMALL_STATE(2702)] = 117002, - [SMALL_STATE(2703)] = 117010, - [SMALL_STATE(2704)] = 117018, - [SMALL_STATE(2705)] = 117026, - [SMALL_STATE(2706)] = 117034, - [SMALL_STATE(2707)] = 117042, - [SMALL_STATE(2708)] = 117050, - [SMALL_STATE(2709)] = 117058, - [SMALL_STATE(2710)] = 117066, - [SMALL_STATE(2711)] = 117074, - [SMALL_STATE(2712)] = 117082, - [SMALL_STATE(2713)] = 117090, - [SMALL_STATE(2714)] = 117098, - [SMALL_STATE(2715)] = 117106, - [SMALL_STATE(2716)] = 117114, - [SMALL_STATE(2717)] = 117122, - [SMALL_STATE(2718)] = 117130, - [SMALL_STATE(2719)] = 117138, - [SMALL_STATE(2720)] = 117146, - [SMALL_STATE(2721)] = 117154, - [SMALL_STATE(2722)] = 117162, - [SMALL_STATE(2723)] = 117170, - [SMALL_STATE(2724)] = 117178, - [SMALL_STATE(2725)] = 117186, - [SMALL_STATE(2726)] = 117194, - [SMALL_STATE(2727)] = 117202, - [SMALL_STATE(2728)] = 117210, - [SMALL_STATE(2729)] = 117218, - [SMALL_STATE(2730)] = 117226, - [SMALL_STATE(2731)] = 117234, - [SMALL_STATE(2732)] = 117242, - [SMALL_STATE(2733)] = 117250, - [SMALL_STATE(2734)] = 117258, - [SMALL_STATE(2735)] = 117266, - [SMALL_STATE(2736)] = 117274, - [SMALL_STATE(2737)] = 117282, - [SMALL_STATE(2738)] = 117290, - [SMALL_STATE(2739)] = 117298, - [SMALL_STATE(2740)] = 117306, - [SMALL_STATE(2741)] = 117314, - [SMALL_STATE(2742)] = 117322, - [SMALL_STATE(2743)] = 117330, - [SMALL_STATE(2744)] = 117338, - [SMALL_STATE(2745)] = 117346, - [SMALL_STATE(2746)] = 117354, - [SMALL_STATE(2747)] = 117362, - [SMALL_STATE(2748)] = 117370, - [SMALL_STATE(2749)] = 117378, - [SMALL_STATE(2750)] = 117386, - [SMALL_STATE(2751)] = 117394, - [SMALL_STATE(2752)] = 117402, - [SMALL_STATE(2753)] = 117410, - [SMALL_STATE(2754)] = 117418, - [SMALL_STATE(2755)] = 117426, - [SMALL_STATE(2756)] = 117434, - [SMALL_STATE(2757)] = 117442, - [SMALL_STATE(2758)] = 117450, - [SMALL_STATE(2759)] = 117458, - [SMALL_STATE(2760)] = 117466, - [SMALL_STATE(2761)] = 117474, - [SMALL_STATE(2762)] = 117482, - [SMALL_STATE(2763)] = 117490, - [SMALL_STATE(2764)] = 117498, - [SMALL_STATE(2765)] = 117506, - [SMALL_STATE(2766)] = 117514, - [SMALL_STATE(2767)] = 117522, - [SMALL_STATE(2768)] = 117530, - [SMALL_STATE(2769)] = 117538, - [SMALL_STATE(2770)] = 117546, - [SMALL_STATE(2771)] = 117554, - [SMALL_STATE(2772)] = 117562, - [SMALL_STATE(2773)] = 117570, - [SMALL_STATE(2774)] = 117578, - [SMALL_STATE(2775)] = 117586, - [SMALL_STATE(2776)] = 117594, - [SMALL_STATE(2777)] = 117602, - [SMALL_STATE(2778)] = 117610, - [SMALL_STATE(2779)] = 117618, - [SMALL_STATE(2780)] = 117626, - [SMALL_STATE(2781)] = 117634, - [SMALL_STATE(2782)] = 117642, - [SMALL_STATE(2783)] = 117650, - [SMALL_STATE(2784)] = 117658, - [SMALL_STATE(2785)] = 117666, - [SMALL_STATE(2786)] = 117674, - [SMALL_STATE(2787)] = 117682, - [SMALL_STATE(2788)] = 117690, + [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[] = { @@ -126783,2427 +126418,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(618), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [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(601), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [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(2698), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [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(456), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), - [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(618), - [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2175), - [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1876), - [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(202), - [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(883), + [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(601), - [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(393), - [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(470), - [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(352), - [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2520), - [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2498), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2493), - [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(573), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(84), - [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(463), - [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(768), - [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(561), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2751), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(441), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2601), + [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(2698), - [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(469), - [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(72), - [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2727), - [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(201), - [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(544), - [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(884), - [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(186), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(493), - [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1626), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(358), - [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1052), - [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1052), - [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(148), - [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1718), - [228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), - [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(593), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(83), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(456), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(835), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(594), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2752), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(453), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2777), - [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2754), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), - [271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), - [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(268), - [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), - [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(907), - [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 1), - [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2755), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), - [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(896), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(534), - [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), - [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(269), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(318), - [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(894), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(319), - [396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(884), - [399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(493), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(866), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [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(42), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), - [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, 0, 0), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 0), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 109), - [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 109), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, 0, 0), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [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}}, SHIFT(906), - [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 97), - [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 97), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 96), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 96), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 44), - [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, 0, 44), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 0), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 0), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [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(557), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 0), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [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(1410), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 0), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), - [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 3, 0, 0), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 14), - [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, -1, 15), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 0), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 0), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), - [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 6), - [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 42), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 42), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 62), - [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 62), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), - [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 0), - [1558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), - [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), - [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 56), - [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 56), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 55), - [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 55), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [1583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(472), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), - [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), - [1590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(599), - [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 81), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 0), + [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 3, 0, 0), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), + [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 17), + [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 17), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 17), + [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 17), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 0), + [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 43), + [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 43), + [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 43), + [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 43), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 6), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), + [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 14), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, -1, 15), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [1509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(464), + [1512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(552), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [1559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(475), + [1562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(600), + [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), + [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 0), + [1574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), + [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 57), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 57), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 38), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 38), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 81), - [1597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(473), - [1600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(591), - [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 37), - [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 37), - [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), - [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), - [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), - [1613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), - [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), - [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), - [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), - [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), - [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 49), - [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 49), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2, 0, 0), - [1634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2, 0, 0), - [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), - [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), - [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), - [1656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), SHIFT_REPEAT(600), - [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 2), - [1661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 2), - [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 2), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 49), - [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 49), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 71), - [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 71), - [1674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), SHIFT_REPEAT(507), - [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 71), - [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 71), - [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), - [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), - [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 23), - [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 23), - [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), - [1691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 88), - [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 88), - [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 117), - [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 117), - [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, 0, 0), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, 0, 0), - [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, 0, 0), - [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, 0, 0), - [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 129), - [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 129), - [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, 0, 130), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, 0, 130), - [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 137), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 137), - [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 0), - [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 0), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 104), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 104), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, 0, 105), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, 0, 105), - [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 61), - [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 61), - [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 62), - [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 62), - [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 86), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 86), - [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 37), - [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 37), - [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 103), - [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 103), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 113), - [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 113), - [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 53), - [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 53), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 56), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 56), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 42), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 42), - [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_while_statement, 4, 0, 41), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 41), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 62), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 62), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 42), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 42), - [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 39), - [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 39), - [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 45), - [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 45), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 114), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 114), - [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 65), - [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 65), - [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 66), - [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 66), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 58), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 58), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 67), - [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 67), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 115), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 115), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 116), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 116), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 59), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 59), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 63), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 63), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 118), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 118), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 119), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 119), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 64), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 64), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 126), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 126), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 89), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 89), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 127), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 127), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 128), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 128), - [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 78), - [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 78), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 90), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 90), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 91), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 91), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 60), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 60), - [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 80), - [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 80), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 92), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 92), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 131), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 131), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 136), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 136), - [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 3, 0, 82), - [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 3, 0, 82), - [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 83), - [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 83), - [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 84), - [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 84), - [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 85), - [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 85), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 93), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 93), - [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 98), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 98), - [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 87), - [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 87), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 54), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 54), - [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 0), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 100), - [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 100), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 88), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 88), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 42), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 42), - [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 101), - [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 101), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 12), - [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 12), - [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 102), - [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 102), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 43), - [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 43), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 0), - [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 0), - [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 0), - [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 62), - [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 62), - [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 107), - [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 107), - [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 108), - [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 108), - [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 57), - [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 57), - [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 2, 0, 0), - [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 2, 0, 0), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 0), - [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 112), - [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 112), - [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 106), - [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 106), - [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 1, 0, 0), - [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 1, 0, 0), - [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 0), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1, 0, 0), - [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1718), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 21), - [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 21), - [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), - [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 9), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), - [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 24), - [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 24), - [2413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1690), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [2444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1694), - [2447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1685), - [2450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1700), - [2453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1666), - [2456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1670), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 33), - [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 33), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 33), - [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 33), - [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), - [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 0), - [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 0), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 0), - [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 0), - [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 33), - [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 33), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 10), - [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 10), - [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), - [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), - [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 34), - [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 34), - [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 34), - [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 34), - [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 0), - [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 0), - [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 0), - [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 0), - [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), - [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), - [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), - [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), - [2547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1704), - [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, 0, 34), - [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 34), - [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 34), - [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 34), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 11), - [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 11), - [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), - [2786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(909), - [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), - [2791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(2649), - [2794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(854), - [2797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(909), - [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [2802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(933), - [2805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(847), - [2808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(933), - [2811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(893), - [2814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(852), - [2817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(893), - [2820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(859), - [2823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(850), - [2826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(859), - [2829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(858), - [2832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(849), - [2835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(858), - [2838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(927), - [2841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(848), - [2844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(927), - [2847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(908), - [2850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(846), - [2853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(908), - [2856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(914), - [2859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(851), - [2862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(914), - [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__is_not, 2, 0, 0), - [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__is_not, 2, 0, 0), - [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__not_in, 2, 0, 0), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__not_in, 2, 0, 0), - [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), - [2875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(839), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 0), - [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [2898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(838), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 81), + [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 56), + [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 56), + [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), + [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), + [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2, 0, 0), + [1611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2, 0, 0), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 117), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 117), + [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, 0, 0), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, 0, 0), + [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 24), + [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 24), + [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 2), + [1639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 2), + [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 2), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), + [1646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), + [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), + [1651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), + [1657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), + [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), + [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 88), + [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 88), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 71), + [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 71), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 0), + [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 0), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 104), + [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 104), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, 0, 105), + [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, 0, 105), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 129), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 129), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, 0, 130), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, 0, 130), + [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 137), + [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 137), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, 0, 0), + [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, 0, 0), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 50), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 50), + [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 50), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 50), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 71), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 71), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), + [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), + [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), + [1730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), SHIFT_REPEAT(602), + [1733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), SHIFT_REPEAT(580), + [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 17), + [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 17), + [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 57), + [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 57), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 113), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 113), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 42), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 42), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 38), + [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 38), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 43), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 43), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 86), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 86), + [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 54), + [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 54), + [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 62), + [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 62), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 99), + [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 99), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 103), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 103), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 17), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 17), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 43), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 43), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 61), + [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 61), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 107), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 107), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 64), + [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 64), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 87), + [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 87), + [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 115), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 115), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 108), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 108), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 126), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 126), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 88), + [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 88), + [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 17), + [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 17), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 3, 0, 82), + [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 3, 0, 82), + [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 89), + [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 89), + [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 65), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 65), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 66), + [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 66), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 116), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 116), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 90), + [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 90), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 91), + [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 91), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 92), + [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 92), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 93), + [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 93), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 0), + [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 98), + [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 98), + [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 83), + [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 83), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 100), + [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 100), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 101), + [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 101), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 102), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 102), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 84), + [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 84), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 85), + [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 85), + [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 127), + [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 127), + [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 128), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 128), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 0), + [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 0), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 43), + [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 43), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 1, 0, 0), + [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 1, 0, 0), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 106), + [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 106), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 40), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 40), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 67), + [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 67), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 112), + [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 112), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 114), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 114), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 118), + [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 118), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 119), + [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 119), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 44), + [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 44), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 46), + [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 46), + [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 131), + [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 131), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 136), + [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 136), + [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 12), + [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 12), + [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 0), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 0), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 55), + [2022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 55), + [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 0), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 58), + [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 58), + [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 2, 0, 0), + [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 2, 0, 0), + [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 59), + [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 59), + [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 60), + [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 60), + [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 63), + [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 63), + [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 78), + [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 78), + [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 80), + [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 80), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1, 0, 0), + [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1706), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 22), + [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 22), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), + [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 9), + [2401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1686), + [2404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1681), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [2435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1691), + [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), + [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), + [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), + [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), + [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [2448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [2450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1708), + [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [2457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1696), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1666), + [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), + [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), + [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 0), + [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 0), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 0), + [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 0), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 34), + [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 34), + [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 10), + [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 10), + [2503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1702), + [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 35), + [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 35), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 0), + [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 0), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), + [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 34), + [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 34), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), + [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 35), + [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 35), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 0), + [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 0), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, 0, 35), + [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 35), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 35), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 35), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 34), + [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 34), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 11), + [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 11), + [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [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(424), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), - [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), - [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 21), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 48), - [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 17), - [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), - [3005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(523), - [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, 0, 22), - [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 6), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [3022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), SHIFT(335), - [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [3047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(222), - [3050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1821), - [3053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1821), - [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [3112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 6), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [3134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(584), - [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, 0, 22), - [3139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 21), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(527), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [3170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), - [3178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(480), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [3189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(487), - [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [3198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), - [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), - [3208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), - [3210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2618), - [3213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(520), - [3216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(582), - [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), - [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 1, 0, 0), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [3235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(569), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 46), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [3274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), - [3276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1806), - [3279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1806), - [3282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 0), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [3298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 8), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, -1, 6), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), - [3332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2710), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), - [3345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(475), - [3348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2785), - [3351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(832), - [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), - [3356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2699), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [3363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(503), - [3366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2782), - [3369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(830), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 70), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 6), - [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 2, 0, 0), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [3438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(531), - [3441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2637), - [3444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(777), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), - [3451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2761), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 1), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [3468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(455), - [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 0), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 109), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_type, 3, 0, 0), - [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3, 0, 0), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_pattern, 3, 0, 0), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 26), - [3511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 26), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 44), - [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_pattern, 1, 0, 0), - [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 0), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), - [3525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1548), - [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 5, 0, 0), - [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 94), - [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 73), - [3534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 73), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 96), - [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 74), - [3550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 74), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 97), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 75), - [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 75), - [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 0), - [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), - [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), - [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 19), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 0), - [3574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(443), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2634), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), - [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 36), - [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 95), - [3590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 95), - [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 18), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 0), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [3606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(842), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 51), - [3623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 51), - [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 52), - [3627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 52), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [3635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_pattern, 2, 0, 0), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 47), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 38), - [3653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(560), - [3656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(404), - [3659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 69), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 26), - [3663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 26), - [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 16), - [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 18), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), - [3673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(544), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 5, 0, 0), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [3684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1547), - [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 48), - [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 4), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 1, 44), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [3715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1543), - [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [3726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(559), - [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 2, 0, 0), - [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_pattern, 2, 0, 0), - [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 2, 0, 0), - [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 2, 0, 0), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [3763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 17), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 6, 0, 0), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [3781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 3, 0, 0), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [3787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1551), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [3792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 3, 0, 0), - [3794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 13), - [3796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 110), - [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 0), - [3800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 3, 0, 0), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [3808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 3, 0, 0), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 4), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 4, 0, 0), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 4, 0, 0), - [3824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 4, 0, 0), - [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 110), - [3828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 120), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [3832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 0), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [3838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 122), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [3844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 4, 0, 0), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [3848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(225), - [3851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), - [3853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2086), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [3862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [3872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 5, 0, 0), - [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 5, 0, 0), - [3876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 120), - [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 122), - [3880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [3914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 8), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 27), - [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), - [3930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), SHIFT_REPEAT(2311), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), - [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__as_pattern, 3, 0, 0), - [3951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1518), - [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 13), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 35), - [3974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 35), SHIFT_REPEAT(506), - [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 0), - [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), - [3981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), - [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 14), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [3987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 79), SHIFT_REPEAT(1519), - [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 79), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 15), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [4004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), - [4006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(2209), - [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), - [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), - [4013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2641), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [4036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [4070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(538), - [4073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(347), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), - [4100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1647), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [4125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), - [4127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(841), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [4148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1520), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 8), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [4167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(238), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [4198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(147), - [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [4227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1517), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [4266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), SHIFT_REPEAT(2283), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 29), - [4289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1648), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(843), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [4327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(360), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 0), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [4364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(354), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(327), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [4404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), SHIFT_REPEAT(395), - [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_value_pattern, 3, 0, 46), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 121), SHIFT_REPEAT(1541), - [4442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 121), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [4446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 72), SHIFT_REPEAT(436), - [4449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 72), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [4491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(462), - [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [4504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(546), - [4507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 50), - [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 50), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [4513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(840), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [4520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(533), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [4531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 40), SHIFT_REPEAT(508), - [4534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 40), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(461), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), - [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 3), - [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), - [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, 0, 141), - [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [4571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 68), - [4573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 138), - [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, 0, 111), - [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 30), - [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), - [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 31), - [4587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 32), - [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 132), - [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [4597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), - [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1, 0, 0), - [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 33), - [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 134), - [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 33), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 139), - [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), - [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 1, 0, 53), - [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 20), - [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 21), - [4661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 123), - [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 76), - [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [4669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 140), - [4671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 133), - [4673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [4679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 124), - [4681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 77), - [4683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 125), - [4685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 135), - [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [4705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 110), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [4725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [4757] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [4763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 0), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [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 { @@ -129236,7 +128864,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, @@ -129279,16 +128907,17 @@ static const bool ts_external_scanner_states[20][EXTERNAL_TOKEN_COUNT] = { [7] = { [ts_external_token_string_start] = true, [ts_external_token_comment] = true, - [ts_external_token_RPAREN] = true, + [ts_external_token_RBRACK] = true, }, [8] = { [ts_external_token_string_start] = true, [ts_external_token_comment] = true, - [ts_external_token_RBRACK] = true, + [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, @@ -129297,17 +128926,16 @@ static const bool ts_external_scanner_states[20][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_except] = true, }, [11] = { - [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, @@ -129323,14 +128951,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,